diff --git a/docs/playground/tree-sitter-c3.wasm b/docs/playground/tree-sitter-c3.wasm index d5188dd..92a4f93 100755 Binary files a/docs/playground/tree-sitter-c3.wasm and b/docs/playground/tree-sitter-c3.wasm differ diff --git a/grammar.js b/grammar.js index d610d43..2b457c1 100644 --- a/grammar.js +++ b/grammar.js @@ -520,11 +520,7 @@ module.exports = grammar({ // Enum // ------------------------- - // Precedence over initializer list, but it's actually ambiguous and depends on the number of enum parameters - enum_arg: $ => prec(1, choice( - seq('=', $.arg), - seq('=', '{', commaSepTrailing1($.arg), '}'), - )), + enum_arg: $ => seq('=', $._expr), enum_constant: $ => seq( field('name', $.const_ident), optional($.attributes), diff --git a/src/grammar.json b/src/grammar.json index b62877e..20ab947 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -375,12 +375,24 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "at_ident" + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "at_ident" + } }, { - "type": "SYMBOL", - "name": "doc_comment_contract_text" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "doc_comment_contract_text" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -2858,80 +2870,17 @@ ] }, "enum_arg": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "arg" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "arg" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "arg" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - ] - } + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_expr" + } + ] }, "enum_constant": { "type": "SEQ", diff --git a/src/node-types.json b/src/node-types.json index 9be8e35..07a629b 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -6849,15 +6849,22 @@ { "type": "doc_comment_contract", "named": true, - "fields": {}, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "at_ident", + "named": true + } + ] + } + }, "children": { - "multiple": true, - "required": true, + "multiple": false, + "required": false, "types": [ - { - "type": "at_ident", - "named": true - }, { "type": "doc_comment_contract_text", "named": true @@ -7464,13 +7471,160 @@ { "type": "enum_arg", "named": true, - "fields": {}, + "fields": { + "lambda_body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "compound_stmt", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "arg", + "type": "assignment_expr", + "named": true + }, + { + "type": "at_ident", + "named": true + }, + { + "type": "binary_expr", + "named": true + }, + { + "type": "builtin", + "named": true + }, + { + "type": "bytes_expr", + "named": true + }, + { + "type": "call_expr", + "named": true + }, + { + "type": "cast_expr", + "named": true + }, + { + "type": "char_literal", + "named": true + }, + { + "type": "const_ident", + "named": true + }, + { + "type": "ct_ident", + "named": true + }, + { + "type": "elvis_orelse_expr", + "named": true + }, + { + "type": "expr_block", + "named": true + }, + { + "type": "field_expr", + "named": true + }, + { + "type": "flat_path", + "named": true + }, + { + "type": "hash_ident", + "named": true + }, + { + "type": "ident", + "named": true + }, + { + "type": "initializer_list", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "lambda_declaration", + "named": true + }, + { + "type": "lambda_expr", + "named": true + }, + { + "type": "module_ident_expr", + "named": true + }, + { + "type": "optional_expr", + "named": true + }, + { + "type": "paren_expr", + "named": true + }, + { + "type": "raw_string_literal", + "named": true + }, + { + "type": "real_literal", + "named": true + }, + { + "type": "rethrow_expr", + "named": true + }, + { + "type": "string_expr", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "subscript_expr", + "named": true + }, + { + "type": "ternary_expr", + "named": true + }, + { + "type": "trailing_generic_expr", + "named": true + }, + { + "type": "type", + "named": true + }, + { + "type": "type_access_expr", + "named": true + }, + { + "type": "unary_expr", + "named": true + }, + { + "type": "update_expr", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 2c66008..509eaf0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,8 +13,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2289 -#define LARGE_STATE_COUNT 834 +#define STATE_COUNT 2281 +#define LARGE_STATE_COUNT 831 #define SYMBOL_COUNT 411 #define ALIAS_COUNT 0 #define TOKEN_COUNT 196 @@ -416,20 +416,20 @@ enum ts_symbol_identifiers { aux_sym_struct_body_repeat1 = 390, aux_sym_bitstruct_body_repeat1 = 391, aux_sym_fault_body_repeat1 = 392, - aux_sym_enum_arg_repeat1 = 393, - aux_sym_enum_param_list_repeat1 = 394, - aux_sym_enum_body_repeat1 = 395, - aux_sym_interface_body_repeat1 = 396, - aux_sym_compound_stmt_repeat1 = 397, - aux_sym_assert_stmt_repeat1 = 398, - aux_sym__decl_statement_after_type_repeat1 = 399, - aux_sym_switch_body_repeat1 = 400, - aux_sym__try_unwrap_chain_repeat1 = 401, - aux_sym_asm_stmt_repeat1 = 402, - aux_sym_asm_block_stmt_repeat1 = 403, - aux_sym_ct_exec_stmt_repeat1 = 404, - aux_sym_string_expr_repeat1 = 405, - aux_sym_bytes_expr_repeat1 = 406, + aux_sym_enum_param_list_repeat1 = 393, + aux_sym_enum_body_repeat1 = 394, + aux_sym_interface_body_repeat1 = 395, + aux_sym_compound_stmt_repeat1 = 396, + aux_sym_assert_stmt_repeat1 = 397, + aux_sym__decl_statement_after_type_repeat1 = 398, + aux_sym_switch_body_repeat1 = 399, + aux_sym__try_unwrap_chain_repeat1 = 400, + aux_sym_asm_stmt_repeat1 = 401, + aux_sym_asm_block_stmt_repeat1 = 402, + aux_sym_ct_exec_stmt_repeat1 = 403, + aux_sym_string_expr_repeat1 = 404, + aux_sym_bytes_expr_repeat1 = 405, + aux_sym_initializer_list_repeat1 = 406, aux_sym_param_path_repeat1 = 407, aux_sym__call_arg_list_repeat1 = 408, aux_sym_call_inline_attributes_repeat1 = 409, @@ -830,7 +830,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_struct_body_repeat1] = "struct_body_repeat1", [aux_sym_bitstruct_body_repeat1] = "bitstruct_body_repeat1", [aux_sym_fault_body_repeat1] = "fault_body_repeat1", - [aux_sym_enum_arg_repeat1] = "enum_arg_repeat1", [aux_sym_enum_param_list_repeat1] = "enum_param_list_repeat1", [aux_sym_enum_body_repeat1] = "enum_body_repeat1", [aux_sym_interface_body_repeat1] = "interface_body_repeat1", @@ -844,6 +843,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_ct_exec_stmt_repeat1] = "ct_exec_stmt_repeat1", [aux_sym_string_expr_repeat1] = "string_expr_repeat1", [aux_sym_bytes_expr_repeat1] = "bytes_expr_repeat1", + [aux_sym_initializer_list_repeat1] = "initializer_list_repeat1", [aux_sym_param_path_repeat1] = "param_path_repeat1", [aux_sym__call_arg_list_repeat1] = "_call_arg_list_repeat1", [aux_sym_call_inline_attributes_repeat1] = "call_inline_attributes_repeat1", @@ -1244,7 +1244,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_struct_body_repeat1] = aux_sym_struct_body_repeat1, [aux_sym_bitstruct_body_repeat1] = aux_sym_bitstruct_body_repeat1, [aux_sym_fault_body_repeat1] = aux_sym_fault_body_repeat1, - [aux_sym_enum_arg_repeat1] = aux_sym_enum_arg_repeat1, [aux_sym_enum_param_list_repeat1] = aux_sym_enum_param_list_repeat1, [aux_sym_enum_body_repeat1] = aux_sym_enum_body_repeat1, [aux_sym_interface_body_repeat1] = aux_sym_interface_body_repeat1, @@ -1258,6 +1257,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_ct_exec_stmt_repeat1] = aux_sym_ct_exec_stmt_repeat1, [aux_sym_string_expr_repeat1] = aux_sym_string_expr_repeat1, [aux_sym_bytes_expr_repeat1] = aux_sym_bytes_expr_repeat1, + [aux_sym_initializer_list_repeat1] = aux_sym_initializer_list_repeat1, [aux_sym_param_path_repeat1] = aux_sym_param_path_repeat1, [aux_sym__call_arg_list_repeat1] = aux_sym__call_arg_list_repeat1, [aux_sym_call_inline_attributes_repeat1] = aux_sym_call_inline_attributes_repeat1, @@ -2837,10 +2837,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_enum_arg_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_enum_param_list_repeat1] = { .visible = false, .named = false, @@ -2893,6 +2889,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_initializer_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_param_path_repeat1] = { .visible = false, .named = false, @@ -3446,135 +3446,135 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [25] = 25, [26] = 18, [27] = 18, - [28] = 15, + [28] = 18, [29] = 18, - [30] = 18, + [30] = 15, [31] = 18, [32] = 32, [33] = 33, [34] = 33, [35] = 35, - [36] = 32, + [36] = 35, [37] = 37, [38] = 33, - [39] = 35, - [40] = 32, - [41] = 35, + [39] = 32, + [40] = 35, + [41] = 32, [42] = 37, [43] = 33, - [44] = 32, - [45] = 35, + [44] = 37, + [45] = 32, [46] = 15, [47] = 37, [48] = 33, - [49] = 32, - [50] = 35, + [49] = 35, + [50] = 32, [51] = 37, [52] = 33, - [53] = 32, + [53] = 25, [54] = 35, - [55] = 25, + [55] = 32, [56] = 37, - [57] = 37, + [57] = 35, [58] = 58, [59] = 59, - [60] = 60, + [60] = 59, [61] = 61, - [62] = 60, - [63] = 59, - [64] = 61, - [65] = 60, + [62] = 62, + [63] = 63, + [64] = 59, + [65] = 61, [66] = 58, - [67] = 67, + [67] = 58, [68] = 68, - [69] = 58, - [70] = 67, + [69] = 63, + [70] = 15, [71] = 61, - [72] = 58, - [73] = 25, - [74] = 59, - [75] = 61, - [76] = 60, - [77] = 15, - [78] = 67, - [79] = 25, - [80] = 15, - [81] = 59, - [82] = 15, - [83] = 58, - [84] = 67, - [85] = 59, - [86] = 61, - [87] = 60, - [88] = 58, - [89] = 67, - [90] = 25, + [72] = 62, + [73] = 62, + [74] = 63, + [75] = 59, + [76] = 61, + [77] = 62, + [78] = 25, + [79] = 61, + [80] = 58, + [81] = 15, + [82] = 62, + [83] = 63, + [84] = 62, + [85] = 25, + [86] = 63, + [87] = 59, + [88] = 61, + [89] = 58, + [90] = 59, [91] = 61, - [92] = 60, - [93] = 58, - [94] = 67, - [95] = 95, - [96] = 60, - [97] = 59, + [92] = 58, + [93] = 15, + [94] = 94, + [95] = 25, + [96] = 59, + [97] = 63, [98] = 98, [99] = 99, [100] = 100, - [101] = 101, - [102] = 102, + [101] = 98, + [102] = 99, [103] = 103, - [104] = 98, + [104] = 104, [105] = 105, - [106] = 99, - [107] = 100, - [108] = 101, - [109] = 102, + [106] = 106, + [107] = 104, + [108] = 105, + [109] = 106, [110] = 100, - [111] = 103, - [112] = 98, - [113] = 105, - [114] = 101, - [115] = 102, - [116] = 99, - [117] = 100, - [118] = 101, - [119] = 102, - [120] = 103, + [111] = 99, + [112] = 103, + [113] = 104, + [114] = 105, + [115] = 106, + [116] = 100, + [117] = 103, + [118] = 99, + [119] = 103, + [120] = 104, [121] = 105, - [122] = 99, + [122] = 106, [123] = 100, - [124] = 101, - [125] = 102, + [124] = 98, + [125] = 99, [126] = 103, - [127] = 98, + [127] = 104, [128] = 105, - [129] = 99, - [130] = 103, + [129] = 106, + [130] = 100, [131] = 100, - [132] = 101, - [133] = 102, - [134] = 98, - [135] = 105, - [136] = 103, + [132] = 98, + [133] = 99, + [134] = 103, + [135] = 98, + [136] = 104, [137] = 105, - [138] = 99, + [138] = 106, [139] = 98, [140] = 140, [141] = 141, [142] = 142, [143] = 141, - [144] = 141, - [145] = 142, + [144] = 142, + [145] = 141, [146] = 141, - [147] = 142, - [148] = 141, + [147] = 141, + [148] = 142, [149] = 141, [150] = 142, [151] = 142, [152] = 142, [153] = 153, - [154] = 154, - [155] = 154, - [156] = 153, + [154] = 153, + [155] = 155, + [156] = 155, [157] = 157, [158] = 157, [159] = 159, @@ -3593,102 +3593,102 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [172] = 172, [173] = 173, [174] = 174, - [175] = 175, + [175] = 170, [176] = 176, - [177] = 177, - [178] = 177, - [179] = 176, - [180] = 174, - [181] = 181, - [182] = 175, + [177] = 169, + [178] = 171, + [179] = 179, + [180] = 172, + [181] = 176, + [182] = 182, [183] = 183, [184] = 184, - [185] = 173, + [185] = 185, [186] = 186, [187] = 187, [188] = 188, [189] = 189, - [190] = 190, - [191] = 191, - [192] = 192, - [193] = 192, - [194] = 194, - [195] = 192, - [196] = 192, - [197] = 192, - [198] = 192, - [199] = 199, - [200] = 200, - [201] = 201, - [202] = 202, - [203] = 201, - [204] = 201, - [205] = 201, - [206] = 201, - [207] = 201, + [190] = 188, + [191] = 188, + [192] = 188, + [193] = 188, + [194] = 188, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 195, + [200] = 195, + [201] = 195, + [202] = 195, + [203] = 195, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 204, [208] = 208, [209] = 209, [210] = 210, [211] = 211, - [212] = 208, + [212] = 212, [213] = 213, [214] = 214, [215] = 215, - [216] = 216, + [216] = 206, [217] = 217, - [218] = 218, + [218] = 215, [219] = 219, - [220] = 218, - [221] = 211, - [222] = 222, + [220] = 220, + [221] = 221, + [222] = 211, [223] = 223, - [224] = 224, - [225] = 218, - [226] = 211, - [227] = 227, - [228] = 211, - [229] = 211, + [224] = 204, + [225] = 212, + [226] = 221, + [227] = 209, + [228] = 206, + [229] = 213, [230] = 230, - [231] = 211, - [232] = 232, - [233] = 233, - [234] = 234, - [235] = 219, - [236] = 208, - [237] = 215, - [238] = 227, - [239] = 230, - [240] = 222, - [241] = 241, - [242] = 219, - [243] = 213, - [244] = 215, - [245] = 227, - [246] = 230, - [247] = 222, - [248] = 219, - [249] = 213, - [250] = 215, - [251] = 230, - [252] = 222, - [253] = 219, - [254] = 213, - [255] = 215, - [256] = 230, - [257] = 222, - [258] = 219, - [259] = 213, - [260] = 215, - [261] = 230, - [262] = 222, - [263] = 219, - [264] = 213, - [265] = 215, - [266] = 230, - [267] = 208, - [268] = 208, - [269] = 208, - [270] = 213, + [231] = 215, + [232] = 206, + [233] = 223, + [234] = 204, + [235] = 212, + [236] = 206, + [237] = 209, + [238] = 213, + [239] = 211, + [240] = 223, + [241] = 204, + [242] = 242, + [243] = 209, + [244] = 213, + [245] = 211, + [246] = 223, + [247] = 204, + [248] = 206, + [249] = 209, + [250] = 213, + [251] = 211, + [252] = 223, + [253] = 223, + [254] = 254, + [255] = 209, + [256] = 213, + [257] = 211, + [258] = 223, + [259] = 204, + [260] = 209, + [261] = 261, + [262] = 221, + [263] = 221, + [264] = 221, + [265] = 221, + [266] = 211, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, [271] = 271, [272] = 272, [273] = 273, @@ -3717,12 +3717,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [296] = 296, [297] = 297, [298] = 298, - [299] = 273, + [299] = 299, [300] = 300, - [301] = 301, + [301] = 287, [302] = 302, - [303] = 303, - [304] = 304, + [303] = 302, + [304] = 278, [305] = 305, [306] = 306, [307] = 307, @@ -3734,37 +3734,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [313] = 313, [314] = 314, [315] = 315, - [316] = 272, + [316] = 316, [317] = 317, [318] = 318, [319] = 319, - [320] = 314, + [320] = 320, [321] = 321, - [322] = 314, - [323] = 315, - [324] = 272, - [325] = 315, + [322] = 322, + [323] = 321, + [324] = 296, + [325] = 298, [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 309, - [331] = 310, - [332] = 332, - [333] = 333, + [327] = 321, + [328] = 296, + [329] = 298, + [330] = 330, + [331] = 331, + [332] = 302, + [333] = 302, [334] = 334, - [335] = 309, - [336] = 309, + [335] = 302, + [336] = 302, [337] = 337, - [338] = 309, - [339] = 309, + [338] = 338, + [339] = 339, [340] = 340, - [341] = 341, + [341] = 338, [342] = 342, [343] = 343, - [344] = 341, + [344] = 340, [345] = 345, - [346] = 346, + [346] = 339, [347] = 347, [348] = 348, [349] = 349, @@ -3797,7 +3797,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [376] = 376, [377] = 377, [378] = 378, - [379] = 341, + [379] = 379, [380] = 380, [381] = 381, [382] = 382, @@ -3810,9 +3810,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [389] = 389, [390] = 390, [391] = 391, - [392] = 342, + [392] = 392, [393] = 393, - [394] = 343, + [394] = 394, [395] = 395, [396] = 396, [397] = 397, @@ -3834,420 +3834,420 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [413] = 413, [414] = 414, [415] = 415, - [416] = 416, + [416] = 338, [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 381, - [422] = 342, - [423] = 343, - [424] = 341, - [425] = 341, - [426] = 341, - [427] = 410, - [428] = 377, - [429] = 358, - [430] = 363, - [431] = 372, - [432] = 420, - [433] = 391, - [434] = 396, - [435] = 368, + [418] = 365, + [419] = 357, + [420] = 358, + [421] = 359, + [422] = 339, + [423] = 400, + [424] = 362, + [425] = 363, + [426] = 364, + [427] = 411, + [428] = 366, + [429] = 367, + [430] = 370, + [431] = 338, + [432] = 371, + [433] = 372, + [434] = 373, + [435] = 374, [436] = 375, - [437] = 404, - [438] = 405, - [439] = 406, - [440] = 408, - [441] = 412, - [442] = 418, - [443] = 352, - [444] = 384, - [445] = 403, - [446] = 351, - [447] = 417, - [448] = 397, - [449] = 413, - [450] = 414, - [451] = 347, - [452] = 348, - [453] = 349, - [454] = 353, - [455] = 371, - [456] = 380, - [457] = 382, - [458] = 367, - [459] = 369, - [460] = 370, - [461] = 376, - [462] = 378, - [463] = 383, - [464] = 386, - [465] = 388, - [466] = 389, - [467] = 393, - [468] = 395, - [469] = 398, - [470] = 401, - [471] = 402, - [472] = 415, - [473] = 419, - [474] = 346, - [475] = 354, - [476] = 355, - [477] = 356, - [478] = 359, - [479] = 360, - [480] = 361, - [481] = 362, - [482] = 374, - [483] = 411, - [484] = 350, - [485] = 357, - [486] = 345, - [487] = 364, - [488] = 365, - [489] = 366, - [490] = 373, - [491] = 387, - [492] = 390, - [493] = 400, - [494] = 409, - [495] = 416, - [496] = 385, - [497] = 399, - [498] = 407, - [499] = 405, - [500] = 391, - [501] = 343, - [502] = 419, - [503] = 346, - [504] = 354, - [505] = 367, - [506] = 355, - [507] = 356, - [508] = 359, - [509] = 360, - [510] = 361, - [511] = 362, - [512] = 374, - [513] = 397, - [514] = 411, - [515] = 413, - [516] = 350, - [517] = 357, - [518] = 345, - [519] = 364, - [520] = 365, - [521] = 521, - [522] = 366, - [523] = 373, - [524] = 387, - [525] = 390, - [526] = 414, - [527] = 410, - [528] = 358, - [529] = 400, - [530] = 347, - [531] = 409, - [532] = 416, + [437] = 376, + [438] = 377, + [439] = 378, + [440] = 381, + [441] = 417, + [442] = 383, + [443] = 387, + [444] = 388, + [445] = 389, + [446] = 391, + [447] = 392, + [448] = 338, + [449] = 393, + [450] = 394, + [451] = 397, + [452] = 401, + [453] = 402, + [454] = 403, + [455] = 404, + [456] = 405, + [457] = 406, + [458] = 395, + [459] = 408, + [460] = 409, + [461] = 410, + [462] = 338, + [463] = 412, + [464] = 413, + [465] = 414, + [466] = 415, + [467] = 343, + [468] = 342, + [469] = 382, + [470] = 345, + [471] = 347, + [472] = 348, + [473] = 349, + [474] = 396, + [475] = 360, + [476] = 384, + [477] = 350, + [478] = 361, + [479] = 351, + [480] = 352, + [481] = 353, + [482] = 354, + [483] = 390, + [484] = 368, + [485] = 369, + [486] = 355, + [487] = 379, + [488] = 380, + [489] = 356, + [490] = 340, + [491] = 398, + [492] = 399, + [493] = 385, + [494] = 386, + [495] = 407, + [496] = 356, + [497] = 339, + [498] = 375, + [499] = 409, + [500] = 392, + [501] = 342, + [502] = 410, + [503] = 382, + [504] = 372, + [505] = 417, + [506] = 340, + [507] = 373, + [508] = 360, + [509] = 384, + [510] = 412, + [511] = 340, + [512] = 376, + [513] = 413, + [514] = 414, + [515] = 415, + [516] = 383, + [517] = 361, + [518] = 365, + [519] = 368, + [520] = 369, + [521] = 379, + [522] = 380, + [523] = 398, + [524] = 402, + [525] = 377, + [526] = 389, + [527] = 399, + [528] = 378, + [529] = 393, + [530] = 339, + [531] = 394, + [532] = 403, [533] = 385, - [534] = 370, - [535] = 377, - [536] = 363, - [537] = 372, - [538] = 399, - [539] = 415, - [540] = 342, - [541] = 404, - [542] = 369, - [543] = 406, - [544] = 407, - [545] = 343, - [546] = 376, - [547] = 408, - [548] = 412, - [549] = 342, - [550] = 418, - [551] = 352, - [552] = 384, - [553] = 343, - [554] = 378, - [555] = 403, - [556] = 351, - [557] = 342, - [558] = 420, - [559] = 383, - [560] = 386, - [561] = 417, - [562] = 388, - [563] = 389, - [564] = 393, - [565] = 395, - [566] = 398, - [567] = 348, - [568] = 401, - [569] = 349, - [570] = 396, - [571] = 353, - [572] = 371, - [573] = 380, - [574] = 382, - [575] = 368, - [576] = 375, - [577] = 402, - [578] = 381, - [579] = 388, - [580] = 381, + [534] = 386, + [535] = 390, + [536] = 381, + [537] = 404, + [538] = 538, + [539] = 397, + [540] = 396, + [541] = 400, + [542] = 411, + [543] = 343, + [544] = 345, + [545] = 347, + [546] = 348, + [547] = 388, + [548] = 349, + [549] = 340, + [550] = 350, + [551] = 351, + [552] = 352, + [553] = 353, + [554] = 354, + [555] = 355, + [556] = 405, + [557] = 371, + [558] = 357, + [559] = 358, + [560] = 359, + [561] = 370, + [562] = 406, + [563] = 401, + [564] = 362, + [565] = 374, + [566] = 363, + [567] = 364, + [568] = 391, + [569] = 387, + [570] = 339, + [571] = 366, + [572] = 407, + [573] = 367, + [574] = 408, + [575] = 395, + [576] = 387, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, [581] = 581, [582] = 582, [583] = 583, [584] = 584, [585] = 585, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 410, - [592] = 377, - [593] = 358, - [594] = 363, - [595] = 372, - [596] = 420, - [597] = 391, - [598] = 396, - [599] = 368, - [600] = 375, - [601] = 404, - [602] = 405, - [603] = 406, - [604] = 407, - [605] = 408, - [606] = 412, - [607] = 418, - [608] = 352, - [609] = 384, - [610] = 403, - [611] = 351, - [612] = 417, - [613] = 397, - [614] = 413, - [615] = 414, - [616] = 347, - [617] = 348, - [618] = 349, - [619] = 353, - [620] = 371, - [621] = 380, - [622] = 382, - [623] = 367, - [624] = 369, - [625] = 370, - [626] = 376, - [627] = 378, - [628] = 383, - [629] = 386, - [630] = 389, - [631] = 393, - [632] = 395, - [633] = 398, - [634] = 401, - [635] = 402, - [636] = 415, - [637] = 419, - [638] = 346, - [639] = 354, - [640] = 355, - [641] = 356, - [642] = 359, - [643] = 360, - [644] = 361, - [645] = 362, - [646] = 374, - [647] = 411, - [648] = 350, - [649] = 357, - [650] = 345, - [651] = 410, - [652] = 377, - [653] = 364, - [654] = 365, - [655] = 366, - [656] = 373, - [657] = 387, - [658] = 390, - [659] = 358, - [660] = 363, - [661] = 372, - [662] = 420, - [663] = 391, - [664] = 396, - [665] = 368, - [666] = 375, - [667] = 400, - [668] = 409, - [669] = 416, - [670] = 385, - [671] = 404, - [672] = 405, - [673] = 406, - [674] = 407, - [675] = 408, - [676] = 412, - [677] = 418, - [678] = 352, - [679] = 384, - [680] = 403, - [681] = 351, - [682] = 417, - [683] = 397, - [684] = 413, - [685] = 414, - [686] = 347, - [687] = 348, - [688] = 349, - [689] = 353, - [690] = 371, - [691] = 380, - [692] = 382, - [693] = 399, - [694] = 381, - [695] = 367, - [696] = 369, - [697] = 370, - [698] = 378, - [699] = 383, - [700] = 386, - [701] = 388, - [702] = 389, - [703] = 393, - [704] = 395, - [705] = 398, - [706] = 401, - [707] = 402, - [708] = 415, - [709] = 419, - [710] = 346, - [711] = 354, - [712] = 355, - [713] = 356, - [714] = 359, - [715] = 360, - [716] = 361, - [717] = 362, - [718] = 374, - [719] = 411, - [720] = 350, - [721] = 357, - [722] = 345, - [723] = 410, - [724] = 377, - [725] = 364, - [726] = 365, - [727] = 366, - [728] = 373, - [729] = 387, - [730] = 390, - [731] = 358, - [732] = 363, - [733] = 372, - [734] = 420, - [735] = 391, - [736] = 396, - [737] = 368, - [738] = 375, - [739] = 400, - [740] = 409, - [741] = 416, - [742] = 385, - [743] = 404, - [744] = 405, - [745] = 406, - [746] = 407, - [747] = 408, - [748] = 412, - [749] = 418, - [750] = 352, - [751] = 384, - [752] = 403, - [753] = 351, - [754] = 417, - [755] = 397, - [756] = 413, - [757] = 414, - [758] = 347, - [759] = 348, - [760] = 349, - [761] = 353, - [762] = 371, - [763] = 380, - [764] = 382, - [765] = 399, - [766] = 381, + [586] = 360, + [587] = 384, + [588] = 361, + [589] = 365, + [590] = 368, + [591] = 369, + [592] = 379, + [593] = 380, + [594] = 398, + [595] = 399, + [596] = 385, + [597] = 386, + [598] = 390, + [599] = 395, + [600] = 396, + [601] = 400, + [602] = 411, + [603] = 343, + [604] = 345, + [605] = 347, + [606] = 348, + [607] = 349, + [608] = 350, + [609] = 351, + [610] = 352, + [611] = 353, + [612] = 354, + [613] = 355, + [614] = 356, + [615] = 357, + [616] = 358, + [617] = 359, + [618] = 362, + [619] = 363, + [620] = 364, + [621] = 366, + [622] = 367, + [623] = 370, + [624] = 371, + [625] = 372, + [626] = 373, + [627] = 374, + [628] = 375, + [629] = 376, + [630] = 377, + [631] = 378, + [632] = 381, + [633] = 417, + [634] = 383, + [635] = 388, + [636] = 389, + [637] = 391, + [638] = 392, + [639] = 393, + [640] = 394, + [641] = 397, + [642] = 401, + [643] = 402, + [644] = 403, + [645] = 404, + [646] = 360, + [647] = 384, + [648] = 405, + [649] = 406, + [650] = 407, + [651] = 408, + [652] = 409, + [653] = 410, + [654] = 361, + [655] = 365, + [656] = 368, + [657] = 369, + [658] = 379, + [659] = 380, + [660] = 398, + [661] = 399, + [662] = 412, + [663] = 413, + [664] = 414, + [665] = 415, + [666] = 385, + [667] = 386, + [668] = 390, + [669] = 395, + [670] = 396, + [671] = 400, + [672] = 411, + [673] = 343, + [674] = 345, + [675] = 347, + [676] = 348, + [677] = 349, + [678] = 350, + [679] = 351, + [680] = 352, + [681] = 353, + [682] = 354, + [683] = 355, + [684] = 356, + [685] = 357, + [686] = 358, + [687] = 359, + [688] = 342, + [689] = 382, + [690] = 362, + [691] = 363, + [692] = 364, + [693] = 366, + [694] = 367, + [695] = 370, + [696] = 371, + [697] = 372, + [698] = 373, + [699] = 374, + [700] = 375, + [701] = 376, + [702] = 377, + [703] = 378, + [704] = 381, + [705] = 417, + [706] = 383, + [707] = 387, + [708] = 388, + [709] = 389, + [710] = 391, + [711] = 392, + [712] = 393, + [713] = 394, + [714] = 397, + [715] = 401, + [716] = 716, + [717] = 403, + [718] = 404, + [719] = 360, + [720] = 384, + [721] = 405, + [722] = 406, + [723] = 407, + [724] = 408, + [725] = 409, + [726] = 410, + [727] = 361, + [728] = 365, + [729] = 368, + [730] = 369, + [731] = 379, + [732] = 380, + [733] = 398, + [734] = 399, + [735] = 412, + [736] = 413, + [737] = 414, + [738] = 415, + [739] = 385, + [740] = 386, + [741] = 390, + [742] = 395, + [743] = 396, + [744] = 400, + [745] = 411, + [746] = 343, + [747] = 345, + [748] = 347, + [749] = 348, + [750] = 349, + [751] = 350, + [752] = 351, + [753] = 352, + [754] = 353, + [755] = 354, + [756] = 355, + [757] = 356, + [758] = 357, + [759] = 358, + [760] = 359, + [761] = 342, + [762] = 382, + [763] = 362, + [764] = 363, + [765] = 364, + [766] = 366, [767] = 367, - [768] = 369, - [769] = 370, - [770] = 376, - [771] = 378, - [772] = 383, - [773] = 386, - [774] = 388, - [775] = 389, - [776] = 393, - [777] = 395, - [778] = 398, - [779] = 401, - [780] = 402, - [781] = 415, - [782] = 419, - [783] = 346, - [784] = 354, - [785] = 355, - [786] = 356, - [787] = 359, - [788] = 360, - [789] = 361, - [790] = 362, - [791] = 374, - [792] = 411, - [793] = 350, - [794] = 357, - [795] = 345, - [796] = 364, - [797] = 365, - [798] = 366, - [799] = 373, - [800] = 387, - [801] = 390, - [802] = 400, - [803] = 409, - [804] = 416, - [805] = 385, - [806] = 399, - [807] = 376, - [808] = 808, - [809] = 589, - [810] = 583, - [811] = 811, - [812] = 586, - [813] = 590, - [814] = 814, - [815] = 584, - [816] = 587, - [817] = 588, - [818] = 585, - [819] = 400, - [820] = 343, + [768] = 370, + [769] = 371, + [770] = 372, + [771] = 373, + [772] = 374, + [773] = 375, + [774] = 376, + [775] = 377, + [776] = 378, + [777] = 381, + [778] = 417, + [779] = 383, + [780] = 387, + [781] = 388, + [782] = 389, + [783] = 391, + [784] = 392, + [785] = 393, + [786] = 394, + [787] = 397, + [788] = 401, + [789] = 402, + [790] = 403, + [791] = 404, + [792] = 405, + [793] = 406, + [794] = 407, + [795] = 408, + [796] = 409, + [797] = 410, + [798] = 412, + [799] = 413, + [800] = 414, + [801] = 415, + [802] = 342, + [803] = 382, + [804] = 402, + [805] = 805, + [806] = 584, + [807] = 582, + [808] = 581, + [809] = 580, + [810] = 578, + [811] = 579, + [812] = 583, + [813] = 813, + [814] = 585, + [815] = 815, + [816] = 412, + [817] = 339, + [818] = 818, + [819] = 819, + [820] = 820, [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 824, + [822] = 821, + [823] = 820, + [824] = 820, + [825] = 821, [826] = 826, - [827] = 823, - [828] = 824, - [829] = 823, + [827] = 827, + [828] = 828, + [829] = 829, [830] = 830, [831] = 831, [832] = 832, @@ -4318,12 +4318,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [897] = 897, [898] = 898, [899] = 899, - [900] = 409, - [901] = 390, + [900] = 900, + [901] = 901, [902] = 902, [903] = 903, [904] = 904, - [905] = 345, + [905] = 905, [906] = 906, [907] = 907, [908] = 908, @@ -4342,11 +4342,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [921] = 921, [922] = 922, [923] = 923, - [924] = 924, + [924] = 404, [925] = 925, [926] = 926, [927] = 927, - [928] = 928, + [928] = 342, [929] = 929, [930] = 930, [931] = 931, @@ -4356,13 +4356,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [935] = 935, [936] = 936, [937] = 937, - [938] = 416, - [939] = 385, + [938] = 938, + [939] = 939, [940] = 940, [941] = 941, [942] = 942, [943] = 943, - [944] = 944, + [944] = 382, [945] = 945, [946] = 946, [947] = 947, @@ -4374,15 +4374,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [953] = 953, [954] = 954, [955] = 955, - [956] = 956, - [957] = 957, + [956] = 405, + [957] = 413, [958] = 958, [959] = 959, [960] = 960, [961] = 961, - [962] = 962, + [962] = 406, [963] = 963, - [964] = 964, + [964] = 407, [965] = 965, [966] = 966, [967] = 967, @@ -4392,8 +4392,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [971] = 971, [972] = 972, [973] = 973, - [974] = 974, - [975] = 399, + [974] = 414, + [975] = 415, [976] = 976, [977] = 977, [978] = 978, @@ -4407,16 +4407,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [986] = 986, [987] = 987, [988] = 988, - [989] = 381, + [989] = 989, [990] = 990, [991] = 991, [992] = 992, [993] = 993, [994] = 994, [995] = 995, - [996] = 996, - [997] = 997, - [998] = 998, + [996] = 408, + [997] = 409, + [998] = 410, [999] = 999, [1000] = 1000, [1001] = 1001, @@ -4426,13 +4426,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1005] = 1005, [1006] = 1006, [1007] = 1007, - [1008] = 364, + [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 373, + [1012] = 1012, [1013] = 1013, - [1014] = 387, + [1014] = 1014, [1015] = 1015, [1016] = 1016, [1017] = 1017, @@ -4444,9 +4444,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1023] = 1023, [1024] = 1024, [1025] = 1025, - [1026] = 365, + [1026] = 1026, [1027] = 1027, - [1028] = 366, + [1028] = 1028, [1029] = 1029, [1030] = 1030, [1031] = 1031, @@ -4457,22 +4457,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1036] = 1036, [1037] = 1037, [1038] = 1038, - [1039] = 1039, + [1039] = 1033, [1040] = 1040, [1041] = 1041, [1042] = 1042, - [1043] = 1043, - [1044] = 1038, + [1043] = 1033, + [1044] = 1033, [1045] = 1045, - [1046] = 1038, - [1047] = 1047, - [1048] = 1038, + [1046] = 1033, + [1047] = 1033, + [1048] = 1048, [1049] = 1049, - [1050] = 1038, - [1051] = 1038, - [1052] = 875, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, [1053] = 1053, - [1054] = 1054, + [1054] = 847, [1055] = 1055, [1056] = 1056, [1057] = 1057, @@ -4481,258 +4481,258 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 1063, + [1063] = 871, [1064] = 1064, [1065] = 1065, - [1066] = 864, + [1066] = 1066, [1067] = 1067, - [1068] = 1068, + [1068] = 866, [1069] = 1069, - [1070] = 1068, + [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 1067, + [1073] = 1073, [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 1071, - [1079] = 1079, - [1080] = 1071, - [1081] = 1072, + [1078] = 1065, + [1079] = 1066, + [1080] = 843, + [1081] = 1081, [1082] = 1067, - [1083] = 1074, - [1084] = 1075, - [1085] = 1076, + [1083] = 1083, + [1084] = 1066, + [1085] = 1070, [1086] = 1077, - [1087] = 1079, - [1088] = 1071, - [1089] = 1076, - [1090] = 1077, - [1091] = 1072, - [1092] = 1092, - [1093] = 1079, - [1094] = 1071, - [1095] = 1076, - [1096] = 1077, - [1097] = 894, - [1098] = 1098, - [1099] = 1075, - [1100] = 1079, - [1101] = 1079, - [1102] = 1102, - [1103] = 1103, - [1104] = 1071, + [1087] = 1072, + [1088] = 1065, + [1089] = 1073, + [1090] = 1075, + [1091] = 1091, + [1092] = 1066, + [1093] = 1093, + [1094] = 1070, + [1095] = 1077, + [1096] = 1065, + [1097] = 1066, + [1098] = 1070, + [1099] = 1070, + [1100] = 1077, + [1101] = 1070, + [1102] = 1065, + [1103] = 1072, + [1104] = 1073, [1105] = 1105, - [1106] = 1076, - [1107] = 1077, + [1106] = 1066, + [1107] = 1107, [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1079, - [1112] = 840, - [1113] = 1076, - [1114] = 1114, - [1115] = 862, - [1116] = 1116, - [1117] = 1074, + [1109] = 1075, + [1110] = 1076, + [1111] = 1077, + [1112] = 1077, + [1113] = 1113, + [1114] = 1065, + [1115] = 1115, + [1116] = 893, + [1117] = 1117, [1118] = 1118, - [1119] = 1077, + [1119] = 1076, [1120] = 1120, - [1121] = 1121, - [1122] = 885, - [1123] = 1123, - [1124] = 1124, - [1125] = 888, + [1121] = 892, + [1122] = 882, + [1123] = 896, + [1124] = 878, + [1125] = 891, [1126] = 883, - [1127] = 889, - [1128] = 1128, - [1129] = 896, - [1130] = 890, - [1131] = 895, - [1132] = 886, - [1133] = 898, - [1134] = 893, - [1135] = 897, - [1136] = 881, + [1127] = 880, + [1128] = 894, + [1129] = 1129, + [1130] = 1130, + [1131] = 879, + [1132] = 895, + [1133] = 884, + [1134] = 888, + [1135] = 1135, + [1136] = 1136, [1137] = 1137, - [1138] = 1138, + [1138] = 1137, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, - [1143] = 1143, + [1143] = 1139, [1144] = 1144, [1145] = 1145, [1146] = 1146, [1147] = 1147, - [1148] = 1143, + [1148] = 1148, [1149] = 1149, [1150] = 1150, - [1151] = 1151, + [1151] = 1148, [1152] = 1152, - [1153] = 1137, + [1153] = 1153, [1154] = 1154, - [1155] = 1139, + [1155] = 1155, [1156] = 1156, [1157] = 1157, [1158] = 1158, [1159] = 1159, [1160] = 1160, - [1161] = 1161, + [1161] = 1158, [1162] = 1162, [1163] = 1163, [1164] = 1164, [1165] = 1165, - [1166] = 1166, + [1166] = 1165, [1167] = 1167, [1168] = 1168, [1169] = 1169, [1170] = 1170, - [1171] = 1167, - [1172] = 1168, - [1173] = 1173, - [1174] = 1173, - [1175] = 1175, - [1176] = 1176, - [1177] = 1177, + [1171] = 1169, + [1172] = 1172, + [1173] = 1169, + [1174] = 1174, + [1175] = 1169, + [1176] = 1169, + [1177] = 1169, [1178] = 1178, - [1179] = 1173, - [1180] = 1173, - [1181] = 1173, + [1179] = 1169, + [1180] = 1180, + [1181] = 1181, [1182] = 1182, - [1183] = 1173, - [1184] = 1173, + [1183] = 1183, + [1184] = 1184, [1185] = 1185, [1186] = 1186, [1187] = 1187, [1188] = 1188, [1189] = 1189, - [1190] = 1190, - [1191] = 1191, + [1190] = 1186, + [1191] = 1186, [1192] = 1192, - [1193] = 1193, - [1194] = 1194, + [1193] = 1186, + [1194] = 1186, [1195] = 1195, [1196] = 1196, - [1197] = 1197, + [1197] = 1186, [1198] = 1198, [1199] = 1199, - [1200] = 1191, - [1201] = 1191, - [1202] = 1191, - [1203] = 1191, - [1204] = 1191, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 938, + [1204] = 1204, [1205] = 1205, [1206] = 1206, - [1207] = 1207, - [1208] = 983, + [1207] = 983, + [1208] = 1208, [1209] = 1209, - [1210] = 1210, + [1210] = 968, [1211] = 1211, - [1212] = 990, - [1213] = 1213, - [1214] = 1021, + [1212] = 1212, + [1213] = 945, + [1214] = 1214, [1215] = 1215, - [1216] = 920, + [1216] = 1216, [1217] = 1217, [1218] = 1218, [1219] = 1219, [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 840, - [1227] = 864, - [1228] = 862, - [1229] = 875, + [1221] = 843, + [1222] = 871, + [1223] = 847, + [1224] = 866, + [1225] = 893, + [1226] = 879, + [1227] = 883, + [1228] = 878, + [1229] = 1229, [1230] = 894, - [1231] = 886, + [1231] = 892, [1232] = 1232, - [1233] = 890, - [1234] = 883, - [1235] = 1235, - [1236] = 888, - [1237] = 895, - [1238] = 898, - [1239] = 893, - [1240] = 896, - [1241] = 897, - [1242] = 1242, + [1233] = 895, + [1234] = 1234, + [1235] = 882, + [1236] = 884, + [1237] = 896, + [1238] = 880, + [1239] = 1239, + [1240] = 888, + [1241] = 1241, + [1242] = 891, [1243] = 1243, - [1244] = 889, + [1244] = 1244, [1245] = 1245, [1246] = 1246, [1247] = 1247, - [1248] = 885, - [1249] = 881, + [1248] = 1248, + [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1252, + [1252] = 1249, [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1257, + [1256] = 1249, + [1257] = 1249, + [1258] = 1258, [1259] = 1259, - [1260] = 1257, + [1260] = 1260, [1261] = 1261, - [1262] = 1262, - [1263] = 1257, - [1264] = 1264, + [1262] = 1249, + [1263] = 1263, + [1264] = 1249, [1265] = 1265, [1266] = 1266, - [1267] = 1257, - [1268] = 1257, - [1269] = 1269, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1270, - [1275] = 1273, - [1276] = 1276, - [1277] = 1273, - [1278] = 1270, - [1279] = 1273, - [1280] = 1273, - [1281] = 1281, - [1282] = 1270, - [1283] = 1270, - [1284] = 1273, - [1285] = 1273, + [1267] = 1267, + [1268] = 1268, + [1269] = 1265, + [1270] = 1266, + [1271] = 1265, + [1272] = 1266, + [1273] = 1265, + [1274] = 1266, + [1275] = 1265, + [1276] = 1266, + [1277] = 1277, + [1278] = 1278, + [1279] = 1266, + [1280] = 1265, + [1281] = 1266, + [1282] = 1282, + [1283] = 1283, + [1284] = 1265, + [1285] = 1285, [1286] = 1286, - [1287] = 1270, - [1288] = 1270, + [1287] = 1287, + [1288] = 1288, [1289] = 1289, - [1290] = 821, - [1291] = 1291, + [1290] = 1290, + [1291] = 1287, [1292] = 1292, [1293] = 1293, - [1294] = 1294, - [1295] = 822, + [1294] = 1287, + [1295] = 1287, [1296] = 1296, [1297] = 1297, [1298] = 1298, - [1299] = 1299, - [1300] = 1300, + [1299] = 1287, + [1300] = 818, [1301] = 1301, - [1302] = 1298, + [1302] = 1287, [1303] = 1303, - [1304] = 1298, + [1304] = 819, [1305] = 1305, [1306] = 1306, [1307] = 1307, [1308] = 1308, - [1309] = 1298, - [1310] = 1298, + [1309] = 1309, + [1310] = 1310, [1311] = 1311, [1312] = 1312, [1313] = 1313, - [1314] = 1298, + [1314] = 1314, [1315] = 1315, [1316] = 1316, [1317] = 1317, @@ -4755,114 +4755,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1334] = 1334, [1335] = 1335, [1336] = 1336, - [1337] = 1337, + [1337] = 1336, [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1340, - [1342] = 1342, - [1343] = 1340, - [1344] = 1342, - [1345] = 1340, - [1346] = 1342, - [1347] = 1347, - [1348] = 1342, - [1349] = 1349, - [1350] = 1340, + [1339] = 1336, + [1340] = 1338, + [1341] = 1338, + [1342] = 1336, + [1343] = 1343, + [1344] = 1338, + [1345] = 1345, + [1346] = 1346, + [1347] = 1336, + [1348] = 1336, + [1349] = 1338, + [1350] = 1338, [1351] = 1351, - [1352] = 1340, + [1352] = 1352, [1353] = 1353, - [1354] = 1342, + [1354] = 1354, [1355] = 1355, - [1356] = 1342, - [1357] = 1357, + [1356] = 1356, + [1357] = 843, [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 862, + [1361] = 866, [1362] = 1362, [1363] = 1363, [1364] = 1364, [1365] = 1365, [1366] = 1366, [1367] = 1367, - [1368] = 840, + [1368] = 1368, [1369] = 1369, [1370] = 1370, [1371] = 1371, - [1372] = 1372, - [1373] = 1373, - [1374] = 1373, + [1372] = 1369, + [1373] = 1369, + [1374] = 1369, [1375] = 1375, - [1376] = 1376, - [1377] = 1377, + [1376] = 1369, + [1377] = 1369, [1378] = 1378, [1379] = 1379, - [1380] = 1369, + [1380] = 1366, [1381] = 1381, - [1382] = 1369, - [1383] = 1369, - [1384] = 1369, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, [1385] = 1385, - [1386] = 1369, - [1387] = 1031, + [1386] = 1386, + [1387] = 1387, [1388] = 1388, [1389] = 1389, [1390] = 1390, - [1391] = 1391, + [1391] = 1384, [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1390, + [1393] = 1387, + [1394] = 1390, + [1395] = 1395, [1396] = 1396, [1397] = 1397, [1398] = 1398, [1399] = 1399, - [1400] = 1400, + [1400] = 1389, [1401] = 1401, - [1402] = 1402, - [1403] = 1393, - [1404] = 1404, - [1405] = 1405, - [1406] = 1390, - [1407] = 1396, + [1402] = 1384, + [1403] = 1392, + [1404] = 1387, + [1405] = 1390, + [1406] = 1395, + [1407] = 1407, [1408] = 1408, - [1409] = 1398, - [1410] = 1399, - [1411] = 1411, - [1412] = 1401, - [1413] = 1413, - [1414] = 1393, + [1409] = 1389, + [1410] = 1410, + [1411] = 1384, + [1412] = 1412, + [1413] = 1392, + [1414] = 1387, [1415] = 1390, - [1416] = 1396, - [1417] = 1398, - [1418] = 1399, - [1419] = 1419, - [1420] = 1401, + [1416] = 1395, + [1417] = 1389, + [1418] = 1418, + [1419] = 1384, + [1420] = 1392, [1421] = 1421, - [1422] = 1393, - [1423] = 1423, - [1424] = 1390, - [1425] = 1396, - [1426] = 1393, - [1427] = 1427, - [1428] = 1398, - [1429] = 1399, - [1430] = 1401, + [1422] = 1387, + [1423] = 1390, + [1424] = 1395, + [1425] = 1389, + [1426] = 1384, + [1427] = 1392, + [1428] = 1392, + [1429] = 1387, + [1430] = 1390, [1431] = 1431, - [1432] = 1396, - [1433] = 1401, - [1434] = 1393, + [1432] = 1395, + [1433] = 1433, + [1434] = 1016, [1435] = 1435, - [1436] = 1390, + [1436] = 1436, [1437] = 1437, - [1438] = 1396, - [1439] = 1398, - [1440] = 1399, - [1441] = 1401, - [1442] = 1398, + [1438] = 1395, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 1389, [1443] = 1443, - [1444] = 1399, + [1444] = 1444, [1445] = 1445, [1446] = 1446, [1447] = 1447, @@ -4871,37 +4871,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1450] = 1450, [1451] = 1451, [1452] = 1452, - [1453] = 1453, + [1453] = 1370, [1454] = 1454, - [1455] = 1454, - [1456] = 1456, + [1455] = 1455, + [1456] = 1455, [1457] = 1457, [1458] = 1458, - [1459] = 1454, - [1460] = 1460, + [1459] = 1375, + [1460] = 1455, [1461] = 1461, [1462] = 1462, [1463] = 1463, [1464] = 1464, [1465] = 1465, - [1466] = 1454, + [1466] = 1466, [1467] = 1467, - [1468] = 1385, + [1468] = 1468, [1469] = 1469, [1470] = 1470, - [1471] = 1454, + [1471] = 1471, [1472] = 1472, [1473] = 1473, [1474] = 1474, [1475] = 1475, [1476] = 1476, - [1477] = 1454, + [1477] = 1477, [1478] = 1478, - [1479] = 1479, + [1479] = 1455, [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1377, + [1481] = 1455, + [1482] = 1455, + [1483] = 1483, [1484] = 1484, [1485] = 1485, [1486] = 1486, @@ -4916,130 +4916,130 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1495] = 1495, [1496] = 1496, [1497] = 1497, - [1498] = 1490, + [1498] = 1498, [1499] = 1499, [1500] = 1500, [1501] = 1501, [1502] = 1502, [1503] = 1503, - [1504] = 1490, + [1504] = 1504, [1505] = 1505, - [1506] = 1506, - [1507] = 1507, + [1506] = 1496, + [1507] = 1496, [1508] = 1508, [1509] = 1509, [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1513, - [1514] = 1514, + [1513] = 1487, + [1514] = 1488, [1515] = 1515, [1516] = 1516, - [1517] = 1495, - [1518] = 1496, + [1517] = 1517, + [1518] = 1518, [1519] = 1519, [1520] = 1520, - [1521] = 1521, - [1522] = 1495, + [1521] = 1496, + [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1490, - [1526] = 1490, + [1525] = 1525, + [1526] = 1371, [1527] = 1527, - [1528] = 1496, + [1528] = 1528, [1529] = 1529, - [1530] = 1530, + [1530] = 1487, [1531] = 1531, [1532] = 1532, [1533] = 1533, [1534] = 1534, - [1535] = 1535, - [1536] = 1495, - [1537] = 1496, - [1538] = 1538, + [1535] = 1487, + [1536] = 1488, + [1537] = 1487, + [1538] = 1488, [1539] = 1539, - [1540] = 1540, - [1541] = 1541, + [1540] = 805, + [1541] = 1522, [1542] = 1542, - [1543] = 1500, + [1543] = 1543, [1544] = 1544, [1545] = 1545, [1546] = 1546, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, + [1547] = 1500, + [1548] = 1525, + [1549] = 1532, + [1550] = 1545, [1551] = 1551, [1552] = 1552, - [1553] = 1553, + [1553] = 1528, [1554] = 1554, - [1555] = 1495, - [1556] = 1496, - [1557] = 811, + [1555] = 1511, + [1556] = 1556, + [1557] = 1557, [1558] = 1558, - [1559] = 1490, - [1560] = 1496, - [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1566, - [1567] = 1567, - [1568] = 1500, + [1559] = 1559, + [1560] = 1500, + [1561] = 1525, + [1562] = 1532, + [1563] = 1545, + [1564] = 1551, + [1565] = 1496, + [1566] = 1528, + [1567] = 1488, + [1568] = 1511, [1569] = 1569, - [1570] = 1509, + [1570] = 1570, [1571] = 1571, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1563, - [1576] = 1564, - [1577] = 1565, - [1578] = 1566, - [1579] = 1567, - [1580] = 1381, - [1581] = 1509, + [1572] = 1500, + [1573] = 1525, + [1574] = 1532, + [1575] = 1545, + [1576] = 1551, + [1577] = 1577, + [1578] = 1528, + [1579] = 1579, + [1580] = 1580, + [1581] = 1511, [1582] = 1582, - [1583] = 1583, + [1583] = 1487, [1584] = 1584, - [1585] = 1574, - [1586] = 1563, - [1587] = 1564, - [1588] = 1565, - [1589] = 1566, - [1590] = 1567, - [1591] = 1591, - [1592] = 1509, - [1593] = 1574, - [1594] = 1563, - [1595] = 1564, - [1596] = 1565, - [1597] = 1574, - [1598] = 1563, - [1599] = 1564, - [1600] = 1565, - [1601] = 1566, - [1602] = 1566, - [1603] = 1567, + [1585] = 1500, + [1586] = 1525, + [1587] = 1532, + [1588] = 1545, + [1589] = 1551, + [1590] = 1590, + [1591] = 1528, + [1592] = 1592, + [1593] = 1511, + [1594] = 1488, + [1595] = 1496, + [1596] = 1596, + [1597] = 1500, + [1598] = 1525, + [1599] = 1532, + [1600] = 1545, + [1601] = 1551, + [1602] = 1528, + [1603] = 1551, [1604] = 1604, - [1605] = 1509, - [1606] = 1495, + [1605] = 1511, + [1606] = 1606, [1607] = 1607, - [1608] = 1574, - [1609] = 1563, - [1610] = 1564, - [1611] = 1565, - [1612] = 1566, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, [1613] = 1613, - [1614] = 1567, - [1615] = 1615, - [1616] = 1509, + [1614] = 1614, + [1615] = 1522, + [1616] = 1616, [1617] = 1617, - [1618] = 1567, + [1618] = 1618, [1619] = 1619, [1620] = 1620, - [1621] = 1574, + [1621] = 1621, [1622] = 1622, [1623] = 1623, [1624] = 1624, @@ -5055,7 +5055,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1634] = 1634, [1635] = 1635, [1636] = 1636, - [1637] = 1637, + [1637] = 1635, [1638] = 1638, [1639] = 1639, [1640] = 1640, @@ -5066,325 +5066,325 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1645] = 1645, [1646] = 1646, [1647] = 1647, - [1648] = 1648, - [1649] = 1649, + [1648] = 1630, + [1649] = 1632, [1650] = 1633, - [1651] = 1637, - [1652] = 1638, + [1651] = 1651, + [1652] = 1652, [1653] = 1653, [1654] = 1654, - [1655] = 1644, + [1655] = 1635, [1656] = 1656, [1657] = 1657, [1658] = 1658, [1659] = 1659, [1660] = 1660, [1661] = 1661, - [1662] = 1633, - [1663] = 1663, - [1664] = 1637, - [1665] = 1638, - [1666] = 1666, + [1662] = 1662, + [1663] = 1630, + [1664] = 1632, + [1665] = 1633, + [1666] = 1635, [1667] = 1667, [1668] = 1668, - [1669] = 1644, + [1669] = 1669, [1670] = 1670, [1671] = 1671, [1672] = 1672, [1673] = 1673, [1674] = 1674, - [1675] = 1675, - [1676] = 1676, + [1675] = 1630, + [1676] = 1632, [1677] = 1633, [1678] = 1678, - [1679] = 1679, - [1680] = 1637, - [1681] = 1638, + [1679] = 1635, + [1680] = 1680, + [1681] = 1681, [1682] = 1682, - [1683] = 1644, + [1683] = 1683, [1684] = 1684, [1685] = 1685, [1686] = 1686, [1687] = 1687, - [1688] = 1688, + [1688] = 1630, [1689] = 1689, - [1690] = 1690, - [1691] = 1691, - [1692] = 1692, - [1693] = 1644, + [1690] = 1632, + [1691] = 1633, + [1692] = 1635, + [1693] = 1693, [1694] = 1694, [1695] = 1695, - [1696] = 1633, - [1697] = 1637, - [1698] = 1638, + [1696] = 1630, + [1697] = 1697, + [1698] = 1698, [1699] = 1699, - [1700] = 1644, + [1700] = 1700, [1701] = 1701, - [1702] = 1702, - [1703] = 1703, + [1702] = 1630, + [1703] = 1635, [1704] = 1704, - [1705] = 1705, + [1705] = 1629, [1706] = 1706, - [1707] = 1633, - [1708] = 1633, - [1709] = 1644, + [1707] = 1707, + [1708] = 1687, + [1709] = 1709, [1710] = 1710, [1711] = 1711, - [1712] = 1712, + [1712] = 1629, [1713] = 1713, [1714] = 1714, [1715] = 1715, - [1716] = 1637, - [1717] = 1638, - [1718] = 1635, + [1716] = 1716, + [1717] = 1717, + [1718] = 1687, [1719] = 1719, - [1720] = 1712, - [1721] = 1721, - [1722] = 1635, + [1720] = 1720, + [1721] = 1629, + [1722] = 1722, [1723] = 1723, [1724] = 1724, [1725] = 1725, - [1726] = 1712, + [1726] = 1687, [1727] = 1727, [1728] = 1728, [1729] = 1729, - [1730] = 1730, - [1731] = 1635, + [1730] = 1629, + [1731] = 1632, [1732] = 1732, - [1733] = 1733, - [1734] = 1712, - [1735] = 1712, + [1733] = 1687, + [1734] = 1633, + [1735] = 1735, [1736] = 1736, - [1737] = 1635, - [1738] = 1712, + [1737] = 1629, + [1738] = 1687, [1739] = 1739, - [1740] = 1635, + [1740] = 1740, [1741] = 1741, [1742] = 1742, [1743] = 1743, [1744] = 1744, [1745] = 1745, - [1746] = 1746, + [1746] = 1742, [1747] = 1747, [1748] = 1748, - [1749] = 1748, + [1749] = 1749, [1750] = 1750, [1751] = 1751, [1752] = 1752, [1753] = 1753, - [1754] = 1754, + [1754] = 1748, [1755] = 1755, [1756] = 1756, - [1757] = 1750, - [1758] = 1758, - [1759] = 1750, + [1757] = 1757, + [1758] = 1751, + [1759] = 1759, [1760] = 1760, - [1761] = 1753, + [1761] = 1761, [1762] = 1762, [1763] = 1763, [1764] = 1764, - [1765] = 1756, + [1765] = 1753, [1766] = 1766, [1767] = 1767, [1768] = 1768, [1769] = 1769, - [1770] = 1756, - [1771] = 1763, + [1770] = 1770, + [1771] = 1741, [1772] = 1772, [1773] = 1773, [1774] = 1774, [1775] = 1775, - [1776] = 1760, - [1777] = 1487, + [1776] = 1776, + [1777] = 1777, [1778] = 1778, [1779] = 1779, - [1780] = 1780, + [1780] = 1743, [1781] = 1781, - [1782] = 1782, - [1783] = 1783, + [1782] = 1742, + [1783] = 1748, [1784] = 1784, - [1785] = 1785, - [1786] = 1748, - [1787] = 1469, + [1785] = 1751, + [1786] = 1786, + [1787] = 1753, [1788] = 1788, - [1789] = 1750, + [1789] = 1789, [1790] = 1790, - [1791] = 1753, + [1791] = 1768, [1792] = 1792, - [1793] = 1756, - [1794] = 1763, + [1793] = 1793, + [1794] = 1794, [1795] = 1795, - [1796] = 1796, - [1797] = 1774, + [1796] = 1461, + [1797] = 1797, [1798] = 1798, [1799] = 1799, - [1800] = 1800, - [1801] = 1780, - [1802] = 1760, - [1803] = 1803, - [1804] = 1756, - [1805] = 1763, - [1806] = 1782, - [1807] = 1774, - [1808] = 1760, + [1800] = 1768, + [1801] = 1801, + [1802] = 1478, + [1803] = 1774, + [1804] = 1804, + [1805] = 1805, + [1806] = 1806, + [1807] = 1768, + [1808] = 1776, [1809] = 1809, - [1810] = 1810, + [1810] = 1778, [1811] = 1811, - [1812] = 1780, - [1813] = 1782, - [1814] = 1814, + [1812] = 1743, + [1813] = 1742, + [1814] = 1741, [1815] = 1815, - [1816] = 1816, - [1817] = 1784, + [1816] = 1748, + [1817] = 1743, [1818] = 1818, - [1819] = 1748, - [1820] = 1820, + [1819] = 1751, + [1820] = 1748, [1821] = 1821, - [1822] = 1750, - [1823] = 1823, - [1824] = 1780, - [1825] = 1753, + [1822] = 1753, + [1823] = 1774, + [1824] = 1824, + [1825] = 1825, [1826] = 1826, - [1827] = 1782, - [1828] = 1756, + [1827] = 1827, + [1828] = 1828, [1829] = 1829, - [1830] = 1784, - [1831] = 1831, + [1830] = 1830, + [1831] = 1741, [1832] = 1832, - [1833] = 1784, - [1834] = 1834, - [1835] = 1747, - [1836] = 1748, - [1837] = 1837, + [1833] = 1833, + [1834] = 1763, + [1835] = 1781, + [1836] = 1753, + [1837] = 1776, [1838] = 1838, [1839] = 1839, - [1840] = 1750, + [1840] = 1840, [1841] = 1841, - [1842] = 1842, + [1842] = 1826, [1843] = 1843, - [1844] = 1753, - [1845] = 1753, - [1846] = 1754, - [1847] = 1821, + [1844] = 1844, + [1845] = 1845, + [1846] = 1778, + [1847] = 1844, [1848] = 1848, - [1849] = 1766, - [1850] = 1850, + [1849] = 1849, + [1850] = 1751, [1851] = 1851, - [1852] = 1756, - [1853] = 1748, - [1854] = 1854, - [1855] = 1784, - [1856] = 1856, - [1857] = 1834, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1763, + [1852] = 1774, + [1853] = 1763, + [1854] = 1781, + [1855] = 1855, + [1856] = 1838, + [1857] = 1839, + [1858] = 1840, + [1859] = 1841, + [1860] = 1742, + [1861] = 1748, [1862] = 1862, - [1863] = 1863, - [1864] = 1864, - [1865] = 1841, - [1866] = 1842, - [1867] = 1754, - [1868] = 1821, - [1869] = 1848, - [1870] = 1766, - [1871] = 1774, - [1872] = 1747, - [1873] = 1873, - [1874] = 1834, - [1875] = 1875, - [1876] = 1876, - [1877] = 1760, - [1878] = 1878, + [1863] = 1826, + [1864] = 1751, + [1865] = 1844, + [1866] = 1866, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 1753, + [1871] = 1763, + [1872] = 1781, + [1873] = 1753, + [1874] = 1742, + [1875] = 1838, + [1876] = 1839, + [1877] = 1840, + [1878] = 1841, [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1841, - [1883] = 1842, - [1884] = 1884, + [1880] = 1776, + [1881] = 1778, + [1882] = 1826, + [1883] = 1776, + [1884] = 1844, [1885] = 1885, - [1886] = 1780, - [1887] = 1754, - [1888] = 1821, - [1889] = 1848, - [1890] = 1766, + [1886] = 1768, + [1887] = 1887, + [1888] = 1768, + [1889] = 1889, + [1890] = 1890, [1891] = 1891, - [1892] = 1892, + [1892] = 1741, [1893] = 1893, - [1894] = 1747, - [1895] = 1763, - [1896] = 1834, - [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1774, + [1894] = 1763, + [1895] = 1781, + [1896] = 1741, + [1897] = 1774, + [1898] = 1838, + [1899] = 1839, + [1900] = 1840, [1901] = 1841, - [1902] = 1842, - [1903] = 1848, + [1902] = 1902, + [1903] = 1826, [1904] = 1904, - [1905] = 1754, - [1906] = 1821, - [1907] = 1848, - [1908] = 1766, + [1905] = 1844, + [1906] = 1743, + [1907] = 1907, + [1908] = 1838, [1909] = 1909, - [1910] = 1747, - [1911] = 1911, - [1912] = 1834, + [1910] = 1776, + [1911] = 1763, + [1912] = 1781, [1913] = 1913, - [1914] = 1760, - [1915] = 1841, - [1916] = 1842, - [1917] = 1782, + [1914] = 1914, + [1915] = 1838, + [1916] = 1839, + [1917] = 1840, [1918] = 1841, - [1919] = 1754, - [1920] = 1821, - [1921] = 1848, - [1922] = 1766, - [1923] = 1923, + [1919] = 1839, + [1920] = 1920, + [1921] = 1826, + [1922] = 1778, + [1923] = 1844, [1924] = 1924, - [1925] = 1925, - [1926] = 1747, - [1927] = 1774, - [1928] = 1834, - [1929] = 1842, - [1930] = 1930, - [1931] = 1780, - [1932] = 1858, + [1925] = 1775, + [1926] = 1840, + [1927] = 1927, + [1928] = 1841, + [1929] = 1775, + [1930] = 1778, + [1931] = 1931, + [1932] = 1774, [1933] = 1933, - [1934] = 1934, + [1934] = 1743, [1935] = 1935, [1936] = 1936, - [1937] = 1858, - [1938] = 1782, + [1937] = 1937, + [1938] = 1938, [1939] = 1939, - [1940] = 1784, - [1941] = 1941, + [1940] = 1940, + [1941] = 1935, [1942] = 1942, - [1943] = 1943, + [1943] = 1939, [1944] = 1944, [1945] = 1945, [1946] = 1946, - [1947] = 1947, + [1947] = 1940, [1948] = 1948, [1949] = 1949, [1950] = 1950, [1951] = 1951, [1952] = 1952, - [1953] = 1953, + [1953] = 1935, [1954] = 1954, [1955] = 1955, [1956] = 1956, [1957] = 1957, [1958] = 1958, - [1959] = 1959, - [1960] = 1960, + [1959] = 1950, + [1960] = 1956, [1961] = 1961, - [1962] = 1943, + [1962] = 1962, [1963] = 1963, - [1964] = 1958, + [1964] = 1964, [1965] = 1965, - [1966] = 1943, + [1966] = 1966, [1967] = 1967, [1968] = 1968, [1969] = 1969, @@ -5399,314 +5399,306 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1978] = 1978, [1979] = 1979, [1980] = 1980, - [1981] = 1981, + [1981] = 1978, [1982] = 1982, - [1983] = 1968, + [1983] = 1939, [1984] = 1984, - [1985] = 1985, - [1986] = 1986, + [1985] = 1979, + [1986] = 1940, [1987] = 1987, - [1988] = 1988, - [1989] = 1958, - [1990] = 1943, + [1988] = 1944, + [1989] = 1989, + [1990] = 1990, [1991] = 1991, - [1992] = 1992, + [1992] = 1936, [1993] = 1993, - [1994] = 1994, + [1994] = 1935, [1995] = 1995, - [1996] = 1996, - [1997] = 1947, + [1996] = 1938, + [1997] = 1944, [1998] = 1998, - [1999] = 1999, + [1999] = 1353, [2000] = 2000, - [2001] = 1991, - [2002] = 1971, - [2003] = 1948, + [2001] = 2001, + [2002] = 1989, + [2003] = 2003, [2004] = 2004, - [2005] = 1944, - [2006] = 1952, - [2007] = 1987, - [2008] = 1950, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 1947, + [2005] = 2005, + [2006] = 1948, + [2007] = 2007, + [2008] = 1966, + [2009] = 1966, + [2010] = 1970, + [2011] = 1948, + [2012] = 2012, [2013] = 2013, - [2014] = 2004, - [2015] = 1948, - [2016] = 1967, - [2017] = 2017, - [2018] = 2004, - [2019] = 1958, - [2020] = 1943, - [2021] = 1950, + [2014] = 1939, + [2015] = 1940, + [2016] = 2016, + [2017] = 1961, + [2018] = 2018, + [2019] = 2019, + [2020] = 2020, + [2021] = 2021, [2022] = 2022, - [2023] = 1944, - [2024] = 1947, - [2025] = 1948, - [2026] = 1950, + [2023] = 2023, + [2024] = 2024, + [2025] = 2025, + [2026] = 1995, [2027] = 2027, [2028] = 2028, [2029] = 2029, - [2030] = 2030, - [2031] = 2031, + [2030] = 1950, + [2031] = 1950, [2032] = 2032, - [2033] = 1951, + [2033] = 1956, [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, - [2040] = 1944, - [2041] = 2041, - [2042] = 1952, - [2043] = 1968, - [2044] = 1969, - [2045] = 1970, - [2046] = 1952, + [2035] = 1950, + [2036] = 1956, + [2037] = 1961, + [2038] = 1961, + [2039] = 1956, + [2040] = 2040, + [2041] = 1961, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 1951, [2047] = 2047, [2048] = 2048, - [2049] = 1968, - [2050] = 2050, - [2051] = 1969, - [2052] = 1970, - [2053] = 2053, - [2054] = 2054, + [2049] = 2049, + [2050] = 1975, + [2051] = 1976, + [2052] = 1977, + [2053] = 1978, + [2054] = 1979, [2055] = 2055, [2056] = 2056, [2057] = 2057, [2058] = 2058, [2059] = 1984, - [2060] = 1985, - [2061] = 1986, + [2060] = 2060, + [2061] = 2061, [2062] = 1987, - [2063] = 1988, - [2064] = 2064, - [2065] = 1970, - [2066] = 2066, - [2067] = 2067, - [2068] = 1993, - [2069] = 2069, - [2070] = 2070, - [2071] = 1996, - [2072] = 2072, - [2073] = 1998, - [2074] = 1999, - [2075] = 2000, - [2076] = 1991, - [2077] = 1993, - [2078] = 2078, - [2079] = 2004, - [2080] = 1944, - [2081] = 1952, - [2082] = 1984, - [2083] = 1358, + [2063] = 1970, + [2064] = 1989, + [2065] = 1990, + [2066] = 1991, + [2067] = 1936, + [2068] = 1975, + [2069] = 1976, + [2070] = 1995, + [2071] = 1938, + [2072] = 1944, + [2073] = 1977, + [2074] = 2074, + [2075] = 1978, + [2076] = 1966, + [2077] = 1970, + [2078] = 1979, + [2079] = 1938, + [2080] = 1956, + [2081] = 1961, + [2082] = 2082, + [2083] = 1974, [2084] = 2084, - [2085] = 1958, - [2086] = 1943, - [2087] = 1985, - [2088] = 1986, - [2089] = 1969, - [2090] = 1970, - [2091] = 1987, - [2092] = 1988, - [2093] = 2093, + [2085] = 2085, + [2086] = 2086, + [2087] = 2087, + [2088] = 1990, + [2089] = 2089, + [2090] = 2090, + [2091] = 1984, + [2092] = 2092, + [2093] = 1939, [2094] = 2094, - [2095] = 2095, - [2096] = 2096, - [2097] = 2097, + [2095] = 1948, + [2096] = 1987, + [2097] = 1940, [2098] = 2098, - [2099] = 2099, + [2099] = 1989, [2100] = 2100, - [2101] = 1968, - [2102] = 2102, - [2103] = 1993, - [2104] = 2104, + [2101] = 2101, + [2102] = 1990, + [2103] = 1991, + [2104] = 1936, [2105] = 2105, - [2106] = 1969, - [2107] = 1996, + [2106] = 2106, + [2107] = 1995, [2108] = 2108, - [2109] = 1998, + [2109] = 2109, [2110] = 2110, - [2111] = 1999, - [2112] = 2000, - [2113] = 1991, - [2114] = 2114, - [2115] = 1970, - [2116] = 2004, - [2117] = 1957, - [2118] = 1944, - [2119] = 1952, + [2111] = 2111, + [2112] = 2112, + [2113] = 1938, + [2114] = 2085, + [2115] = 1944, + [2116] = 2090, + [2117] = 2117, + [2118] = 2118, + [2119] = 2040, [2120] = 2120, - [2121] = 1982, + [2121] = 2121, [2122] = 2122, - [2123] = 2097, - [2124] = 2124, - [2125] = 1981, - [2126] = 1988, - [2127] = 2127, + [2123] = 2123, + [2124] = 1976, + [2125] = 2087, + [2126] = 2126, + [2127] = 1975, [2128] = 2128, - [2129] = 2129, - [2130] = 2130, - [2131] = 2131, - [2132] = 1958, - [2133] = 1984, - [2134] = 2096, + [2129] = 1984, + [2130] = 1935, + [2131] = 1976, + [2132] = 2132, + [2133] = 2133, + [2134] = 1977, [2135] = 2135, - [2136] = 2136, - [2137] = 1985, - [2138] = 1967, + [2136] = 1948, + [2137] = 2137, + [2138] = 2138, [2139] = 2139, - [2140] = 1950, - [2141] = 2141, - [2142] = 1958, - [2143] = 1986, - [2144] = 1943, - [2145] = 2145, + [2140] = 2140, + [2141] = 1966, + [2142] = 1970, + [2143] = 1991, + [2144] = 2144, + [2145] = 2108, [2146] = 2146, - [2147] = 1998, - [2148] = 2148, + [2147] = 1939, + [2148] = 1940, [2149] = 2149, - [2150] = 1947, - [2151] = 1948, - [2152] = 1957, - [2153] = 1951, + [2150] = 2085, + [2151] = 1935, + [2152] = 2152, + [2153] = 2153, [2154] = 2154, [2155] = 2155, - [2156] = 1950, - [2157] = 2097, - [2158] = 2158, + [2156] = 2156, + [2157] = 2087, + [2158] = 1987, [2159] = 2159, - [2160] = 1996, - [2161] = 2161, + [2160] = 2160, + [2161] = 1978, [2162] = 2162, [2163] = 2163, - [2164] = 2096, - [2165] = 1969, - [2166] = 2166, + [2164] = 2164, + [2165] = 1979, + [2166] = 1977, [2167] = 2167, - [2168] = 1984, + [2168] = 2168, [2169] = 2169, - [2170] = 1985, - [2171] = 1986, + [2170] = 2170, + [2171] = 1945, [2172] = 2172, - [2173] = 1987, - [2174] = 1988, - [2175] = 2096, + [2173] = 2173, + [2174] = 2108, + [2175] = 2175, [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, - [2180] = 1968, - [2181] = 1957, - [2182] = 1969, - [2183] = 1970, + [2177] = 1984, + [2178] = 1950, + [2179] = 2085, + [2180] = 1956, + [2181] = 1961, + [2182] = 2182, + [2183] = 2183, [2184] = 2184, - [2185] = 1967, - [2186] = 2097, + [2185] = 1987, + [2186] = 2087, [2187] = 2187, - [2188] = 2188, + [2188] = 1989, [2189] = 2189, [2190] = 2190, [2191] = 2191, [2192] = 2192, - [2193] = 2096, + [2193] = 2019, [2194] = 2194, [2195] = 2195, - [2196] = 2196, - [2197] = 2197, + [2196] = 1966, + [2197] = 1990, [2198] = 2198, - [2199] = 2199, - [2200] = 1993, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, - [2204] = 2204, - [2205] = 1996, - [2206] = 1984, - [2207] = 1985, - [2208] = 1986, - [2209] = 1957, - [2210] = 2210, - [2211] = 1987, + [2199] = 1975, + [2200] = 1976, + [2201] = 1977, + [2202] = 1978, + [2203] = 2108, + [2204] = 1979, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2085, + [2209] = 1991, + [2210] = 1936, + [2211] = 2211, [2212] = 2212, - [2213] = 1988, - [2214] = 2097, - [2215] = 2215, - [2216] = 2216, + [2213] = 2213, + [2214] = 2140, + [2215] = 2087, + [2216] = 1984, [2217] = 2217, - [2218] = 2218, - [2219] = 2219, - [2220] = 2128, - [2221] = 2096, + [2218] = 2146, + [2219] = 1970, + [2220] = 2220, + [2221] = 1987, [2222] = 2222, [2223] = 2223, - [2224] = 1998, - [2225] = 1999, - [2226] = 2226, - [2227] = 2203, - [2228] = 2228, - [2229] = 1993, - [2230] = 2230, - [2231] = 2000, - [2232] = 2232, - [2233] = 1996, - [2234] = 1999, - [2235] = 1998, - [2236] = 1999, - [2237] = 2000, - [2238] = 1957, - [2239] = 1991, - [2240] = 2000, - [2241] = 1991, - [2242] = 2004, - [2243] = 2097, - [2244] = 1944, - [2245] = 1952, - [2246] = 2166, - [2247] = 2187, - [2248] = 2248, - [2249] = 2249, - [2250] = 2096, - [2251] = 1967, - [2252] = 2036, - [2253] = 2162, + [2224] = 1989, + [2225] = 1990, + [2226] = 1991, + [2227] = 2227, + [2228] = 1936, + [2229] = 1942, + [2230] = 1995, + [2231] = 2108, + [2232] = 1938, + [2233] = 2233, + [2234] = 1944, + [2235] = 2235, + [2236] = 2085, + [2237] = 2237, + [2238] = 1995, + [2239] = 2239, + [2240] = 2240, + [2241] = 2241, + [2242] = 2087, + [2243] = 1975, + [2244] = 1949, + [2245] = 1938, + [2246] = 2246, + [2247] = 2247, + [2248] = 2156, + [2249] = 1974, + [2250] = 2250, + [2251] = 2003, + [2252] = 1949, + [2253] = 1944, [2254] = 2254, [2255] = 2255, - [2256] = 2131, + [2256] = 2156, [2257] = 2257, - [2258] = 2258, - [2259] = 2050, - [2260] = 2036, - [2261] = 2261, - [2262] = 1967, - [2263] = 2263, - [2264] = 2131, + [2258] = 1948, + [2259] = 2259, + [2260] = 2156, + [2261] = 1995, + [2262] = 2262, + [2263] = 1966, + [2264] = 2156, [2265] = 2265, - [2266] = 2266, - [2267] = 2004, - [2268] = 2131, - [2269] = 2269, - [2270] = 2270, - [2271] = 1947, - [2272] = 2131, - [2273] = 2273, - [2274] = 2274, + [2266] = 1970, + [2267] = 2108, + [2268] = 2156, + [2269] = 2087, + [2270] = 2227, + [2271] = 2227, + [2272] = 2227, + [2273] = 2227, + [2274] = 2227, [2275] = 2275, - [2276] = 2131, - [2277] = 1948, + [2276] = 2276, + [2277] = 2277, [2278] = 2278, - [2279] = 2278, - [2280] = 2278, - [2281] = 2278, - [2282] = 2278, - [2283] = 2278, - [2284] = 2284, - [2285] = 2285, - [2286] = 2286, - [2287] = 2287, - [2288] = 2288, + [2279] = 2279, + [2280] = 2280, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5714,693 +5706,690 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(177); + if (eof) ADVANCE(175); if (lookahead == '\r') SKIP(0); - if (lookahead == '!') ADVANCE(537); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(26); - if (lookahead == '%') ADVANCE(543); - if (lookahead == '&') ADVANCE(444); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(440); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(461); - if (lookahead == ',') ADVANCE(433); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(430); - if (lookahead == '/') ADVANCE(542); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ':') ADVANCE(454); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(554); - if (lookahead == '=') ADVANCE(438); - if (lookahead == '>') ADVANCE(550); - if (lookahead == '?') ADVANCE(533); - if (lookahead == '@') ADVANCE(56); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(53); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(547); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '|') ADVANCE(545); - if (lookahead == '}') ADVANCE(452); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(428); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(452); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(436); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == '\\') ADVANCE(51); + if (lookahead == ']') ADVANCE(446); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(543); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(0); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 1: if (lookahead == '\n') SKIP(14); - if (lookahead == '\r') ADVANCE(194); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '/') ADVANCE(195); - if (lookahead == '<') ADVANCE(196); - if (lookahead == '\\') ADVANCE(53); + if (lookahead == '\r') ADVANCE(192); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '/') ADVANCE(193); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '\\') ADVANCE(51); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(194); - if (lookahead != 0) ADVANCE(197); + lookahead == ' ') ADVANCE(192); + if (lookahead != 0) ADVANCE(195); END_STATE(); case 2: if (lookahead == '\n') SKIP(16); - if (lookahead == '\r') ADVANCE(192); - if (lookahead == '/') ADVANCE(189); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '\\') ADVANCE(191); + if (lookahead == '\r') ADVANCE(190); + if (lookahead == '/') ADVANCE(187); + if (lookahead == '<') ADVANCE(188); + if (lookahead == '\\') ADVANCE(189); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(192); + lookahead == ' ') ADVANCE(190); if (lookahead != 0 && - lookahead != '\'') ADVANCE(188); + lookahead != '\'') ADVANCE(186); END_STATE(); case 3: if (lookahead == '\r') SKIP(3); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(28); - if (lookahead == '&') ADVANCE(445); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(439); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(470); - if (lookahead == '+') ADVANCE(462); - if (lookahead == ',') ADVANCE(433); - if (lookahead == '-') ADVANCE(464); - if (lookahead == '.') ADVANCE(429); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(430); if (lookahead == '/') ADVANCE(39); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ':') ADVANCE(453); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(452); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(40); - if (lookahead == '=') ADVANCE(52); + if (lookahead == '=') ADVANCE(434); if (lookahead == '>') ADVANCE(37); - if (lookahead == '@') ADVANCE(56); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '|') ADVANCE(142); - if (lookahead == '}') ADVANCE(452); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(140); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 4: if (lookahead == '\r') SKIP(4); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(27); - if (lookahead == '&') ADVANCE(445); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(439); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(470); - if (lookahead == '+') ADVANCE(462); - if (lookahead == ',') ADVANCE(433); - if (lookahead == '-') ADVANCE(464); - if (lookahead == '.') ADVANCE(43); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(39); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ':') ADVANCE(50); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(40); - if (lookahead == '=') ADVANCE(436); - if (lookahead == '@') ADVANCE(56); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(29); - if (lookahead == '&') ADVANCE(445); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(439); - if (lookahead == '*') ADVANCE(470); - if (lookahead == '+') ADVANCE(462); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(39); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(40); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); - if (lookahead == '!') ADVANCE(537); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(34); - if (lookahead == '%') ADVANCE(543); - if (lookahead == '&') ADVANCE(444); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(440); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(461); - if (lookahead == ',') ADVANCE(433); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(431); - if (lookahead == '/') ADVANCE(542); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ':') ADVANCE(453); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(554); - if (lookahead == '=') ADVANCE(437); - if (lookahead == '>') ADVANCE(550); - if (lookahead == '?') ADVANCE(533); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(446); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(547); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '|') ADVANCE(544); - if (lookahead == '}') ADVANCE(452); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(429); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == ']') ADVANCE(446); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 7: if (lookahead == '\r') SKIP(7); - if (lookahead == '!') ADVANCE(537); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(28); - if (lookahead == '%') ADVANCE(543); - if (lookahead == '&') ADVANCE(444); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(440); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(461); - if (lookahead == ',') ADVANCE(433); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(429); - if (lookahead == '/') ADVANCE(542); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(554); - if (lookahead == '=') ADVANCE(437); - if (lookahead == '>') ADVANCE(551); - if (lookahead == '?') ADVANCE(533); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(446); - if (lookahead == '^') ADVANCE(547); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '|') ADVANCE(545); - if (lookahead == '}') ADVANCE(452); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(543); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 8: if (lookahead == '\r') SKIP(8); - if (lookahead == '!') ADVANCE(537); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(27); - if (lookahead == '%') ADVANCE(543); - if (lookahead == '&') ADVANCE(444); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(440); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(429); - if (lookahead == '/') ADVANCE(542); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(554); - if (lookahead == '=') ADVANCE(437); - if (lookahead == '>') ADVANCE(551); - if (lookahead == '?') ADVANCE(533); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(446); - if (lookahead == '^') ADVANCE(547); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '|') ADVANCE(544); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(8); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 9: if (lookahead == '\r') SKIP(9); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(34); - if (lookahead == '&') ADVANCE(445); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(439); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(470); - if (lookahead == '+') ADVANCE(462); - if (lookahead == '-') ADVANCE(464); - if (lookahead == '.') ADVANCE(431); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(429); if (lookahead == '/') ADVANCE(39); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ':') ADVANCE(453); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(40); - if (lookahead == '>') ADVANCE(54); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(446); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(546); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '}') ADVANCE(452); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '>') ADVANCE(52); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == ']') ADVANCE(446); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(9); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 10: if (lookahead == '\r') SKIP(10); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(33); - if (lookahead == '&') ADVANCE(445); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(439); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(470); - if (lookahead == '+') ADVANCE(462); - if (lookahead == '-') ADVANCE(464); - if (lookahead == '.') ADVANCE(432); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(430); if (lookahead == '/') ADVANCE(39); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(40); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(10); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 11: if (lookahead == '\r') SKIP(11); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(64); - if (lookahead == '&') ADVANCE(443); - if (lookahead == '(') ADVANCE(440); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(470); - if (lookahead == '+') ADVANCE(460); - if (lookahead == ',') ADVANCE(433); - if (lookahead == '-') ADVANCE(463); - if (lookahead == '.') ADVANCE(432); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '&') ADVANCE(441); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(458); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(461); + if (lookahead == '.') ADVANCE(430); if (lookahead == '/') ADVANCE(39); - if (lookahead == ':') ADVANCE(453); - if (lookahead == ';') ADVANCE(449); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(41); if (lookahead == '>') ADVANCE(38); - if (lookahead == '@') ADVANCE(56); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '_') ADVANCE(66); - if (lookahead == '{') ADVANCE(450); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == ']') ADVANCE(446); + if (lookahead == '_') ADVANCE(64); + if (lookahead == '{') ADVANCE(448); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(11); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(164); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(162); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 12: if (lookahead == '\r') SKIP(12); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(67); - if (lookahead == '&') ADVANCE(443); - if (lookahead == '(') ADVANCE(440); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(470); - if (lookahead == ',') ADVANCE(433); - if (lookahead == '.') ADVANCE(432); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(65); + if (lookahead == '&') ADVANCE(441); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '.') ADVANCE(430); if (lookahead == '/') ADVANCE(39); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ':') ADVANCE(453); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(40); - if (lookahead == '=') ADVANCE(436); + if (lookahead == '=') ADVANCE(434); if (lookahead == '>') ADVANCE(37); - if (lookahead == '@') ADVANCE(56); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '_') ADVANCE(68); - if (lookahead == '{') ADVANCE(450); - if (lookahead == '}') ADVANCE(452); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == '_') ADVANCE(66); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '}') ADVANCE(450); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 13: if (lookahead == '\r') SKIP(13); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(92); - if (lookahead == '*') ADVANCE(44); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(90); + if (lookahead == '*') ADVANCE(43); if (lookahead == '/') ADVANCE(39); if (lookahead == '<') ADVANCE(40); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '_') ADVANCE(68); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(66); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(13); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); - if (lookahead == '"') ADVANCE(193); + if (lookahead == '"') ADVANCE(191); if (lookahead == '/') ADVANCE(39); if (lookahead == '<') ADVANCE(40); - if (lookahead == '\\') ADVANCE(53); + if (lookahead == '\\') ADVANCE(51); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(14); END_STATE(); case 15: if (lookahead == '\r') SKIP(15); - if (lookahead == '$') ADVANCE(65); + if (lookahead == '$') ADVANCE(63); if (lookahead == '/') ADVANCE(39); if (lookahead == '<') ADVANCE(40); - if (lookahead == '_') ADVANCE(61); + if (lookahead == '_') ADVANCE(59); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(15); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 16: if (lookahead == '\r') SKIP(16); if (lookahead == '/') ADVANCE(39); if (lookahead == '<') ADVANCE(40); - if (lookahead == '\\') ADVANCE(53); + if (lookahead == '\\') ADVANCE(51); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(16); END_STATE(); case 17: if (lookahead == '\r') SKIP(17); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(30); - if (lookahead == '&') ADVANCE(445); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(439); - if (lookahead == '*') ADVANCE(470); - if (lookahead == '+') ADVANCE(462); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(39); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(40); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(17); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 18: if (lookahead == '\r') SKIP(18); - if (lookahead == '!') ADVANCE(537); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(29); - if (lookahead == '%') ADVANCE(543); - if (lookahead == '&') ADVANCE(444); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(440); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(429); - if (lookahead == '/') ADVANCE(542); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(554); - if (lookahead == '=') ADVANCE(437); - if (lookahead == '>') ADVANCE(551); - if (lookahead == '?') ADVANCE(533); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(446); - if (lookahead == '^') ADVANCE(547); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '|') ADVANCE(544); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 19: if (lookahead == '\r') SKIP(19); - if (lookahead == '!') ADVANCE(537); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(32); - if (lookahead == '%') ADVANCE(543); - if (lookahead == '&') ADVANCE(444); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(440); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(429); - if (lookahead == '/') ADVANCE(542); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(554); - if (lookahead == '=') ADVANCE(437); - if (lookahead == '>') ADVANCE(551); - if (lookahead == '?') ADVANCE(533); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(446); - if (lookahead == '^') ADVANCE(547); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '|') ADVANCE(544); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(30); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(19); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 20: if (lookahead == '\r') SKIP(20); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(31); - if (lookahead == '&') ADVANCE(445); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(439); - if (lookahead == '*') ADVANCE(470); - if (lookahead == '+') ADVANCE(462); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(39); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(40); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(20); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 21: if (lookahead == '\r') SKIP(21); - if (lookahead == '!') ADVANCE(537); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(31); - if (lookahead == '%') ADVANCE(543); - if (lookahead == '&') ADVANCE(444); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(440); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(429); - if (lookahead == '/') ADVANCE(542); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(554); - if (lookahead == '=') ADVANCE(437); - if (lookahead == '>') ADVANCE(551); - if (lookahead == '?') ADVANCE(533); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(446); - if (lookahead == '^') ADVANCE(547); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '|') ADVANCE(544); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(21); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 22: if (lookahead == '\r') SKIP(22); - if (lookahead == '!') ADVANCE(536); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); if (lookahead == '$') ADVANCE(32); - if (lookahead == '&') ADVANCE(445); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(439); - if (lookahead == '*') ADVANCE(470); - if (lookahead == '+') ADVANCE(462); - if (lookahead == '-') ADVANCE(464); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); if (lookahead == '/') ADVANCE(39); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); if (lookahead == '<') ADVANCE(40); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(22); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 23: if (lookahead == '\r') SKIP(23); - if (lookahead == '!') ADVANCE(537); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '$') ADVANCE(30); - if (lookahead == '%') ADVANCE(543); - if (lookahead == '&') ADVANCE(444); - if (lookahead == '\'') ADVANCE(187); - if (lookahead == '(') ADVANCE(440); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(461); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(429); - if (lookahead == '/') ADVANCE(542); - if (lookahead == '0') ADVANCE(180); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(554); - if (lookahead == '=') ADVANCE(437); - if (lookahead == '>') ADVANCE(551); - if (lookahead == '?') ADVANCE(533); - if (lookahead == '@') ADVANCE(59); - if (lookahead == '[') ADVANCE(446); - if (lookahead == '^') ADVANCE(547); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(451); - if (lookahead == '|') ADVANCE(544); - if (lookahead == '~') ADVANCE(538); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(32); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(181); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 24: - if (lookahead == '"') ADVANCE(204); + if (lookahead == '"') ADVANCE(202); if (lookahead == '=') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(24); @@ -6410,7 +6399,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); case 25: - if (lookahead == '"') ADVANCE(204); + if (lookahead == '"') ADVANCE(202); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || @@ -6419,186 +6408,186 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 26: ADVANCE_MAP( - '$', 62, - '_', 63, - 'a', 327, - 'c', 225, - 'd', 264, - 'e', 239, - 'f', 275, - 'i', 288, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 220, + '$', 60, + '_', 61, + 'a', 325, + 'c', 223, + 'd', 262, + 'e', 237, + 'f', 273, + 'i', 286, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 218, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(424); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); END_STATE(); case 27: ADVANCE_MAP( - '$', 62, - '_', 65, - 'a', 327, - 'c', 225, - 'd', 264, - 'e', 241, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 223, + 'd', 262, + 'e', 239, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 28: ADVANCE_MAP( - '$', 62, - '_', 65, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 245, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 243, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 29: ADVANCE_MAP( - '$', 62, - '_', 65, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 240, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 238, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 30: ADVANCE_MAP( - '$', 62, - '_', 65, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 243, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 241, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 31: ADVANCE_MAP( - '$', 62, - '_', 65, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 242, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 240, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 32: ADVANCE_MAP( - '$', 62, - '_', 65, - 'a', 327, - 'c', 353, - 'd', 284, - 'e', 244, - 'f', 275, - 'i', 289, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 317, - 't', 412, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 242, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 33: ADVANCE_MAP( - '$', 62, - '_', 65, - 'a', 328, - 'c', 353, - 'd', 284, - 'e', 335, - 'f', 276, - 'i', 382, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 318, - 't', 412, - 'v', 220, + '$', 60, + '_', 63, + 'a', 326, + 'c', 351, + 'd', 282, + 'e', 333, + 'f', 274, + 'i', 380, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 316, + 't', 410, + 'v', 218, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 34: ADVANCE_MAP( - '$', 62, - '_', 65, - 'a', 328, - 'c', 353, - 'd', 284, - 'e', 335, - 'f', 276, - 'i', 382, - 'n', 219, - 'o', 301, - 'q', 349, - 's', 318, - 't', 412, - 'v', 224, + '$', 60, + '_', 63, + 'a', 326, + 'c', 351, + 'd', 282, + 'e', 333, + 'f', 274, + 'i', 380, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 316, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 35: - if (lookahead == '\'') ADVANCE(204); + if (lookahead == '\'') ADVANCE(202); if (lookahead == '=') ADVANCE(35); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(35); @@ -6608,7 +6597,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); END_STATE(); case 36: - if (lookahead == '\'') ADVANCE(204); + if (lookahead == '\'') ADVANCE(202); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(36); if (('0' <= lookahead && lookahead <= '9') || @@ -6616,492 +6605,496 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); case 37: - if (lookahead == ')') ADVANCE(435); + if (lookahead == ')') ADVANCE(433); END_STATE(); case 38: - if (lookahead == ')') ADVANCE(435); - if (lookahead == '>') ADVANCE(468); + if (lookahead == ')') ADVANCE(433); + if (lookahead == '>') ADVANCE(466); END_STATE(); case 39: - if (lookahead == '*') ADVANCE(210); - if (lookahead == '/') ADVANCE(206); + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(204); END_STATE(); case 40: - if (lookahead == '*') ADVANCE(207); + if (lookahead == '*') ADVANCE(205); END_STATE(); case 41: - if (lookahead == '*') ADVANCE(207); - if (lookahead == '<') ADVANCE(466); + if (lookahead == '*') ADVANCE(205); + if (lookahead == '<') ADVANCE(464); END_STATE(); case 42: - if (lookahead == '.') ADVANCE(442); + if (lookahead == '.') ADVANCE(440); END_STATE(); case 43: - if (lookahead == '.') ADVANCE(42); + if (lookahead == '/') ADVANCE(210); + if (lookahead == '>') ADVANCE(207); END_STATE(); case 44: - if (lookahead == '/') ADVANCE(212); - if (lookahead == '>') ADVANCE(209); + if (lookahead == '1') ADVANCE(46); + if (lookahead == '3') ADVANCE(45); + if (lookahead == '6') ADVANCE(47); + if (lookahead == '8') ADVANCE(176); END_STATE(); case 45: - if (lookahead == '1') ADVANCE(47); - if (lookahead == '3') ADVANCE(46); - if (lookahead == '6') ADVANCE(48); - if (lookahead == '8') ADVANCE(178); + if (lookahead == '2') ADVANCE(176); END_STATE(); case 46: - if (lookahead == '2') ADVANCE(178); + if (lookahead == '2') ADVANCE(48); + if (lookahead == '6') ADVANCE(176); END_STATE(); case 47: - if (lookahead == '2') ADVANCE(49); - if (lookahead == '6') ADVANCE(178); + if (lookahead == '4') ADVANCE(176); END_STATE(); case 48: - if (lookahead == '4') ADVANCE(178); + if (lookahead == '8') ADVANCE(176); END_STATE(); case 49: - if (lookahead == '8') ADVANCE(178); - END_STATE(); - case 50: - if (lookahead == ':') ADVANCE(428); - END_STATE(); - case 51: - if (lookahead == '=') ADVANCE(51); - if (lookahead == '`') ADVANCE(204); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '`') ADVANCE(202); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(51); + lookahead == ' ') ADVANCE(49); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(51); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); - case 52: - if (lookahead == '>') ADVANCE(457); + case 50: + if (lookahead == '>') ADVANCE(455); END_STATE(); - case 53: + case 51: ADVANCE_MAP( - 'U', 163, - 'u', 159, - 'x', 156, - '"', 186, - '\'', 186, - '0', 186, - '\\', 186, - 'a', 186, - 'b', 186, - 'e', 186, - 'f', 186, - 'n', 186, - 'r', 186, - 't', 186, - 'v', 186, + 'U', 161, + 'u', 157, + 'x', 154, + '"', 184, + '\'', 184, + '0', 184, + '\\', 184, + 'a', 184, + 'b', 184, + 'e', 184, + 'f', 184, + 'n', 184, + 'r', 184, + 't', 184, + 'v', 184, ); END_STATE(); + case 52: + if (lookahead == ']') ADVANCE(570); + END_STATE(); + case 53: + if (lookahead == '_') ADVANCE(53); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + END_STATE(); case 54: - if (lookahead == ']') ADVANCE(572); + if (lookahead == '_') ADVANCE(54); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(164); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 55: - if (lookahead == '_') ADVANCE(55); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); + ADVANCE_MAP( + '_', 56, + 'a', 125, + 'c', 74, + 'd', 83, + 'e', 75, + 'i', 109, + 't', 137, + 'v', 69, + ); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 56: if (lookahead == '_') ADVANCE(56); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(166); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 57: - ADVANCE_MAP( - '_', 58, - 'a', 127, - 'c', 76, - 'd', 85, - 'e', 77, - 'i', 111, - 't', 139, - 'v', 71, - ); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (lookahead == '_') ADVANCE(57); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 58: if (lookahead == '_') ADVANCE(58); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 59: if (lookahead == '_') ADVANCE(59); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 60: if (lookahead == '_') ADVANCE(60); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(424); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); END_STATE(); case 61: if (lookahead == '_') ADVANCE(61); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 62: - if (lookahead == '_') ADVANCE(62); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + if (lookahead == '_') ADVANCE(63); + if (lookahead == 'e') ADVANCE(406); + if (lookahead == 't') ADVANCE(410); + if (lookahead == 'v') ADVANCE(231); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 63: if (lookahead == '_') ADVANCE(63); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(424); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 64: - if (lookahead == '_') ADVANCE(65); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 't') ADVANCE(412); - if (lookahead == 'v') ADVANCE(233); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); + if (lookahead == '_') ADVANCE(64); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(162); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 65: if (lookahead == '_') ADVANCE(65); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(165); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 66: if (lookahead == '_') ADVANCE(66); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(164); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 67: - if (lookahead == '_') ADVANCE(67); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(425); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + if (lookahead == '`') ADVANCE(202); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); END_STATE(); case 68: - if (lookahead == '_') ADVANCE(68); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (lookahead == '`') ADVANCE(201); END_STATE(); case 69: - if (lookahead == '`') ADVANCE(204); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(69); + if (lookahead == 'a') ADVANCE(132); END_STATE(); case 70: - if (lookahead == '`') ADVANCE(203); + if (lookahead == 'a') ADVANCE(107); END_STATE(); case 71: - if (lookahead == 'a') ADVANCE(134); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 72: - if (lookahead == 'a') ADVANCE(109); + if (lookahead == 'a') ADVANCE(79); END_STATE(); case 73: - if (lookahead == 'a') ADVANCE(137); + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(81); + if (lookahead == 'a') ADVANCE(127); END_STATE(); case 75: - if (lookahead == 'a') ADVANCE(106); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'l') ADVANCE(128); + if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'r') ADVANCE(122); + if (lookahead == 'v') ADVANCE(70); + if (lookahead == 'x') ADVANCE(92); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(129); + if (lookahead == 'c') ADVANCE(476); END_STATE(); case 77: - if (lookahead == 'c') ADVANCE(102); - if (lookahead == 'l') ADVANCE(130); - if (lookahead == 'n') ADVANCE(82); - if (lookahead == 'r') ADVANCE(124); - if (lookahead == 'v') ADVANCE(72); - if (lookahead == 'x') ADVANCE(94); + if (lookahead == 'c') ADVANCE(101); END_STATE(); case 78: - if (lookahead == 'c') ADVANCE(478); + if (lookahead == 'c') ADVANCE(105); END_STATE(); case 79: - if (lookahead == 'c') ADVANCE(103); + if (lookahead == 'c') ADVANCE(102); END_STATE(); case 80: - if (lookahead == 'c') ADVANCE(107); + if (lookahead == 'd') ADVANCE(98); END_STATE(); case 81: - if (lookahead == 'c') ADVANCE(104); + if (lookahead == 'd') ADVANCE(99); END_STATE(); case 82: - if (lookahead == 'd') ADVANCE(100); + if (lookahead == 'd') ADVANCE(88); END_STATE(); case 83: - if (lookahead == 'd') ADVANCE(101); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 84: - if (lookahead == 'd') ADVANCE(90); + if (lookahead == 'e') ADVANCE(485); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == 'e') ADVANCE(483); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(487); + if (lookahead == 'e') ADVANCE(97); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'e') ADVANCE(567); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'e') ADVANCE(474); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'e') ADVANCE(565); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(476); + if (lookahead == 'e') ADVANCE(110); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(567); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(112); + if (lookahead == 'e') ADVANCE(76); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(123); + if (lookahead == 'e') ADVANCE(72); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(78); + if (lookahead == 'f') ADVANCE(481); END_STATE(); case 95: - if (lookahead == 'e') ADVANCE(74); + if (lookahead == 'f') ADVANCE(561); END_STATE(); case 96: - if (lookahead == 'f') ADVANCE(483); + if (lookahead == 'f') ADVANCE(71); END_STATE(); case 97: - if (lookahead == 'f') ADVANCE(563); + if (lookahead == 'f') ADVANCE(123); + if (lookahead == 'o') ADVANCE(95); END_STATE(); case 98: - if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'f') ADVANCE(114); + if (lookahead == 'i') ADVANCE(94); + if (lookahead == 's') ADVANCE(136); END_STATE(); case 99: - if (lookahead == 'f') ADVANCE(125); - if (lookahead == 'o') ADVANCE(97); + if (lookahead == 'f') ADVANCE(115); END_STATE(); case 100: - if (lookahead == 'f') ADVANCE(116); - if (lookahead == 'i') ADVANCE(96); - if (lookahead == 's') ADVANCE(138); + if (lookahead == 'h') ADVANCE(111); END_STATE(); case 101: - if (lookahead == 'f') ADVANCE(117); + if (lookahead == 'h') ADVANCE(490); END_STATE(); case 102: - if (lookahead == 'h') ADVANCE(113); + if (lookahead == 'h') ADVANCE(496); END_STATE(); case 103: - if (lookahead == 'h') ADVANCE(492); + if (lookahead == 'i') ADVANCE(131); END_STATE(); case 104: - if (lookahead == 'h') ADVANCE(498); + if (lookahead == 'l') ADVANCE(508); END_STATE(); case 105: - if (lookahead == 'i') ADVANCE(133); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 106: - if (lookahead == 'l') ADVANCE(510); + if (lookahead == 'l') ADVANCE(130); END_STATE(); case 107: - if (lookahead == 'l') ADVANCE(136); + if (lookahead == 'l') ADVANCE(133); END_STATE(); case 108: - if (lookahead == 'l') ADVANCE(132); + if (lookahead == 'm') ADVANCE(563); END_STATE(); case 109: - if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 110: - if (lookahead == 'm') ADVANCE(565); + if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'v') ADVANCE(73); END_STATE(); case 111: - if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'o') ADVANCE(478); END_STATE(); case 112: - if (lookahead == 'n') ADVANCE(83); - if (lookahead == 'v') ADVANCE(75); + if (lookahead == 'o') ADVANCE(108); END_STATE(); case 113: - if (lookahead == 'o') ADVANCE(480); + if (lookahead == 'o') ADVANCE(119); END_STATE(); case 114: - if (lookahead == 'o') ADVANCE(110); + if (lookahead == 'o') ADVANCE(120); END_STATE(); case 115: - if (lookahead == 'o') ADVANCE(121); + if (lookahead == 'o') ADVANCE(124); END_STATE(); case 116: - if (lookahead == 'o') ADVANCE(122); + if (lookahead == 'p') ADVANCE(86); END_STATE(); case 117: - if (lookahead == 'o') ADVANCE(126); + if (lookahead == 'p') ADVANCE(87); END_STATE(); case 118: - if (lookahead == 'p') ADVANCE(88); + if (lookahead == 'p') ADVANCE(89); END_STATE(); case 119: - if (lookahead == 'p') ADVANCE(89); + if (lookahead == 'r') ADVANCE(472); END_STATE(); case 120: - if (lookahead == 'p') ADVANCE(91); + if (lookahead == 'r') ADVANCE(493); END_STATE(); case 121: - if (lookahead == 'r') ADVANCE(474); + if (lookahead == 'r') ADVANCE(129); END_STATE(); case 122: - if (lookahead == 'r') ADVANCE(495); + if (lookahead == 'r') ADVANCE(113); END_STATE(); case 123: - if (lookahead == 'r') ADVANCE(131); + if (lookahead == 'r') ADVANCE(112); END_STATE(); case 124: - if (lookahead == 'r') ADVANCE(115); + if (lookahead == 'r') ADVANCE(93); END_STATE(); case 125: - if (lookahead == 'r') ADVANCE(114); + if (lookahead == 's') ADVANCE(126); END_STATE(); case 126: - if (lookahead == 'r') ADVANCE(95); + if (lookahead == 's') ADVANCE(91); END_STATE(); case 127: - if (lookahead == 's') ADVANCE(128); + if (lookahead == 's') ADVANCE(84); END_STATE(); case 128: - if (lookahead == 's') ADVANCE(93); + if (lookahead == 's') ADVANCE(85); END_STATE(); case 129: - if (lookahead == 's') ADVANCE(86); + if (lookahead == 't') ADVANCE(470); END_STATE(); case 130: - if (lookahead == 's') ADVANCE(87); + if (lookahead == 't') ADVANCE(487); END_STATE(); case 131: - if (lookahead == 't') ADVANCE(472); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 132: - if (lookahead == 't') ADVANCE(489); + if (lookahead == 't') ADVANCE(138); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(79); + if (lookahead == 't') ADVANCE(139); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(140); + if (lookahead == 'u') ADVANCE(82); END_STATE(); case 135: - if (lookahead == 't') ADVANCE(141); + if (lookahead == 'u') ADVANCE(106); END_STATE(); case 136: - if (lookahead == 'u') ADVANCE(84); + if (lookahead == 'w') ADVANCE(103); END_STATE(); case 137: - if (lookahead == 'u') ADVANCE(108); + if (lookahead == 'y') ADVANCE(116); END_STATE(); case 138: - if (lookahead == 'w') ADVANCE(105); + if (lookahead == 'y') ADVANCE(117); END_STATE(); case 139: if (lookahead == 'y') ADVANCE(118); END_STATE(); case 140: - if (lookahead == 'y') ADVANCE(119); + if (lookahead == '}') ADVANCE(560); END_STATE(); case 141: - if (lookahead == 'y') ADVANCE(120); - END_STATE(); - case 142: - if (lookahead == '}') ADVANCE(562); - END_STATE(); - case 143: if (lookahead == '0' || - lookahead == '1') ADVANCE(182); + lookahead == '1') ADVANCE(180); END_STATE(); - case 144: + case 142: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(170); + lookahead == ' ') ADVANCE(168); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); END_STATE(); - case 145: + case 143: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(154); + lookahead == ' ') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); END_STATE(); - case 146: + case 144: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(155); + lookahead == ' ') ADVANCE(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); END_STATE(); - case 147: + case 145: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(157); + lookahead == ' ') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); END_STATE(); - case 148: + case 146: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(171); + lookahead == ' ') ADVANCE(169); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(172); END_STATE(); - case 149: + case 147: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(172); + lookahead == ' ') ADVANCE(170); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); + END_STATE(); + case 148: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(181); + END_STATE(); + case 149: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(179); END_STATE(); case 150: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); END_STATE(); case 151: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(182); END_STATE(); case 152: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(186); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); END_STATE(); case 153: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); END_STATE(); case 154: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); END_STATE(); case 155: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); END_STATE(); case 156: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(152); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); END_STATE(); case 157: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(156); END_STATE(); case 158: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(156); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(157); END_STATE(); case 159: if (('0' <= lookahead && lookahead <= '9') || @@ -7119,14 +7112,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); END_STATE(); case 162: + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(162); END_STATE(); case 163: + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(162); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(163); END_STATE(); case 164: if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); @@ -7135,57 +7130,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_') ADVANCE(164); END_STATE(); case 165: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(420); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(165); - END_STATE(); - case 166: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(421); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(166); - END_STATE(); - case 167: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(25); END_STATE(); - case 168: + case 166: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); - case 169: + case 167: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(69); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); END_STATE(); - case 170: + case 168: if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); END_STATE(); - case 171: + case 169: if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(172); END_STATE(); - case 172: + case 170: if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(175); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); END_STATE(); - case 173: + case 171: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == '+' || @@ -7194,7 +7177,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 174: + case 172: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == '+' || @@ -7203,1146 +7186,1162 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); END_STATE(); - case 175: + case 173: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || lookahead == '=' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(51); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); - case 176: - if (eof) ADVANCE(177); - if (lookahead == '\r') SKIP(176); - if (lookahead == '!') ADVANCE(537); - if (lookahead == '"') ADVANCE(193); - if (lookahead == '$') ADVANCE(57); - if (lookahead == '%') ADVANCE(543); - if (lookahead == '&') ADVANCE(444); - if (lookahead == '(') ADVANCE(440); - if (lookahead == ')') ADVANCE(441); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '+') ADVANCE(461); - if (lookahead == ',') ADVANCE(433); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '.') ADVANCE(431); - if (lookahead == '/') ADVANCE(542); - if (lookahead == ':') ADVANCE(454); - if (lookahead == ';') ADVANCE(449); - if (lookahead == '<') ADVANCE(554); - if (lookahead == '=') ADVANCE(437); - if (lookahead == '>') ADVANCE(550); - if (lookahead == '?') ADVANCE(533); - if (lookahead == '@') ADVANCE(56); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(547); - if (lookahead == '_') ADVANCE(60); - if (lookahead == '`') ADVANCE(198); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(450); - if (lookahead == '|') ADVANCE(544); - if (lookahead == '}') ADVANCE(452); + case 174: + if (eof) ADVANCE(175); + if (lookahead == '\r') SKIP(174); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '$') ADVANCE(55); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(429); + if (lookahead == '/') ADVANCE(540); + if (lookahead == ':') ADVANCE(452); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == ']') ADVANCE(446); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '}') ADVANCE(450); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(176); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + lookahead == ' ') SKIP(174); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); - case 177: + case 175: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 178: + case 176: ACCEPT_TOKEN(sym_integer_literal); END_STATE(); - case 179: + case 177: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '1') ADVANCE(47); - if (lookahead == '3') ADVANCE(46); - if (lookahead == '6') ADVANCE(48); + if (lookahead == '1') ADVANCE(46); + if (lookahead == '3') ADVANCE(45); + if (lookahead == '6') ADVANCE(47); if (lookahead == '8' || lookahead == 'L' || - lookahead == 'l') ADVANCE(178); + lookahead == 'l') ADVANCE(176); END_STATE(); - case 180: + case 178: ACCEPT_TOKEN(sym_integer_literal); ADVANCE_MAP( - 'U', 185, - '_', 151, - 'i', 45, - 'u', 179, - 'B', 143, - 'b', 143, - 'L', 178, - 'l', 178, - 'O', 150, - 'o', 150, - 'X', 153, - 'x', 153, + 'U', 183, + '_', 149, + 'i', 44, + 'u', 177, + 'B', 141, + 'b', 141, + 'L', 176, + 'l', 176, + 'O', 148, + 'o', 148, + 'X', 151, + 'x', 151, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(179); END_STATE(); - case 181: + case 179: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(185); - if (lookahead == '_') ADVANCE(151); - if (lookahead == 'i') ADVANCE(45); - if (lookahead == 'u') ADVANCE(179); + if (lookahead == 'U') ADVANCE(183); + if (lookahead == '_') ADVANCE(149); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'u') ADVANCE(177); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + lookahead == 'l') ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(179); END_STATE(); - case 182: + case 180: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(185); - if (lookahead == '_') ADVANCE(143); - if (lookahead == 'i') ADVANCE(45); - if (lookahead == 'u') ADVANCE(179); + if (lookahead == 'U') ADVANCE(183); + if (lookahead == '_') ADVANCE(141); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'u') ADVANCE(177); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(178); + lookahead == 'l') ADVANCE(176); if (lookahead == '0' || - lookahead == '1') ADVANCE(182); + lookahead == '1') ADVANCE(180); END_STATE(); - case 183: + case 181: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(185); - if (lookahead == '_') ADVANCE(150); - if (lookahead == 'i') ADVANCE(45); - if (lookahead == 'u') ADVANCE(179); + if (lookahead == 'U') ADVANCE(183); + if (lookahead == '_') ADVANCE(148); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'u') ADVANCE(177); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(178); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(183); + lookahead == 'l') ADVANCE(176); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(181); END_STATE(); - case 184: + case 182: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(185); - if (lookahead == '_') ADVANCE(153); - if (lookahead == 'i') ADVANCE(45); - if (lookahead == 'u') ADVANCE(179); + if (lookahead == 'U') ADVANCE(183); + if (lookahead == '_') ADVANCE(151); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'u') ADVANCE(177); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(178); + lookahead == 'l') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(182); END_STATE(); - case 185: + case 183: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(178); + lookahead == 'l') ADVANCE(176); END_STATE(); - case 186: + case 184: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 187: + case 185: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 188: + case 186: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 189: + case 187: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '/') ADVANCE(206); + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(204); END_STATE(); - case 190: + case 188: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(207); + if (lookahead == '*') ADVANCE(205); END_STATE(); - case 191: + case 189: ACCEPT_TOKEN(aux_sym_char_literal_token1); ADVANCE_MAP( - 'U', 163, - 'u', 159, - 'x', 156, - '"', 186, - '\'', 186, - '0', 186, - '\\', 186, - 'a', 186, - 'b', 186, - 'e', 186, - 'f', 186, - 'n', 186, - 'r', 186, - 't', 186, - 'v', 186, + 'U', 161, + 'u', 157, + 'x', 154, + '"', 184, + '\'', 184, + '0', 184, + '\\', 184, + 'a', 184, + 'b', 184, + 'e', 184, + 'f', 184, + 'n', 184, + 'r', 184, + 't', 184, + 'v', 184, ); END_STATE(); - case 192: + case 190: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(53); + if (lookahead == '\\') ADVANCE(51); END_STATE(); - case 193: + case 191: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 194: + case 192: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '\r') ADVANCE(194); - if (lookahead == '/') ADVANCE(195); - if (lookahead == '<') ADVANCE(196); + if (lookahead == '\r') ADVANCE(192); + if (lookahead == '/') ADVANCE(193); + if (lookahead == '<') ADVANCE(194); if (lookahead == '\t' || lookahead == 0x0b || lookahead == '\f' || - lookahead == ' ') ADVANCE(194); + lookahead == ' ') ADVANCE(192); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(197); + lookahead != '\\') ADVANCE(195); END_STATE(); - case 195: + case 193: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(197); - if (lookahead == '/') ADVANCE(197); + if (lookahead == '*') ADVANCE(195); + if (lookahead == '/') ADVANCE(195); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(197); + lookahead != '\\') ADVANCE(195); END_STATE(); - case 196: + case 194: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(197); + if (lookahead == '*') ADVANCE(195); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(197); + lookahead != '\\') ADVANCE(195); END_STATE(); - case 197: + case 195: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(197); + lookahead != '\\') ADVANCE(195); END_STATE(); - case 198: + case 196: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 199: + case 197: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(203); - if (lookahead == '`') ADVANCE(205); - if (lookahead != 0) ADVANCE(199); + if (lookahead == '\n') ADVANCE(201); + if (lookahead == '`') ADVANCE(203); + if (lookahead != 0) ADVANCE(197); END_STATE(); - case 200: + case 198: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\r') ADVANCE(200); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '<') ADVANCE(202); - if (lookahead == '`') ADVANCE(70); + if (lookahead == '\r') ADVANCE(198); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '`') ADVANCE(68); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(200); - if (lookahead != 0) ADVANCE(203); + lookahead == ' ') ADVANCE(198); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 201: + case 199: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(199); - if (lookahead == '`') ADVANCE(70); - if (lookahead != 0) ADVANCE(203); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 202: + case 200: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '`') ADVANCE(70); - if (lookahead != 0) ADVANCE(203); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 203: + case 201: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '`') ADVANCE(70); - if (lookahead != 0) ADVANCE(203); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 204: + case 202: ACCEPT_TOKEN(sym_bytes_literal); END_STATE(); - case 205: + case 203: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == '`') ADVANCE(199); + if (lookahead == '`') ADVANCE(197); if (lookahead != 0 && - lookahead != '\n') ADVANCE(206); + lookahead != '\n') ADVANCE(204); END_STATE(); - case 206: + case 204: ACCEPT_TOKEN(aux_sym_line_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(206); + lookahead != '\n') ADVANCE(204); END_STATE(); - case 207: + case 205: ACCEPT_TOKEN(anon_sym_LT_STAR); END_STATE(); - case 208: + case 206: ACCEPT_TOKEN(anon_sym_LT_STAR); - if (lookahead == '`') ADVANCE(70); - if (lookahead != 0) ADVANCE(203); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 209: + case 207: ACCEPT_TOKEN(anon_sym_STAR_GT); END_STATE(); - case 210: + case 208: ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); - case 211: + case 209: ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '`') ADVANCE(70); - if (lookahead != 0) ADVANCE(203); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 212: + case 210: ACCEPT_TOKEN(anon_sym_STAR_SLASH); END_STATE(); - case 213: + case 211: + ACCEPT_TOKEN(sym_ident); + if (lookahead == '"') ADVANCE(143); + if (lookahead == '\'') ADVANCE(144); + if (lookahead == '`') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(215); + END_STATE(); + case 212: ACCEPT_TOKEN(sym_ident); - if (lookahead == '"') ADVANCE(145); + if (lookahead == '"') ADVANCE(142); if (lookahead == '\'') ADVANCE(146); if (lookahead == '`') ADVANCE(147); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(215); + END_STATE(); + case 213: + ACCEPT_TOKEN(sym_ident); + if (lookahead == '4') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 214: ACCEPT_TOKEN(sym_ident); - if (lookahead == '"') ADVANCE(144); - if (lookahead == '\'') ADVANCE(148); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '6') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(217); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 215: ACCEPT_TOKEN(sym_ident); - if (lookahead == '4') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 216: - ACCEPT_TOKEN(sym_ident); - if (lookahead == '6') ADVANCE(215); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == '_') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 217: - ACCEPT_TOKEN(sym_ident); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == 'a') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 218: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == '_') ADVANCE(251); + if (lookahead == 'a') ADVANCE(225); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 219: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(337); + if (lookahead == 'a') ADVANCE(327); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 220: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(227); + if (lookahead == 'a') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 221: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(329); + if (lookahead == 'a') ADVANCE(403); + if (lookahead == 'i') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 222: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(398); + if (lookahead == 'a') ADVANCE(226); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 223: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(405); - if (lookahead == 'i') ADVANCE(347); + if (lookahead == 'a') ADVANCE(383); + if (lookahead == 'o') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 224: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(228); + if (lookahead == 'a') ADVANCE(236); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 225: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(385); - if (lookahead == 'o') ADVANCE(340); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(350); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'r') ADVANCE(276); + if (lookahead == 's') ADVANCE(364); + if (lookahead == 't') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 226: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(238); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(350); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'r') ADVANCE(276); + if (lookahead == 't') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 227: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(375); - if (lookahead == 'c') ADVANCE(352); - if (lookahead == 'e') ADVANCE(410); - if (lookahead == 'r') ADVANCE(278); - if (lookahead == 's') ADVANCE(366); - if (lookahead == 't') ADVANCE(413); + if (lookahead == 'a') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 228: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(375); - if (lookahead == 'c') ADVANCE(352); - if (lookahead == 'e') ADVANCE(410); - if (lookahead == 'r') ADVANCE(278); - if (lookahead == 't') ADVANCE(413); + if (lookahead == 'a') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 229: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(392); + if (lookahead == 'a') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 230: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(249); + if (lookahead == 'a') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 231: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(253); + if (lookahead == 'a') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 232: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'a') ADVANCE(336); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 233: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(402); + if (lookahead == 'a') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 234: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(338); + if (lookahead == 'a') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 235: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(334); + if (lookahead == 'b') ADVANCE(271); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 236: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(339); + if (lookahead == 'b') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 237: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'b') ADVANCE(273); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'l') ADVANCE(384); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(253); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 238: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'b') ADVANCE(333); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'l') ADVANCE(384); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 239: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'l') ADVANCE(386); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(255); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(274); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(257); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 240: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'l') ADVANCE(386); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(260); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 241: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(259); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(260); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 242: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(260); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(261); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 243: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(262); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 244: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'n') ADVANCE(263); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 245: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'r') ADVANCE(376); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'c') ADVANCE(311); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 246: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(479); + if (lookahead == 'c') ADVANCE(328); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 247: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(313); + if (lookahead == 'c') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 248: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(330); + if (lookahead == 'c') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 249: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(314); + if (lookahead == 'c') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 250: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(315); + if (lookahead == 'c') ADVANCE(227); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 251: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(359); + if (lookahead == 'c') ADVANCE(314); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 252: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(229); + if (lookahead == 'd') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 253: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(316); + if (lookahead == 'd') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 254: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(519); + if (lookahead == 'd') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 255: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(303); + if (lookahead == 'd') ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 256: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(518); + if (lookahead == 'd') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 257: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(515); + if (lookahead == 'd') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 258: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(517); + if (lookahead == 'd') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 259: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(384); + if (lookahead == 'd') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 260: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(321); + if (lookahead == 'd') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 261: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(270); + if (lookahead == 'd') ADVANCE(302); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 262: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(304); + if (lookahead == 'e') ADVANCE(288); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 263: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(307); + if (lookahead == 'e') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 264: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(290); + if (lookahead == 'e') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 265: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(488); + if (lookahead == 'e') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 266: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(486); + if (lookahead == 'e') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 267: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(302); + if (lookahead == 'e') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 268: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(570); + if (lookahead == 'e') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 269: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(521); + if (lookahead == 'e') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 270: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(477); + if (lookahead == 'e') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 271: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(568); + if (lookahead == 'e') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 272: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(522); + if (lookahead == 'e') ADVANCE(244); + if (lookahead == 't') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 273: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(256); + if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'o') ADVANCE(369); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 274: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(246); - if (lookahead == 't') ADVANCE(350); + if (lookahead == 'e') ADVANCE(220); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 275: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(222); - if (lookahead == 'o') ADVANCE(371); + if (lookahead == 'e') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 276: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(222); + if (lookahead == 'e') ADVANCE(290); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 277: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(343); + if (lookahead == 'e') ADVANCE(376); + if (lookahead == 'i') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 278: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(292); + if (lookahead == 'e') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 279: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(378); - if (lookahead == 'i') ADVANCE(311); + if (lookahead == 'e') ADVANCE(399); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 280: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(355); + if (lookahead == 'e') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 281: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(401); + if (lookahead == 'e') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 282: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(258); + if (lookahead == 'e') ADVANCE(303); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 283: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(356); + if (lookahead == 'e') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 284: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(305); + if (lookahead == 'e') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 285: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(231); + if (lookahead == 'e') ADVANCE(361); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 286: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(361); + if (lookahead == 'f') ADVANCE(480); + if (lookahead == 'n') ADVANCE(246); + if (lookahead == 's') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 287: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(363); + if (lookahead == 'f') ADVANCE(480); + if (lookahead == 's') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 288: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(482); - if (lookahead == 'n') ADVANCE(248); - if (lookahead == 's') ADVANCE(218); + if (lookahead == 'f') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 289: ACCEPT_TOKEN(sym_ct_ident); if (lookahead == 'f') ADVANCE(482); - if (lookahead == 's') ADVANCE(218); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 290: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'f') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 291: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(484); + if (lookahead == 'f') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 292: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(507); + if (lookahead == 'f') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 293: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'f') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 294: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(513); + if (lookahead == 'f') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 295: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(564); + if (lookahead == 'f') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 296: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(500); + if (lookahead == 'f') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 297: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(504); + if (lookahead == 'f') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 298: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(503); + if (lookahead == 'f') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 299: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(501); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'r') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 300: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(411); + if (lookahead == 'f') ADVANCE(377); + if (lookahead == 'o') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 301: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(306); - if (lookahead == 'r') ADVANCE(520); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(289); + if (lookahead == 's') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 302: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(379); - if (lookahead == 'o') ADVANCE(295); + if (lookahead == 'f') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 303: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(358); - if (lookahead == 'i') ADVANCE(291); - if (lookahead == 's') ADVANCE(409); + if (lookahead == 'f') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 304: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(358); + if (lookahead == 'f') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 305: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(322); + if (lookahead == 'f') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 306: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'g') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 307: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(364); + if (lookahead == 'g') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 308: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(506); + if (lookahead == 'g') ADVANCE(322); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 309: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(344); + if (lookahead == 'g') ADVANCE(343); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 310: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(324); + if (lookahead == 'h') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 311: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(345); + if (lookahead == 'h') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 312: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(351); + if (lookahead == 'h') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 313: ACCEPT_TOKEN(sym_ct_ident); @@ -8350,7 +8349,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 314: ACCEPT_TOKEN(sym_ct_ident); @@ -8358,379 +8357,379 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 315: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(493); + if (lookahead == 'i') ADVANCE(413); + if (lookahead == 't') ADVANCE(375); + if (lookahead == 'w') ADVANCE(318); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 316: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(499); + if (lookahead == 'i') ADVANCE(413); + if (lookahead == 't') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 317: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 't') ADVANCE(377); - if (lookahead == 'w') ADVANCE(320); + if (lookahead == 'i') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 318: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 't') ADVANCE(377); + if (lookahead == 'i') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 319: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(309); + if (lookahead == 'i') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 320: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(399); + if (lookahead == 'i') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 321: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(291); + if (lookahead == 'i') ADVANCE(340); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 322: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(347); + if (lookahead == 'i') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 323: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(342); + if (lookahead == 'i') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 324: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(300); + if (lookahead == 'i') ADVANCE(398); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 325: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(311); + if (lookahead == 'l') ADVANCE(317); + if (lookahead == 'n') ADVANCE(252); + if (lookahead == 'p') ADVANCE(363); + if (lookahead == 's') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 326: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(400); + if (lookahead == 'l') ADVANCE(317); + if (lookahead == 'n') ADVANCE(252); + if (lookahead == 'p') ADVANCE(363); + if (lookahead == 's') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 327: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(319); - if (lookahead == 'n') ADVANCE(254); - if (lookahead == 'p') ADVANCE(365); - if (lookahead == 's') ADVANCE(383); + if (lookahead == 'l') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 328: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(319); - if (lookahead == 'n') ADVANCE(254); - if (lookahead == 'p') ADVANCE(365); - if (lookahead == 's') ADVANCE(390); + if (lookahead == 'l') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 329: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(511); + if (lookahead == 'l') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 330: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(406); + if (lookahead == 'l') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 331: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'l') ADVANCE(270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 332: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(232); + if (lookahead == 'l') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 333: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(272); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 334: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(403); + if (lookahead == 'm') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 335: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(237); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(404); + if (lookahead == 'm') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 336: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(566); + if (lookahead == 'm') ADVANCE(284); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 337: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(280); + if (lookahead == 'm') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 338: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(286); + if (lookahead == 'n') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 339: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(287); + if (lookahead == 'n') ADVANCE(385); + if (lookahead == 'u') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 340: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(252); + if (lookahead == 'n') ADVANCE(308); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 341: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(387); - if (lookahead == 'u') ADVANCE(346); + if (lookahead == 'n') ADVANCE(255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 342: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(310); + if (lookahead == 'n') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 343: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(257); + if (lookahead == 'n') ADVANCE(224); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 344: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(360); + if (lookahead == 'n') ADVANCE(393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 345: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == 'n') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 346: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(395); + if (lookahead == 'n') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 347: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(282); + if (lookahead == 'n') ADVANCE(232); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 348: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(389); + if (lookahead == 'n') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 349: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(234); + if (lookahead == 'o') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 350: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'o') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 351: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(481); + if (lookahead == 'o') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 352: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(341); + if (lookahead == 'o') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 353: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(340); + if (lookahead == 'o') ADVANCE(291); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 354: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(336); + if (lookahead == 'o') ADVANCE(292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 355: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(293); + if (lookahead == 'o') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 356: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(294); + if (lookahead == 'o') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 357: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(372); + if (lookahead == 'o') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 358: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(373); + if (lookahead == 'o') ADVANCE(294); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 359: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(348); + if (lookahead == 'o') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 360: ACCEPT_TOKEN(sym_ct_ident); @@ -8738,7 +8737,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 361: ACCEPT_TOKEN(sym_ct_ident); @@ -8746,79 +8745,79 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 362: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(298); + if (lookahead == 'o') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 363: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(299); + if (lookahead == 'p') ADVANCE(275); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 364: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(381); + if (lookahead == 'p') ADVANCE(330); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 365: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(277); + if (lookahead == 'p') ADVANCE(265); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 366: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(332); + if (lookahead == 'p') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 367: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(267); + if (lookahead == 'p') ADVANCE(266); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 368: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(374); + if (lookahead == 'p') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 369: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(268); + if (lookahead == 'r') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 370: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(271); + if (lookahead == 'r') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 371: ACCEPT_TOKEN(sym_ct_ident); @@ -8826,1097 +8825,1081 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 372: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(475); + if (lookahead == 'r') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 373: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(496); + if (lookahead == 'r') ADVANCE(306); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 374: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(508); + if (lookahead == 'r') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 375: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(308); + if (lookahead == 'r') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 376: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(357); + if (lookahead == 'r') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 377: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(323); + if (lookahead == 'r') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 378: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(391); + if (lookahead == 'r') ADVANCE(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 379: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(354); + if (lookahead == 'r') ADVANCE(283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 380: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(269); + if (lookahead == 's') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 381: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(285); + if (lookahead == 's') ADVANCE(277); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 382: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(218); + if (lookahead == 's') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 383: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(279); + if (lookahead == 's') ADVANCE(263); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 384: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(409); + if (lookahead == 's') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 385: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(265); + if (lookahead == 's') ADVANCE(392); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 386: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(266); + if (lookahead == 's') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 387: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(394); + if (lookahead == 's') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 388: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(281); + if (lookahead == 's') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 389: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(397); + if (lookahead == 't') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 390: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(325); + if (lookahead == 't') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 391: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(473); + if (lookahead == 't') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 392: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(516); + if (lookahead == 't') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 393: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(490); + if (lookahead == 't') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 394: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(505); + if (lookahead == 't') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 395: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(509); + if (lookahead == 't') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 396: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(559); + if (lookahead == 't') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 397: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(512); + if (lookahead == 't') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 398: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(407); + if (lookahead == 't') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 399: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(247); + if (lookahead == 't') ADVANCE(360); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 400: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(250); + if (lookahead == 't') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 401: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(362); + if (lookahead == 't') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 402: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(413); + if (lookahead == 't') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 403: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(414); + if (lookahead == 'u') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 404: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(350); + if (lookahead == 'u') ADVANCE(259); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 405: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'u') ADVANCE(331); + if (lookahead == 'u') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 406: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'u') ADVANCE(261); + if (lookahead == 'v') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 407: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'u') ADVANCE(380); + if (lookahead == 'w') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 408: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'v') ADVANCE(235); + if (lookahead == 'x') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 409: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'w') ADVANCE(326); + if (lookahead == 'y') ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 410: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'x') ADVANCE(368); + if (lookahead == 'y') ADVANCE(365); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 411: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(514); + if (lookahead == 'y') ADVANCE(367); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 412: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(367); + if (lookahead == 'y') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 413: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(369); + if (lookahead == 'z') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(414); END_STATE(); case 414: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 415: - ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'z') ADVANCE(283); + ACCEPT_TOKEN(sym_at_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 416: - ACCEPT_TOKEN(sym_ct_ident); + ACCEPT_TOKEN(sym_hash_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); END_STATE(); case 417: - ACCEPT_TOKEN(sym_at_ident); + ACCEPT_TOKEN(sym_type_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); END_STATE(); case 418: - ACCEPT_TOKEN(sym_hash_ident); + ACCEPT_TOKEN(sym_ct_type_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); END_STATE(); case 419: - ACCEPT_TOKEN(sym_type_ident); + ACCEPT_TOKEN(sym_at_type_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); END_STATE(); case 420: - ACCEPT_TOKEN(sym_ct_type_ident); + ACCEPT_TOKEN(sym_const_ident); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(420); + lookahead == '_') ADVANCE(420); END_STATE(); case 421: - ACCEPT_TOKEN(sym_at_type_ident); + ACCEPT_TOKEN(sym_const_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(421); + lookahead == '_') ADVANCE(421); END_STATE(); case 422: - ACCEPT_TOKEN(sym_const_ident); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); + ACCEPT_TOKEN(sym_ct_const_ident); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(422); END_STATE(); case 423: - ACCEPT_TOKEN(sym_const_ident); + ACCEPT_TOKEN(sym_ct_const_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(423); END_STATE(); case 424: - ACCEPT_TOKEN(sym_ct_const_ident); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(420); + ACCEPT_TOKEN(sym_builtin); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_') ADVANCE(424); END_STATE(); case 425: - ACCEPT_TOKEN(sym_ct_const_ident); + ACCEPT_TOKEN(sym_builtin); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(425); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); END_STATE(); case 426: - ACCEPT_TOKEN(sym_builtin); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(426); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 427: - ACCEPT_TOKEN(sym_builtin); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(427); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 428: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(454); END_STATE(); case 429: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(453); END_STATE(); case 430: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(456); + if (lookahead == '.') ADVANCE(42); END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(455); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 432: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(42); + ACCEPT_TOKEN(anon_sym_LPAREN_LT); END_STATE(); case 433: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_GT_RPAREN); END_STATE(); case 434: - ACCEPT_TOKEN(anon_sym_LPAREN_LT); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 435: - ACCEPT_TOKEN(anon_sym_GT_RPAREN); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(546); END_STATE(); case 436: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(455); END_STATE(); case 437: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(548); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(548); - if (lookahead == '>') ADVANCE(457); + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '<') ADVANCE(432); END_STATE(); case 439: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 440: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '<') ADVANCE(434); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 441: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 442: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(457); + if (lookahead == '=') ADVANCE(528); END_STATE(); case 443: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(456); END_STATE(); case 444: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(459); - if (lookahead == '=') ADVANCE(530); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(458); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '<') ADVANCE(569); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(571); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 449: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(559); END_STATE(); case 450: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 451: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(561); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 452: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(426); END_STATE(); case 453: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 454: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(440); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 456: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(442); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '&') ADVANCE(555); END_STATE(); case 458: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 459: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '&') ADVANCE(557); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(538); + if (lookahead == '=') ADVANCE(521); END_STATE(); case 460: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(537); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(540); - if (lookahead == '=') ADVANCE(523); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 462: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(539); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(539); END_STATE(); case 463: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(539); + if (lookahead == '=') ADVANCE(522); END_STATE(); case 464: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(541); - END_STATE(); - case 465: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(541); - if (lookahead == '=') ADVANCE(524); - END_STATE(); - case 466: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 467: + case 465: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(528); + if (lookahead == '=') ADVANCE(526); END_STATE(); - case 468: + case 466: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 469: + case 467: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(529); + if (lookahead == '=') ADVANCE(527); END_STATE(); - case 470: + case 468: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 471: + case 469: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(525); + if (lookahead == '=') ADVANCE(523); END_STATE(); - case 472: + case 470: ACCEPT_TOKEN(anon_sym_DOLLARassert); END_STATE(); - case 473: + case 471: ACCEPT_TOKEN(anon_sym_DOLLARassert); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 474: + case 472: ACCEPT_TOKEN(anon_sym_DOLLARerror); END_STATE(); - case 475: + case 473: ACCEPT_TOKEN(anon_sym_DOLLARerror); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 476: + case 474: ACCEPT_TOKEN(anon_sym_DOLLARinclude); END_STATE(); - case 477: + case 475: ACCEPT_TOKEN(anon_sym_DOLLARinclude); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 478: + case 476: ACCEPT_TOKEN(anon_sym_DOLLARexec); END_STATE(); - case 479: + case 477: ACCEPT_TOKEN(anon_sym_DOLLARexec); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 480: + case 478: ACCEPT_TOKEN(anon_sym_DOLLARecho); END_STATE(); - case 481: + case 479: ACCEPT_TOKEN(anon_sym_DOLLARecho); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 482: + case 480: ACCEPT_TOKEN(anon_sym_DOLLARif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 483: + case 481: ACCEPT_TOKEN(anon_sym_DOLLARendif); END_STATE(); - case 484: + case 482: ACCEPT_TOKEN(anon_sym_DOLLARendif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 485: + case 483: ACCEPT_TOKEN(anon_sym_DOLLARelse); END_STATE(); - case 486: + case 484: ACCEPT_TOKEN(anon_sym_DOLLARelse); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 487: + case 485: ACCEPT_TOKEN(anon_sym_DOLLARcase); END_STATE(); - case 488: + case 486: ACCEPT_TOKEN(anon_sym_DOLLARcase); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 489: + case 487: ACCEPT_TOKEN(anon_sym_DOLLARdefault); END_STATE(); - case 490: + case 488: ACCEPT_TOKEN(anon_sym_DOLLARdefault); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 491: + case 489: ACCEPT_TOKEN(anon_sym_DOLLARswitch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 492: + case 490: ACCEPT_TOKEN(anon_sym_DOLLARendswitch); END_STATE(); - case 493: + case 491: ACCEPT_TOKEN(anon_sym_DOLLARendswitch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 494: + case 492: ACCEPT_TOKEN(anon_sym_DOLLARfor); - if (lookahead == 'e') ADVANCE(230); + if (lookahead == 'e') ADVANCE(228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 495: + case 493: ACCEPT_TOKEN(anon_sym_DOLLARendfor); END_STATE(); - case 496: + case 494: ACCEPT_TOKEN(anon_sym_DOLLARendfor); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 497: + case 495: ACCEPT_TOKEN(anon_sym_DOLLARforeach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 498: + case 496: ACCEPT_TOKEN(anon_sym_DOLLARendforeach); END_STATE(); - case 499: + case 497: ACCEPT_TOKEN(anon_sym_DOLLARendforeach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 500: + case 498: ACCEPT_TOKEN(anon_sym_DOLLARalignof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 501: + case 499: ACCEPT_TOKEN(anon_sym_DOLLARextnameof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 502: + case 500: ACCEPT_TOKEN(anon_sym_DOLLARnameof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 503: + case 501: ACCEPT_TOKEN(anon_sym_DOLLARoffsetof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 504: + case 502: ACCEPT_TOKEN(anon_sym_DOLLARqnameof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 505: + case 503: ACCEPT_TOKEN(anon_sym_DOLLARvaconst); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 506: + case 504: ACCEPT_TOKEN(anon_sym_DOLLARvaarg); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 507: + case 505: ACCEPT_TOKEN(anon_sym_DOLLARvaref); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 508: + case 506: ACCEPT_TOKEN(anon_sym_DOLLARvaexpr); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 509: + case 507: ACCEPT_TOKEN(anon_sym_DOLLARvacount); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 510: + case 508: ACCEPT_TOKEN(anon_sym_DOLLAReval); END_STATE(); - case 511: + case 509: ACCEPT_TOKEN(anon_sym_DOLLAReval); - if (lookahead == 't') ADVANCE(414); + if (lookahead == 't') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 512: + case 510: ACCEPT_TOKEN(anon_sym_DOLLARis_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 513: + case 511: ACCEPT_TOKEN(anon_sym_DOLLARsizeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 514: + case 512: ACCEPT_TOKEN(anon_sym_DOLLARstringify); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 515: + case 513: ACCEPT_TOKEN(anon_sym_DOLLARappend); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 516: + case 514: ACCEPT_TOKEN(anon_sym_DOLLARconcat); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 517: + case 515: ACCEPT_TOKEN(anon_sym_DOLLARdefined); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 518: + case 516: ACCEPT_TOKEN(anon_sym_DOLLARembed); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 519: + case 517: ACCEPT_TOKEN(anon_sym_DOLLARand); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 520: + case 518: ACCEPT_TOKEN(anon_sym_DOLLARor); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 521: + case 519: ACCEPT_TOKEN(anon_sym_DOLLARfeature); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 522: + case 520: ACCEPT_TOKEN(anon_sym_DOLLARassignable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 523: + case 521: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 524: + case 522: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 525: + case 523: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 526: + case 524: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 527: + case 525: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 528: + case 526: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 529: + case 527: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 530: + case 528: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 531: + case 529: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 532: + case 530: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 533: + case 531: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == ':') ADVANCE(534); - if (lookahead == '?') ADVANCE(535); + if (lookahead == ':') ADVANCE(532); + if (lookahead == '?') ADVANCE(533); END_STATE(); - case 534: + case 532: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 535: + case 533: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 536: + case 534: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 537: + case 535: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '!') ADVANCE(560); - if (lookahead == '=') ADVANCE(549); + if (lookahead == '!') ADVANCE(558); + if (lookahead == '=') ADVANCE(547); END_STATE(); - case 538: + case 536: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 539: + case 537: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 540: + case 538: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '+') ADVANCE(558); + if (lookahead == '+') ADVANCE(556); END_STATE(); - case 541: + case 539: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 542: + case 540: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(210); - if (lookahead == '/') ADVANCE(206); - if (lookahead == '=') ADVANCE(526); + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(204); + if (lookahead == '=') ADVANCE(524); END_STATE(); - case 543: + case 541: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(527); + if (lookahead == '=') ADVANCE(525); END_STATE(); - case 544: + case 542: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(532); - if (lookahead == '|') ADVANCE(555); + if (lookahead == '=') ADVANCE(530); + if (lookahead == '|') ADVANCE(553); END_STATE(); - case 545: + case 543: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(532); - if (lookahead == '|') ADVANCE(555); - if (lookahead == '}') ADVANCE(562); + if (lookahead == '=') ADVANCE(530); + if (lookahead == '|') ADVANCE(553); + if (lookahead == '}') ADVANCE(560); END_STATE(); - case 546: + case 544: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 547: + case 545: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(531); + if (lookahead == '=') ADVANCE(529); END_STATE(); - case 548: + case 546: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 549: + case 547: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 550: + case 548: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == ')') ADVANCE(435); - if (lookahead == '=') ADVANCE(552); - if (lookahead == '>') ADVANCE(469); - if (lookahead == ']') ADVANCE(572); + if (lookahead == ')') ADVANCE(433); + if (lookahead == '=') ADVANCE(550); + if (lookahead == '>') ADVANCE(467); + if (lookahead == ']') ADVANCE(570); END_STATE(); - case 551: + case 549: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(552); - if (lookahead == '>') ADVANCE(469); + if (lookahead == '=') ADVANCE(550); + if (lookahead == '>') ADVANCE(467); END_STATE(); - case 552: + case 550: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 553: + case 551: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 554: + case 552: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '*') ADVANCE(207); - if (lookahead == '<') ADVANCE(467); - if (lookahead == '=') ADVANCE(553); + if (lookahead == '*') ADVANCE(205); + if (lookahead == '<') ADVANCE(465); + if (lookahead == '=') ADVANCE(551); END_STATE(); - case 555: + case 553: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '|') ADVANCE(556); + if (lookahead == '|') ADVANCE(554); END_STATE(); - case 556: + case 554: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); END_STATE(); - case 557: + case 555: ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); END_STATE(); - case 558: + case 556: ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); END_STATE(); - case 559: + case 557: ACCEPT_TOKEN(anon_sym_DOLLARvasplat); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 560: + case 558: ACCEPT_TOKEN(anon_sym_BANG_BANG); END_STATE(); - case 561: + case 559: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 562: + case 560: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); - case 563: + case 561: ACCEPT_TOKEN(anon_sym_DOLLARtypeof); END_STATE(); - case 564: + case 562: ACCEPT_TOKEN(anon_sym_DOLLARtypeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 565: + case 563: ACCEPT_TOKEN(anon_sym_DOLLARtypefrom); END_STATE(); - case 566: + case 564: ACCEPT_TOKEN(anon_sym_DOLLARtypefrom); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 567: + case 565: ACCEPT_TOKEN(anon_sym_DOLLARevaltype); END_STATE(); - case 568: + case 566: ACCEPT_TOKEN(anon_sym_DOLLARevaltype); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 569: + case 567: ACCEPT_TOKEN(anon_sym_DOLLARvatype); END_STATE(); - case 570: + case 568: ACCEPT_TOKEN(anon_sym_DOLLARvatype); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 571: + case 569: ACCEPT_TOKEN(anon_sym_LBRACK_LT); END_STATE(); - case 572: + case 570: ACCEPT_TOKEN(anon_sym_GT_RBRACK); END_STATE(); default: @@ -10739,7 +10722,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 176}, + [1] = {.lex_state = 174}, [2] = {.lex_state = 3, .external_lex_state = 2}, [3] = {.lex_state = 3, .external_lex_state = 2}, [4] = {.lex_state = 3, .external_lex_state = 2}, @@ -10766,36 +10749,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [25] = {.lex_state = 4, .external_lex_state = 2}, [26] = {.lex_state = 5, .external_lex_state = 2}, [27] = {.lex_state = 5, .external_lex_state = 2}, - [28] = {.lex_state = 4, .external_lex_state = 2}, + [28] = {.lex_state = 5, .external_lex_state = 2}, [29] = {.lex_state = 5, .external_lex_state = 2}, - [30] = {.lex_state = 5, .external_lex_state = 2}, + [30] = {.lex_state = 4, .external_lex_state = 2}, [31] = {.lex_state = 5, .external_lex_state = 2}, [32] = {.lex_state = 17, .external_lex_state = 2}, [33] = {.lex_state = 20, .external_lex_state = 2}, [34] = {.lex_state = 20, .external_lex_state = 2}, [35] = {.lex_state = 22, .external_lex_state = 2}, - [36] = {.lex_state = 17, .external_lex_state = 2}, + [36] = {.lex_state = 22, .external_lex_state = 2}, [37] = {.lex_state = 20, .external_lex_state = 2}, [38] = {.lex_state = 20, .external_lex_state = 2}, - [39] = {.lex_state = 22, .external_lex_state = 2}, - [40] = {.lex_state = 17, .external_lex_state = 2}, - [41] = {.lex_state = 22, .external_lex_state = 2}, + [39] = {.lex_state = 17, .external_lex_state = 2}, + [40] = {.lex_state = 22, .external_lex_state = 2}, + [41] = {.lex_state = 17, .external_lex_state = 2}, [42] = {.lex_state = 20, .external_lex_state = 2}, [43] = {.lex_state = 20, .external_lex_state = 2}, - [44] = {.lex_state = 17, .external_lex_state = 2}, - [45] = {.lex_state = 22, .external_lex_state = 2}, + [44] = {.lex_state = 20, .external_lex_state = 2}, + [45] = {.lex_state = 17, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 20, .external_lex_state = 2}, [48] = {.lex_state = 20, .external_lex_state = 2}, - [49] = {.lex_state = 17, .external_lex_state = 2}, - [50] = {.lex_state = 22, .external_lex_state = 2}, + [49] = {.lex_state = 22, .external_lex_state = 2}, + [50] = {.lex_state = 17, .external_lex_state = 2}, [51] = {.lex_state = 20, .external_lex_state = 2}, [52] = {.lex_state = 20, .external_lex_state = 2}, - [53] = {.lex_state = 17, .external_lex_state = 2}, + [53] = {.lex_state = 5, .external_lex_state = 2}, [54] = {.lex_state = 22, .external_lex_state = 2}, - [55] = {.lex_state = 5, .external_lex_state = 2}, + [55] = {.lex_state = 17, .external_lex_state = 2}, [56] = {.lex_state = 20, .external_lex_state = 2}, - [57] = {.lex_state = 20, .external_lex_state = 2}, + [57] = {.lex_state = 22, .external_lex_state = 2}, [58] = {.lex_state = 3, .external_lex_state = 2}, [59] = {.lex_state = 3, .external_lex_state = 2}, [60] = {.lex_state = 3, .external_lex_state = 2}, @@ -10808,32 +10791,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [67] = {.lex_state = 3, .external_lex_state = 2}, [68] = {.lex_state = 3, .external_lex_state = 2}, [69] = {.lex_state = 3, .external_lex_state = 2}, - [70] = {.lex_state = 3, .external_lex_state = 2}, + [70] = {.lex_state = 20, .external_lex_state = 2}, [71] = {.lex_state = 3, .external_lex_state = 2}, [72] = {.lex_state = 3, .external_lex_state = 2}, - [73] = {.lex_state = 20, .external_lex_state = 2}, + [73] = {.lex_state = 3, .external_lex_state = 2}, [74] = {.lex_state = 3, .external_lex_state = 2}, [75] = {.lex_state = 3, .external_lex_state = 2}, [76] = {.lex_state = 3, .external_lex_state = 2}, - [77] = {.lex_state = 22, .external_lex_state = 2}, - [78] = {.lex_state = 3, .external_lex_state = 2}, - [79] = {.lex_state = 17, .external_lex_state = 2}, - [80] = {.lex_state = 20, .external_lex_state = 2}, - [81] = {.lex_state = 3, .external_lex_state = 2}, - [82] = {.lex_state = 17, .external_lex_state = 2}, + [77] = {.lex_state = 3, .external_lex_state = 2}, + [78] = {.lex_state = 22, .external_lex_state = 2}, + [79] = {.lex_state = 3, .external_lex_state = 2}, + [80] = {.lex_state = 3, .external_lex_state = 2}, + [81] = {.lex_state = 22, .external_lex_state = 2}, + [82] = {.lex_state = 3, .external_lex_state = 2}, [83] = {.lex_state = 3, .external_lex_state = 2}, [84] = {.lex_state = 3, .external_lex_state = 2}, - [85] = {.lex_state = 3, .external_lex_state = 2}, + [85] = {.lex_state = 17, .external_lex_state = 2}, [86] = {.lex_state = 3, .external_lex_state = 2}, [87] = {.lex_state = 3, .external_lex_state = 2}, [88] = {.lex_state = 3, .external_lex_state = 2}, [89] = {.lex_state = 3, .external_lex_state = 2}, - [90] = {.lex_state = 22, .external_lex_state = 2}, + [90] = {.lex_state = 3, .external_lex_state = 2}, [91] = {.lex_state = 3, .external_lex_state = 2}, [92] = {.lex_state = 3, .external_lex_state = 2}, - [93] = {.lex_state = 3, .external_lex_state = 2}, + [93] = {.lex_state = 17, .external_lex_state = 2}, [94] = {.lex_state = 3, .external_lex_state = 2}, - [95] = {.lex_state = 3, .external_lex_state = 2}, + [95] = {.lex_state = 20, .external_lex_state = 2}, [96] = {.lex_state = 3, .external_lex_state = 2}, [97] = {.lex_state = 3, .external_lex_state = 2}, [98] = {.lex_state = 3, .external_lex_state = 2}, @@ -10882,15 +10865,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [141] = {.lex_state = 7, .external_lex_state = 2}, [142] = {.lex_state = 7, .external_lex_state = 2}, [143] = {.lex_state = 8, .external_lex_state = 2}, - [144] = {.lex_state = 18, .external_lex_state = 2}, - [145] = {.lex_state = 8, .external_lex_state = 2}, + [144] = {.lex_state = 8, .external_lex_state = 2}, + [145] = {.lex_state = 18, .external_lex_state = 2}, [146] = {.lex_state = 19, .external_lex_state = 2}, - [147] = {.lex_state = 18, .external_lex_state = 2}, - [148] = {.lex_state = 21, .external_lex_state = 2}, + [147] = {.lex_state = 21, .external_lex_state = 2}, + [148] = {.lex_state = 18, .external_lex_state = 2}, [149] = {.lex_state = 23, .external_lex_state = 2}, - [150] = {.lex_state = 21, .external_lex_state = 2}, - [151] = {.lex_state = 19, .external_lex_state = 2}, - [152] = {.lex_state = 23, .external_lex_state = 2}, + [150] = {.lex_state = 19, .external_lex_state = 2}, + [151] = {.lex_state = 23, .external_lex_state = 2}, + [152] = {.lex_state = 21, .external_lex_state = 2}, [153] = {.lex_state = 9, .external_lex_state = 2}, [154] = {.lex_state = 9, .external_lex_state = 2}, [155] = {.lex_state = 9, .external_lex_state = 2}, @@ -10899,7 +10882,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [158] = {.lex_state = 9, .external_lex_state = 2}, [159] = {.lex_state = 9, .external_lex_state = 2}, [160] = {.lex_state = 9, .external_lex_state = 2}, - [161] = {.lex_state = 9, .external_lex_state = 2}, + [161] = {.lex_state = 10, .external_lex_state = 2}, [162] = {.lex_state = 9, .external_lex_state = 2}, [163] = {.lex_state = 9, .external_lex_state = 2}, [164] = {.lex_state = 9, .external_lex_state = 2}, @@ -10909,7 +10892,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [168] = {.lex_state = 10, .external_lex_state = 2}, [169] = {.lex_state = 9, .external_lex_state = 2}, [170] = {.lex_state = 9, .external_lex_state = 2}, - [171] = {.lex_state = 10, .external_lex_state = 2}, + [171] = {.lex_state = 9, .external_lex_state = 2}, [172] = {.lex_state = 9, .external_lex_state = 2}, [173] = {.lex_state = 9, .external_lex_state = 2}, [174] = {.lex_state = 9, .external_lex_state = 2}, @@ -10917,9 +10900,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [176] = {.lex_state = 9, .external_lex_state = 2}, [177] = {.lex_state = 9, .external_lex_state = 2}, [178] = {.lex_state = 9, .external_lex_state = 2}, - [179] = {.lex_state = 9, .external_lex_state = 2}, + [179] = {.lex_state = 6, .external_lex_state = 2}, [180] = {.lex_state = 9, .external_lex_state = 2}, - [181] = {.lex_state = 6, .external_lex_state = 2}, + [181] = {.lex_state = 9, .external_lex_state = 2}, [182] = {.lex_state = 9, .external_lex_state = 2}, [183] = {.lex_state = 9, .external_lex_state = 2}, [184] = {.lex_state = 9, .external_lex_state = 2}, @@ -11076,15 +11059,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [335] = {.lex_state = 9, .external_lex_state = 2}, [336] = {.lex_state = 9, .external_lex_state = 2}, [337] = {.lex_state = 9, .external_lex_state = 2}, - [338] = {.lex_state = 9, .external_lex_state = 2}, - [339] = {.lex_state = 9, .external_lex_state = 2}, - [340] = {.lex_state = 9, .external_lex_state = 2}, - [341] = {.lex_state = 3, .external_lex_state = 2}, + [338] = {.lex_state = 3, .external_lex_state = 2}, + [339] = {.lex_state = 3, .external_lex_state = 2}, + [340] = {.lex_state = 3, .external_lex_state = 2}, + [341] = {.lex_state = 4, .external_lex_state = 2}, [342] = {.lex_state = 3, .external_lex_state = 2}, [343] = {.lex_state = 3, .external_lex_state = 2}, [344] = {.lex_state = 4, .external_lex_state = 2}, [345] = {.lex_state = 3, .external_lex_state = 2}, - [346] = {.lex_state = 3, .external_lex_state = 2}, + [346] = {.lex_state = 4, .external_lex_state = 2}, [347] = {.lex_state = 3, .external_lex_state = 2}, [348] = {.lex_state = 3, .external_lex_state = 2}, [349] = {.lex_state = 3, .external_lex_state = 2}, @@ -11117,7 +11100,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [376] = {.lex_state = 3, .external_lex_state = 2}, [377] = {.lex_state = 3, .external_lex_state = 2}, [378] = {.lex_state = 3, .external_lex_state = 2}, - [379] = {.lex_state = 5, .external_lex_state = 2}, + [379] = {.lex_state = 3, .external_lex_state = 2}, [380] = {.lex_state = 3, .external_lex_state = 2}, [381] = {.lex_state = 3, .external_lex_state = 2}, [382] = {.lex_state = 3, .external_lex_state = 2}, @@ -11130,9 +11113,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [389] = {.lex_state = 3, .external_lex_state = 2}, [390] = {.lex_state = 3, .external_lex_state = 2}, [391] = {.lex_state = 3, .external_lex_state = 2}, - [392] = {.lex_state = 4, .external_lex_state = 2}, + [392] = {.lex_state = 3, .external_lex_state = 2}, [393] = {.lex_state = 3, .external_lex_state = 2}, - [394] = {.lex_state = 4, .external_lex_state = 2}, + [394] = {.lex_state = 3, .external_lex_state = 2}, [395] = {.lex_state = 3, .external_lex_state = 2}, [396] = {.lex_state = 3, .external_lex_state = 2}, [397] = {.lex_state = 3, .external_lex_state = 2}, @@ -11154,22 +11137,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [413] = {.lex_state = 3, .external_lex_state = 2}, [414] = {.lex_state = 3, .external_lex_state = 2}, [415] = {.lex_state = 3, .external_lex_state = 2}, - [416] = {.lex_state = 3, .external_lex_state = 2}, + [416] = {.lex_state = 5, .external_lex_state = 2}, [417] = {.lex_state = 3, .external_lex_state = 2}, - [418] = {.lex_state = 3, .external_lex_state = 2}, - [419] = {.lex_state = 3, .external_lex_state = 2}, - [420] = {.lex_state = 3, .external_lex_state = 2}, + [418] = {.lex_state = 4, .external_lex_state = 2}, + [419] = {.lex_state = 4, .external_lex_state = 2}, + [420] = {.lex_state = 4, .external_lex_state = 2}, [421] = {.lex_state = 4, .external_lex_state = 2}, [422] = {.lex_state = 5, .external_lex_state = 2}, - [423] = {.lex_state = 5, .external_lex_state = 2}, - [424] = {.lex_state = 17, .external_lex_state = 2}, - [425] = {.lex_state = 22, .external_lex_state = 2}, - [426] = {.lex_state = 20, .external_lex_state = 2}, + [423] = {.lex_state = 4, .external_lex_state = 2}, + [424] = {.lex_state = 4, .external_lex_state = 2}, + [425] = {.lex_state = 4, .external_lex_state = 2}, + [426] = {.lex_state = 4, .external_lex_state = 2}, [427] = {.lex_state = 4, .external_lex_state = 2}, [428] = {.lex_state = 4, .external_lex_state = 2}, [429] = {.lex_state = 4, .external_lex_state = 2}, [430] = {.lex_state = 4, .external_lex_state = 2}, - [431] = {.lex_state = 4, .external_lex_state = 2}, + [431] = {.lex_state = 22, .external_lex_state = 2}, [432] = {.lex_state = 4, .external_lex_state = 2}, [433] = {.lex_state = 4, .external_lex_state = 2}, [434] = {.lex_state = 4, .external_lex_state = 2}, @@ -11186,7 +11169,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 4, .external_lex_state = 2}, [446] = {.lex_state = 4, .external_lex_state = 2}, [447] = {.lex_state = 4, .external_lex_state = 2}, - [448] = {.lex_state = 4, .external_lex_state = 2}, + [448] = {.lex_state = 17, .external_lex_state = 2}, [449] = {.lex_state = 4, .external_lex_state = 2}, [450] = {.lex_state = 4, .external_lex_state = 2}, [451] = {.lex_state = 4, .external_lex_state = 2}, @@ -11200,7 +11183,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [459] = {.lex_state = 4, .external_lex_state = 2}, [460] = {.lex_state = 4, .external_lex_state = 2}, [461] = {.lex_state = 4, .external_lex_state = 2}, - [462] = {.lex_state = 4, .external_lex_state = 2}, + [462] = {.lex_state = 20, .external_lex_state = 2}, [463] = {.lex_state = 4, .external_lex_state = 2}, [464] = {.lex_state = 4, .external_lex_state = 2}, [465] = {.lex_state = 4, .external_lex_state = 2}, @@ -11228,28 +11211,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [487] = {.lex_state = 4, .external_lex_state = 2}, [488] = {.lex_state = 4, .external_lex_state = 2}, [489] = {.lex_state = 4, .external_lex_state = 2}, - [490] = {.lex_state = 4, .external_lex_state = 2}, + [490] = {.lex_state = 5, .external_lex_state = 2}, [491] = {.lex_state = 4, .external_lex_state = 2}, [492] = {.lex_state = 4, .external_lex_state = 2}, [493] = {.lex_state = 4, .external_lex_state = 2}, [494] = {.lex_state = 4, .external_lex_state = 2}, [495] = {.lex_state = 4, .external_lex_state = 2}, - [496] = {.lex_state = 4, .external_lex_state = 2}, - [497] = {.lex_state = 4, .external_lex_state = 2}, - [498] = {.lex_state = 4, .external_lex_state = 2}, + [496] = {.lex_state = 5, .external_lex_state = 2}, + [497] = {.lex_state = 17, .external_lex_state = 2}, + [498] = {.lex_state = 5, .external_lex_state = 2}, [499] = {.lex_state = 5, .external_lex_state = 2}, [500] = {.lex_state = 5, .external_lex_state = 2}, - [501] = {.lex_state = 20, .external_lex_state = 2}, + [501] = {.lex_state = 5, .external_lex_state = 2}, [502] = {.lex_state = 5, .external_lex_state = 2}, [503] = {.lex_state = 5, .external_lex_state = 2}, [504] = {.lex_state = 5, .external_lex_state = 2}, [505] = {.lex_state = 5, .external_lex_state = 2}, - [506] = {.lex_state = 5, .external_lex_state = 2}, + [506] = {.lex_state = 20, .external_lex_state = 2}, [507] = {.lex_state = 5, .external_lex_state = 2}, [508] = {.lex_state = 5, .external_lex_state = 2}, [509] = {.lex_state = 5, .external_lex_state = 2}, [510] = {.lex_state = 5, .external_lex_state = 2}, - [511] = {.lex_state = 5, .external_lex_state = 2}, + [511] = {.lex_state = 22, .external_lex_state = 2}, [512] = {.lex_state = 5, .external_lex_state = 2}, [513] = {.lex_state = 5, .external_lex_state = 2}, [514] = {.lex_state = 5, .external_lex_state = 2}, @@ -11268,7 +11251,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [527] = {.lex_state = 5, .external_lex_state = 2}, [528] = {.lex_state = 5, .external_lex_state = 2}, [529] = {.lex_state = 5, .external_lex_state = 2}, - [530] = {.lex_state = 5, .external_lex_state = 2}, + [530] = {.lex_state = 22, .external_lex_state = 2}, [531] = {.lex_state = 5, .external_lex_state = 2}, [532] = {.lex_state = 5, .external_lex_state = 2}, [533] = {.lex_state = 5, .external_lex_state = 2}, @@ -11278,24 +11261,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [537] = {.lex_state = 5, .external_lex_state = 2}, [538] = {.lex_state = 5, .external_lex_state = 2}, [539] = {.lex_state = 5, .external_lex_state = 2}, - [540] = {.lex_state = 17, .external_lex_state = 2}, + [540] = {.lex_state = 5, .external_lex_state = 2}, [541] = {.lex_state = 5, .external_lex_state = 2}, [542] = {.lex_state = 5, .external_lex_state = 2}, [543] = {.lex_state = 5, .external_lex_state = 2}, [544] = {.lex_state = 5, .external_lex_state = 2}, - [545] = {.lex_state = 17, .external_lex_state = 2}, + [545] = {.lex_state = 5, .external_lex_state = 2}, [546] = {.lex_state = 5, .external_lex_state = 2}, [547] = {.lex_state = 5, .external_lex_state = 2}, [548] = {.lex_state = 5, .external_lex_state = 2}, - [549] = {.lex_state = 22, .external_lex_state = 2}, + [549] = {.lex_state = 17, .external_lex_state = 2}, [550] = {.lex_state = 5, .external_lex_state = 2}, [551] = {.lex_state = 5, .external_lex_state = 2}, [552] = {.lex_state = 5, .external_lex_state = 2}, - [553] = {.lex_state = 22, .external_lex_state = 2}, + [553] = {.lex_state = 5, .external_lex_state = 2}, [554] = {.lex_state = 5, .external_lex_state = 2}, [555] = {.lex_state = 5, .external_lex_state = 2}, [556] = {.lex_state = 5, .external_lex_state = 2}, - [557] = {.lex_state = 20, .external_lex_state = 2}, + [557] = {.lex_state = 5, .external_lex_state = 2}, [558] = {.lex_state = 5, .external_lex_state = 2}, [559] = {.lex_state = 5, .external_lex_state = 2}, [560] = {.lex_state = 5, .external_lex_state = 2}, @@ -11308,179 +11291,179 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [567] = {.lex_state = 5, .external_lex_state = 2}, [568] = {.lex_state = 5, .external_lex_state = 2}, [569] = {.lex_state = 5, .external_lex_state = 2}, - [570] = {.lex_state = 5, .external_lex_state = 2}, + [570] = {.lex_state = 20, .external_lex_state = 2}, [571] = {.lex_state = 5, .external_lex_state = 2}, [572] = {.lex_state = 5, .external_lex_state = 2}, [573] = {.lex_state = 5, .external_lex_state = 2}, [574] = {.lex_state = 5, .external_lex_state = 2}, [575] = {.lex_state = 5, .external_lex_state = 2}, - [576] = {.lex_state = 5, .external_lex_state = 2}, - [577] = {.lex_state = 5, .external_lex_state = 2}, - [578] = {.lex_state = 5, .external_lex_state = 2}, - [579] = {.lex_state = 17, .external_lex_state = 2}, - [580] = {.lex_state = 20, .external_lex_state = 2}, + [576] = {.lex_state = 22, .external_lex_state = 2}, + [577] = {.lex_state = 17, .external_lex_state = 2}, + [578] = {.lex_state = 22, .external_lex_state = 2}, + [579] = {.lex_state = 22, .external_lex_state = 2}, + [580] = {.lex_state = 22, .external_lex_state = 2}, [581] = {.lex_state = 22, .external_lex_state = 2}, [582] = {.lex_state = 22, .external_lex_state = 2}, - [583] = {.lex_state = 17, .external_lex_state = 2}, - [584] = {.lex_state = 17, .external_lex_state = 2}, - [585] = {.lex_state = 17, .external_lex_state = 2}, - [586] = {.lex_state = 17, .external_lex_state = 2}, - [587] = {.lex_state = 17, .external_lex_state = 2}, - [588] = {.lex_state = 17, .external_lex_state = 2}, - [589] = {.lex_state = 17, .external_lex_state = 2}, - [590] = {.lex_state = 17, .external_lex_state = 2}, - [591] = {.lex_state = 17, .external_lex_state = 2}, - [592] = {.lex_state = 17, .external_lex_state = 2}, - [593] = {.lex_state = 17, .external_lex_state = 2}, - [594] = {.lex_state = 17, .external_lex_state = 2}, - [595] = {.lex_state = 17, .external_lex_state = 2}, - [596] = {.lex_state = 17, .external_lex_state = 2}, - [597] = {.lex_state = 17, .external_lex_state = 2}, - [598] = {.lex_state = 17, .external_lex_state = 2}, - [599] = {.lex_state = 17, .external_lex_state = 2}, - [600] = {.lex_state = 17, .external_lex_state = 2}, - [601] = {.lex_state = 17, .external_lex_state = 2}, - [602] = {.lex_state = 17, .external_lex_state = 2}, - [603] = {.lex_state = 17, .external_lex_state = 2}, - [604] = {.lex_state = 17, .external_lex_state = 2}, - [605] = {.lex_state = 17, .external_lex_state = 2}, - [606] = {.lex_state = 17, .external_lex_state = 2}, - [607] = {.lex_state = 17, .external_lex_state = 2}, - [608] = {.lex_state = 17, .external_lex_state = 2}, - [609] = {.lex_state = 17, .external_lex_state = 2}, - [610] = {.lex_state = 17, .external_lex_state = 2}, - [611] = {.lex_state = 17, .external_lex_state = 2}, - [612] = {.lex_state = 17, .external_lex_state = 2}, - [613] = {.lex_state = 17, .external_lex_state = 2}, - [614] = {.lex_state = 17, .external_lex_state = 2}, - [615] = {.lex_state = 17, .external_lex_state = 2}, - [616] = {.lex_state = 17, .external_lex_state = 2}, - [617] = {.lex_state = 17, .external_lex_state = 2}, - [618] = {.lex_state = 17, .external_lex_state = 2}, - [619] = {.lex_state = 17, .external_lex_state = 2}, - [620] = {.lex_state = 17, .external_lex_state = 2}, - [621] = {.lex_state = 17, .external_lex_state = 2}, - [622] = {.lex_state = 17, .external_lex_state = 2}, - [623] = {.lex_state = 17, .external_lex_state = 2}, - [624] = {.lex_state = 17, .external_lex_state = 2}, - [625] = {.lex_state = 17, .external_lex_state = 2}, - [626] = {.lex_state = 17, .external_lex_state = 2}, - [627] = {.lex_state = 17, .external_lex_state = 2}, - [628] = {.lex_state = 17, .external_lex_state = 2}, - [629] = {.lex_state = 17, .external_lex_state = 2}, - [630] = {.lex_state = 17, .external_lex_state = 2}, - [631] = {.lex_state = 17, .external_lex_state = 2}, - [632] = {.lex_state = 17, .external_lex_state = 2}, - [633] = {.lex_state = 17, .external_lex_state = 2}, - [634] = {.lex_state = 17, .external_lex_state = 2}, - [635] = {.lex_state = 17, .external_lex_state = 2}, - [636] = {.lex_state = 17, .external_lex_state = 2}, - [637] = {.lex_state = 17, .external_lex_state = 2}, - [638] = {.lex_state = 17, .external_lex_state = 2}, - [639] = {.lex_state = 17, .external_lex_state = 2}, - [640] = {.lex_state = 17, .external_lex_state = 2}, - [641] = {.lex_state = 17, .external_lex_state = 2}, - [642] = {.lex_state = 17, .external_lex_state = 2}, - [643] = {.lex_state = 17, .external_lex_state = 2}, - [644] = {.lex_state = 17, .external_lex_state = 2}, - [645] = {.lex_state = 17, .external_lex_state = 2}, + [583] = {.lex_state = 22, .external_lex_state = 2}, + [584] = {.lex_state = 22, .external_lex_state = 2}, + [585] = {.lex_state = 22, .external_lex_state = 2}, + [586] = {.lex_state = 22, .external_lex_state = 2}, + [587] = {.lex_state = 22, .external_lex_state = 2}, + [588] = {.lex_state = 22, .external_lex_state = 2}, + [589] = {.lex_state = 22, .external_lex_state = 2}, + [590] = {.lex_state = 22, .external_lex_state = 2}, + [591] = {.lex_state = 22, .external_lex_state = 2}, + [592] = {.lex_state = 22, .external_lex_state = 2}, + [593] = {.lex_state = 22, .external_lex_state = 2}, + [594] = {.lex_state = 22, .external_lex_state = 2}, + [595] = {.lex_state = 22, .external_lex_state = 2}, + [596] = {.lex_state = 22, .external_lex_state = 2}, + [597] = {.lex_state = 22, .external_lex_state = 2}, + [598] = {.lex_state = 22, .external_lex_state = 2}, + [599] = {.lex_state = 22, .external_lex_state = 2}, + [600] = {.lex_state = 22, .external_lex_state = 2}, + [601] = {.lex_state = 22, .external_lex_state = 2}, + [602] = {.lex_state = 22, .external_lex_state = 2}, + [603] = {.lex_state = 22, .external_lex_state = 2}, + [604] = {.lex_state = 22, .external_lex_state = 2}, + [605] = {.lex_state = 22, .external_lex_state = 2}, + [606] = {.lex_state = 22, .external_lex_state = 2}, + [607] = {.lex_state = 22, .external_lex_state = 2}, + [608] = {.lex_state = 22, .external_lex_state = 2}, + [609] = {.lex_state = 22, .external_lex_state = 2}, + [610] = {.lex_state = 22, .external_lex_state = 2}, + [611] = {.lex_state = 22, .external_lex_state = 2}, + [612] = {.lex_state = 22, .external_lex_state = 2}, + [613] = {.lex_state = 22, .external_lex_state = 2}, + [614] = {.lex_state = 22, .external_lex_state = 2}, + [615] = {.lex_state = 22, .external_lex_state = 2}, + [616] = {.lex_state = 22, .external_lex_state = 2}, + [617] = {.lex_state = 22, .external_lex_state = 2}, + [618] = {.lex_state = 22, .external_lex_state = 2}, + [619] = {.lex_state = 22, .external_lex_state = 2}, + [620] = {.lex_state = 22, .external_lex_state = 2}, + [621] = {.lex_state = 22, .external_lex_state = 2}, + [622] = {.lex_state = 22, .external_lex_state = 2}, + [623] = {.lex_state = 22, .external_lex_state = 2}, + [624] = {.lex_state = 22, .external_lex_state = 2}, + [625] = {.lex_state = 22, .external_lex_state = 2}, + [626] = {.lex_state = 22, .external_lex_state = 2}, + [627] = {.lex_state = 22, .external_lex_state = 2}, + [628] = {.lex_state = 22, .external_lex_state = 2}, + [629] = {.lex_state = 22, .external_lex_state = 2}, + [630] = {.lex_state = 22, .external_lex_state = 2}, + [631] = {.lex_state = 22, .external_lex_state = 2}, + [632] = {.lex_state = 22, .external_lex_state = 2}, + [633] = {.lex_state = 22, .external_lex_state = 2}, + [634] = {.lex_state = 22, .external_lex_state = 2}, + [635] = {.lex_state = 22, .external_lex_state = 2}, + [636] = {.lex_state = 22, .external_lex_state = 2}, + [637] = {.lex_state = 22, .external_lex_state = 2}, + [638] = {.lex_state = 22, .external_lex_state = 2}, + [639] = {.lex_state = 22, .external_lex_state = 2}, + [640] = {.lex_state = 22, .external_lex_state = 2}, + [641] = {.lex_state = 22, .external_lex_state = 2}, + [642] = {.lex_state = 22, .external_lex_state = 2}, + [643] = {.lex_state = 22, .external_lex_state = 2}, + [644] = {.lex_state = 22, .external_lex_state = 2}, + [645] = {.lex_state = 22, .external_lex_state = 2}, [646] = {.lex_state = 17, .external_lex_state = 2}, [647] = {.lex_state = 17, .external_lex_state = 2}, - [648] = {.lex_state = 17, .external_lex_state = 2}, - [649] = {.lex_state = 17, .external_lex_state = 2}, - [650] = {.lex_state = 17, .external_lex_state = 2}, + [648] = {.lex_state = 22, .external_lex_state = 2}, + [649] = {.lex_state = 22, .external_lex_state = 2}, + [650] = {.lex_state = 22, .external_lex_state = 2}, [651] = {.lex_state = 22, .external_lex_state = 2}, [652] = {.lex_state = 22, .external_lex_state = 2}, - [653] = {.lex_state = 17, .external_lex_state = 2}, + [653] = {.lex_state = 22, .external_lex_state = 2}, [654] = {.lex_state = 17, .external_lex_state = 2}, [655] = {.lex_state = 17, .external_lex_state = 2}, [656] = {.lex_state = 17, .external_lex_state = 2}, [657] = {.lex_state = 17, .external_lex_state = 2}, [658] = {.lex_state = 17, .external_lex_state = 2}, - [659] = {.lex_state = 22, .external_lex_state = 2}, - [660] = {.lex_state = 22, .external_lex_state = 2}, - [661] = {.lex_state = 22, .external_lex_state = 2}, + [659] = {.lex_state = 17, .external_lex_state = 2}, + [660] = {.lex_state = 17, .external_lex_state = 2}, + [661] = {.lex_state = 17, .external_lex_state = 2}, [662] = {.lex_state = 22, .external_lex_state = 2}, [663] = {.lex_state = 22, .external_lex_state = 2}, [664] = {.lex_state = 22, .external_lex_state = 2}, [665] = {.lex_state = 22, .external_lex_state = 2}, - [666] = {.lex_state = 22, .external_lex_state = 2}, + [666] = {.lex_state = 17, .external_lex_state = 2}, [667] = {.lex_state = 17, .external_lex_state = 2}, [668] = {.lex_state = 17, .external_lex_state = 2}, [669] = {.lex_state = 17, .external_lex_state = 2}, [670] = {.lex_state = 17, .external_lex_state = 2}, - [671] = {.lex_state = 22, .external_lex_state = 2}, - [672] = {.lex_state = 22, .external_lex_state = 2}, - [673] = {.lex_state = 22, .external_lex_state = 2}, - [674] = {.lex_state = 22, .external_lex_state = 2}, - [675] = {.lex_state = 22, .external_lex_state = 2}, - [676] = {.lex_state = 22, .external_lex_state = 2}, - [677] = {.lex_state = 22, .external_lex_state = 2}, - [678] = {.lex_state = 22, .external_lex_state = 2}, - [679] = {.lex_state = 22, .external_lex_state = 2}, - [680] = {.lex_state = 22, .external_lex_state = 2}, - [681] = {.lex_state = 22, .external_lex_state = 2}, - [682] = {.lex_state = 22, .external_lex_state = 2}, - [683] = {.lex_state = 22, .external_lex_state = 2}, - [684] = {.lex_state = 22, .external_lex_state = 2}, - [685] = {.lex_state = 22, .external_lex_state = 2}, - [686] = {.lex_state = 22, .external_lex_state = 2}, - [687] = {.lex_state = 22, .external_lex_state = 2}, + [671] = {.lex_state = 17, .external_lex_state = 2}, + [672] = {.lex_state = 17, .external_lex_state = 2}, + [673] = {.lex_state = 17, .external_lex_state = 2}, + [674] = {.lex_state = 17, .external_lex_state = 2}, + [675] = {.lex_state = 17, .external_lex_state = 2}, + [676] = {.lex_state = 17, .external_lex_state = 2}, + [677] = {.lex_state = 17, .external_lex_state = 2}, + [678] = {.lex_state = 17, .external_lex_state = 2}, + [679] = {.lex_state = 17, .external_lex_state = 2}, + [680] = {.lex_state = 17, .external_lex_state = 2}, + [681] = {.lex_state = 17, .external_lex_state = 2}, + [682] = {.lex_state = 17, .external_lex_state = 2}, + [683] = {.lex_state = 17, .external_lex_state = 2}, + [684] = {.lex_state = 17, .external_lex_state = 2}, + [685] = {.lex_state = 17, .external_lex_state = 2}, + [686] = {.lex_state = 17, .external_lex_state = 2}, + [687] = {.lex_state = 17, .external_lex_state = 2}, [688] = {.lex_state = 22, .external_lex_state = 2}, [689] = {.lex_state = 22, .external_lex_state = 2}, - [690] = {.lex_state = 22, .external_lex_state = 2}, - [691] = {.lex_state = 22, .external_lex_state = 2}, - [692] = {.lex_state = 22, .external_lex_state = 2}, + [690] = {.lex_state = 17, .external_lex_state = 2}, + [691] = {.lex_state = 17, .external_lex_state = 2}, + [692] = {.lex_state = 17, .external_lex_state = 2}, [693] = {.lex_state = 17, .external_lex_state = 2}, [694] = {.lex_state = 17, .external_lex_state = 2}, - [695] = {.lex_state = 22, .external_lex_state = 2}, - [696] = {.lex_state = 22, .external_lex_state = 2}, - [697] = {.lex_state = 22, .external_lex_state = 2}, - [698] = {.lex_state = 22, .external_lex_state = 2}, - [699] = {.lex_state = 22, .external_lex_state = 2}, - [700] = {.lex_state = 22, .external_lex_state = 2}, - [701] = {.lex_state = 22, .external_lex_state = 2}, - [702] = {.lex_state = 22, .external_lex_state = 2}, - [703] = {.lex_state = 22, .external_lex_state = 2}, - [704] = {.lex_state = 22, .external_lex_state = 2}, - [705] = {.lex_state = 22, .external_lex_state = 2}, - [706] = {.lex_state = 22, .external_lex_state = 2}, - [707] = {.lex_state = 22, .external_lex_state = 2}, - [708] = {.lex_state = 22, .external_lex_state = 2}, - [709] = {.lex_state = 22, .external_lex_state = 2}, - [710] = {.lex_state = 22, .external_lex_state = 2}, - [711] = {.lex_state = 22, .external_lex_state = 2}, - [712] = {.lex_state = 22, .external_lex_state = 2}, - [713] = {.lex_state = 22, .external_lex_state = 2}, - [714] = {.lex_state = 22, .external_lex_state = 2}, - [715] = {.lex_state = 22, .external_lex_state = 2}, - [716] = {.lex_state = 22, .external_lex_state = 2}, - [717] = {.lex_state = 22, .external_lex_state = 2}, - [718] = {.lex_state = 22, .external_lex_state = 2}, - [719] = {.lex_state = 22, .external_lex_state = 2}, - [720] = {.lex_state = 22, .external_lex_state = 2}, - [721] = {.lex_state = 22, .external_lex_state = 2}, - [722] = {.lex_state = 22, .external_lex_state = 2}, - [723] = {.lex_state = 20, .external_lex_state = 2}, - [724] = {.lex_state = 20, .external_lex_state = 2}, - [725] = {.lex_state = 22, .external_lex_state = 2}, - [726] = {.lex_state = 22, .external_lex_state = 2}, - [727] = {.lex_state = 22, .external_lex_state = 2}, - [728] = {.lex_state = 22, .external_lex_state = 2}, - [729] = {.lex_state = 22, .external_lex_state = 2}, - [730] = {.lex_state = 22, .external_lex_state = 2}, + [695] = {.lex_state = 17, .external_lex_state = 2}, + [696] = {.lex_state = 17, .external_lex_state = 2}, + [697] = {.lex_state = 17, .external_lex_state = 2}, + [698] = {.lex_state = 17, .external_lex_state = 2}, + [699] = {.lex_state = 17, .external_lex_state = 2}, + [700] = {.lex_state = 17, .external_lex_state = 2}, + [701] = {.lex_state = 17, .external_lex_state = 2}, + [702] = {.lex_state = 17, .external_lex_state = 2}, + [703] = {.lex_state = 17, .external_lex_state = 2}, + [704] = {.lex_state = 17, .external_lex_state = 2}, + [705] = {.lex_state = 17, .external_lex_state = 2}, + [706] = {.lex_state = 17, .external_lex_state = 2}, + [707] = {.lex_state = 17, .external_lex_state = 2}, + [708] = {.lex_state = 17, .external_lex_state = 2}, + [709] = {.lex_state = 17, .external_lex_state = 2}, + [710] = {.lex_state = 17, .external_lex_state = 2}, + [711] = {.lex_state = 17, .external_lex_state = 2}, + [712] = {.lex_state = 17, .external_lex_state = 2}, + [713] = {.lex_state = 17, .external_lex_state = 2}, + [714] = {.lex_state = 17, .external_lex_state = 2}, + [715] = {.lex_state = 17, .external_lex_state = 2}, + [716] = {.lex_state = 17, .external_lex_state = 2}, + [717] = {.lex_state = 17, .external_lex_state = 2}, + [718] = {.lex_state = 17, .external_lex_state = 2}, + [719] = {.lex_state = 20, .external_lex_state = 2}, + [720] = {.lex_state = 20, .external_lex_state = 2}, + [721] = {.lex_state = 17, .external_lex_state = 2}, + [722] = {.lex_state = 17, .external_lex_state = 2}, + [723] = {.lex_state = 17, .external_lex_state = 2}, + [724] = {.lex_state = 17, .external_lex_state = 2}, + [725] = {.lex_state = 17, .external_lex_state = 2}, + [726] = {.lex_state = 17, .external_lex_state = 2}, + [727] = {.lex_state = 20, .external_lex_state = 2}, + [728] = {.lex_state = 20, .external_lex_state = 2}, + [729] = {.lex_state = 20, .external_lex_state = 2}, + [730] = {.lex_state = 20, .external_lex_state = 2}, [731] = {.lex_state = 20, .external_lex_state = 2}, [732] = {.lex_state = 20, .external_lex_state = 2}, [733] = {.lex_state = 20, .external_lex_state = 2}, [734] = {.lex_state = 20, .external_lex_state = 2}, - [735] = {.lex_state = 20, .external_lex_state = 2}, - [736] = {.lex_state = 20, .external_lex_state = 2}, - [737] = {.lex_state = 20, .external_lex_state = 2}, - [738] = {.lex_state = 20, .external_lex_state = 2}, - [739] = {.lex_state = 22, .external_lex_state = 2}, - [740] = {.lex_state = 22, .external_lex_state = 2}, - [741] = {.lex_state = 22, .external_lex_state = 2}, - [742] = {.lex_state = 22, .external_lex_state = 2}, + [735] = {.lex_state = 17, .external_lex_state = 2}, + [736] = {.lex_state = 17, .external_lex_state = 2}, + [737] = {.lex_state = 17, .external_lex_state = 2}, + [738] = {.lex_state = 17, .external_lex_state = 2}, + [739] = {.lex_state = 20, .external_lex_state = 2}, + [740] = {.lex_state = 20, .external_lex_state = 2}, + [741] = {.lex_state = 20, .external_lex_state = 2}, + [742] = {.lex_state = 20, .external_lex_state = 2}, [743] = {.lex_state = 20, .external_lex_state = 2}, [744] = {.lex_state = 20, .external_lex_state = 2}, [745] = {.lex_state = 20, .external_lex_state = 2}, @@ -11499,12 +11482,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [758] = {.lex_state = 20, .external_lex_state = 2}, [759] = {.lex_state = 20, .external_lex_state = 2}, [760] = {.lex_state = 20, .external_lex_state = 2}, - [761] = {.lex_state = 20, .external_lex_state = 2}, - [762] = {.lex_state = 20, .external_lex_state = 2}, + [761] = {.lex_state = 17, .external_lex_state = 2}, + [762] = {.lex_state = 17, .external_lex_state = 2}, [763] = {.lex_state = 20, .external_lex_state = 2}, [764] = {.lex_state = 20, .external_lex_state = 2}, - [765] = {.lex_state = 22, .external_lex_state = 2}, - [766] = {.lex_state = 22, .external_lex_state = 2}, + [765] = {.lex_state = 20, .external_lex_state = 2}, + [766] = {.lex_state = 20, .external_lex_state = 2}, [767] = {.lex_state = 20, .external_lex_state = 2}, [768] = {.lex_state = 20, .external_lex_state = 2}, [769] = {.lex_state = 20, .external_lex_state = 2}, @@ -11542,10 +11525,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [801] = {.lex_state = 20, .external_lex_state = 2}, [802] = {.lex_state = 20, .external_lex_state = 2}, [803] = {.lex_state = 20, .external_lex_state = 2}, - [804] = {.lex_state = 20, .external_lex_state = 2}, - [805] = {.lex_state = 20, .external_lex_state = 2}, - [806] = {.lex_state = 20, .external_lex_state = 2}, - [807] = {.lex_state = 22, .external_lex_state = 2}, + [804] = {.lex_state = 17, .external_lex_state = 2}, + [805] = {.lex_state = 3, .external_lex_state = 2}, + [806] = {.lex_state = 3, .external_lex_state = 2}, + [807] = {.lex_state = 3, .external_lex_state = 2}, [808] = {.lex_state = 3, .external_lex_state = 2}, [809] = {.lex_state = 3, .external_lex_state = 2}, [810] = {.lex_state = 3, .external_lex_state = 2}, @@ -11554,528 +11537,528 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [813] = {.lex_state = 3, .external_lex_state = 2}, [814] = {.lex_state = 3, .external_lex_state = 2}, [815] = {.lex_state = 3, .external_lex_state = 2}, - [816] = {.lex_state = 3, .external_lex_state = 2}, - [817] = {.lex_state = 3, .external_lex_state = 2}, - [818] = {.lex_state = 3, .external_lex_state = 2}, - [819] = {.lex_state = 176}, - [820] = {.lex_state = 176}, - [821] = {.lex_state = 176}, - [822] = {.lex_state = 176}, + [816] = {.lex_state = 174}, + [817] = {.lex_state = 174}, + [818] = {.lex_state = 174}, + [819] = {.lex_state = 174}, + [820] = {.lex_state = 9, .external_lex_state = 2}, + [821] = {.lex_state = 9, .external_lex_state = 2}, + [822] = {.lex_state = 9, .external_lex_state = 2}, [823] = {.lex_state = 9, .external_lex_state = 2}, [824] = {.lex_state = 9, .external_lex_state = 2}, [825] = {.lex_state = 9, .external_lex_state = 2}, [826] = {.lex_state = 9, .external_lex_state = 2}, [827] = {.lex_state = 9, .external_lex_state = 2}, [828] = {.lex_state = 9, .external_lex_state = 2}, - [829] = {.lex_state = 9, .external_lex_state = 2}, - [830] = {.lex_state = 9, .external_lex_state = 2}, - [831] = {.lex_state = 9, .external_lex_state = 2}, - [832] = {.lex_state = 176}, - [833] = {.lex_state = 176}, - [834] = {.lex_state = 176}, - [835] = {.lex_state = 176}, - [836] = {.lex_state = 176}, - [837] = {.lex_state = 176}, - [838] = {.lex_state = 176}, - [839] = {.lex_state = 176}, - [840] = {.lex_state = 176}, - [841] = {.lex_state = 176}, - [842] = {.lex_state = 176}, - [843] = {.lex_state = 176}, - [844] = {.lex_state = 176}, - [845] = {.lex_state = 176}, - [846] = {.lex_state = 176}, - [847] = {.lex_state = 176}, - [848] = {.lex_state = 176}, - [849] = {.lex_state = 176}, - [850] = {.lex_state = 176}, - [851] = {.lex_state = 176}, - [852] = {.lex_state = 176}, - [853] = {.lex_state = 176}, - [854] = {.lex_state = 176}, - [855] = {.lex_state = 176}, - [856] = {.lex_state = 176}, - [857] = {.lex_state = 176}, - [858] = {.lex_state = 176}, - [859] = {.lex_state = 176}, - [860] = {.lex_state = 176}, - [861] = {.lex_state = 176}, - [862] = {.lex_state = 176}, - [863] = {.lex_state = 176}, - [864] = {.lex_state = 176}, - [865] = {.lex_state = 176}, - [866] = {.lex_state = 176}, - [867] = {.lex_state = 176}, - [868] = {.lex_state = 176}, - [869] = {.lex_state = 176}, - [870] = {.lex_state = 176}, - [871] = {.lex_state = 176}, - [872] = {.lex_state = 176}, - [873] = {.lex_state = 176}, - [874] = {.lex_state = 176}, - [875] = {.lex_state = 176}, - [876] = {.lex_state = 176}, - [877] = {.lex_state = 176}, - [878] = {.lex_state = 176}, - [879] = {.lex_state = 176}, - [880] = {.lex_state = 176}, - [881] = {.lex_state = 176}, - [882] = {.lex_state = 176}, - [883] = {.lex_state = 176}, - [884] = {.lex_state = 176}, - [885] = {.lex_state = 176}, - [886] = {.lex_state = 176}, - [887] = {.lex_state = 176}, - [888] = {.lex_state = 176}, - [889] = {.lex_state = 176}, - [890] = {.lex_state = 176}, - [891] = {.lex_state = 176}, - [892] = {.lex_state = 176}, - [893] = {.lex_state = 176}, - [894] = {.lex_state = 176}, - [895] = {.lex_state = 176}, - [896] = {.lex_state = 176}, - [897] = {.lex_state = 176}, - [898] = {.lex_state = 176}, - [899] = {.lex_state = 176}, - [900] = {.lex_state = 176}, - [901] = {.lex_state = 176}, - [902] = {.lex_state = 176}, - [903] = {.lex_state = 176}, - [904] = {.lex_state = 176}, - [905] = {.lex_state = 176}, - [906] = {.lex_state = 176}, - [907] = {.lex_state = 176}, - [908] = {.lex_state = 176}, - [909] = {.lex_state = 176}, - [910] = {.lex_state = 176}, - [911] = {.lex_state = 176}, - [912] = {.lex_state = 176}, - [913] = {.lex_state = 176}, - [914] = {.lex_state = 176}, - [915] = {.lex_state = 176}, - [916] = {.lex_state = 176}, - [917] = {.lex_state = 176}, - [918] = {.lex_state = 176}, - [919] = {.lex_state = 176}, - [920] = {.lex_state = 176}, - [921] = {.lex_state = 176}, - [922] = {.lex_state = 176}, - [923] = {.lex_state = 176}, - [924] = {.lex_state = 176}, - [925] = {.lex_state = 176}, - [926] = {.lex_state = 176}, - [927] = {.lex_state = 176}, - [928] = {.lex_state = 176}, - [929] = {.lex_state = 176}, - [930] = {.lex_state = 176}, - [931] = {.lex_state = 176}, - [932] = {.lex_state = 176}, - [933] = {.lex_state = 176}, - [934] = {.lex_state = 176}, - [935] = {.lex_state = 176}, - [936] = {.lex_state = 176}, - [937] = {.lex_state = 176}, - [938] = {.lex_state = 176}, - [939] = {.lex_state = 176}, - [940] = {.lex_state = 176}, - [941] = {.lex_state = 176}, - [942] = {.lex_state = 176}, - [943] = {.lex_state = 176}, - [944] = {.lex_state = 176}, - [945] = {.lex_state = 176}, - [946] = {.lex_state = 176}, - [947] = {.lex_state = 176}, - [948] = {.lex_state = 176}, - [949] = {.lex_state = 176}, - [950] = {.lex_state = 176}, - [951] = {.lex_state = 176}, - [952] = {.lex_state = 176}, - [953] = {.lex_state = 176}, - [954] = {.lex_state = 176}, - [955] = {.lex_state = 176}, - [956] = {.lex_state = 176}, - [957] = {.lex_state = 176}, - [958] = {.lex_state = 176}, - [959] = {.lex_state = 176}, - [960] = {.lex_state = 176}, - [961] = {.lex_state = 176}, - [962] = {.lex_state = 176}, - [963] = {.lex_state = 176}, - [964] = {.lex_state = 176}, - [965] = {.lex_state = 176}, - [966] = {.lex_state = 176}, - [967] = {.lex_state = 176}, - [968] = {.lex_state = 176}, - [969] = {.lex_state = 176}, - [970] = {.lex_state = 176}, - [971] = {.lex_state = 176}, - [972] = {.lex_state = 176}, - [973] = {.lex_state = 176}, - [974] = {.lex_state = 176}, - [975] = {.lex_state = 176}, - [976] = {.lex_state = 176}, - [977] = {.lex_state = 176}, - [978] = {.lex_state = 176}, - [979] = {.lex_state = 176}, - [980] = {.lex_state = 176}, - [981] = {.lex_state = 176}, - [982] = {.lex_state = 176}, - [983] = {.lex_state = 176}, - [984] = {.lex_state = 176}, - [985] = {.lex_state = 176}, - [986] = {.lex_state = 176}, - [987] = {.lex_state = 176}, - [988] = {.lex_state = 176}, - [989] = {.lex_state = 176}, - [990] = {.lex_state = 176}, - [991] = {.lex_state = 176}, - [992] = {.lex_state = 176}, - [993] = {.lex_state = 176}, - [994] = {.lex_state = 176}, - [995] = {.lex_state = 176}, - [996] = {.lex_state = 176}, - [997] = {.lex_state = 176}, - [998] = {.lex_state = 176}, - [999] = {.lex_state = 176}, - [1000] = {.lex_state = 176}, - [1001] = {.lex_state = 176}, - [1002] = {.lex_state = 176}, - [1003] = {.lex_state = 176}, - [1004] = {.lex_state = 176}, - [1005] = {.lex_state = 176}, - [1006] = {.lex_state = 176}, - [1007] = {.lex_state = 176}, - [1008] = {.lex_state = 176}, - [1009] = {.lex_state = 176}, - [1010] = {.lex_state = 176}, - [1011] = {.lex_state = 176}, - [1012] = {.lex_state = 176}, - [1013] = {.lex_state = 176}, - [1014] = {.lex_state = 176}, - [1015] = {.lex_state = 176}, - [1016] = {.lex_state = 176}, - [1017] = {.lex_state = 176}, - [1018] = {.lex_state = 176}, - [1019] = {.lex_state = 176}, - [1020] = {.lex_state = 176}, - [1021] = {.lex_state = 176}, - [1022] = {.lex_state = 176}, - [1023] = {.lex_state = 176}, - [1024] = {.lex_state = 176}, - [1025] = {.lex_state = 176}, - [1026] = {.lex_state = 176}, - [1027] = {.lex_state = 176}, - [1028] = {.lex_state = 176}, - [1029] = {.lex_state = 176}, - [1030] = {.lex_state = 176}, - [1031] = {.lex_state = 176}, - [1032] = {.lex_state = 176}, - [1033] = {.lex_state = 176}, - [1034] = {.lex_state = 176}, - [1035] = {.lex_state = 176}, - [1036] = {.lex_state = 176}, - [1037] = {.lex_state = 176}, - [1038] = {.lex_state = 176}, - [1039] = {.lex_state = 176}, - [1040] = {.lex_state = 176}, - [1041] = {.lex_state = 176}, - [1042] = {.lex_state = 176}, - [1043] = {.lex_state = 176}, - [1044] = {.lex_state = 176}, - [1045] = {.lex_state = 176}, - [1046] = {.lex_state = 176}, - [1047] = {.lex_state = 176}, - [1048] = {.lex_state = 176}, - [1049] = {.lex_state = 176}, - [1050] = {.lex_state = 176}, - [1051] = {.lex_state = 176}, - [1052] = {.lex_state = 11}, - [1053] = {.lex_state = 176}, - [1054] = {.lex_state = 176}, - [1055] = {.lex_state = 176}, - [1056] = {.lex_state = 176}, - [1057] = {.lex_state = 176}, - [1058] = {.lex_state = 176}, - [1059] = {.lex_state = 176}, - [1060] = {.lex_state = 176}, - [1061] = {.lex_state = 176}, - [1062] = {.lex_state = 176}, - [1063] = {.lex_state = 176}, - [1064] = {.lex_state = 176}, - [1065] = {.lex_state = 176}, - [1066] = {.lex_state = 11}, - [1067] = {.lex_state = 176}, - [1068] = {.lex_state = 176}, - [1069] = {.lex_state = 176}, - [1070] = {.lex_state = 176}, - [1071] = {.lex_state = 176}, - [1072] = {.lex_state = 176}, - [1073] = {.lex_state = 176}, - [1074] = {.lex_state = 176}, - [1075] = {.lex_state = 176}, - [1076] = {.lex_state = 176}, - [1077] = {.lex_state = 176}, - [1078] = {.lex_state = 176}, - [1079] = {.lex_state = 176}, - [1080] = {.lex_state = 176}, - [1081] = {.lex_state = 176}, - [1082] = {.lex_state = 176}, - [1083] = {.lex_state = 176}, - [1084] = {.lex_state = 176}, - [1085] = {.lex_state = 176}, - [1086] = {.lex_state = 176}, - [1087] = {.lex_state = 176}, - [1088] = {.lex_state = 176}, - [1089] = {.lex_state = 176}, - [1090] = {.lex_state = 176}, - [1091] = {.lex_state = 176}, - [1092] = {.lex_state = 176}, - [1093] = {.lex_state = 176}, - [1094] = {.lex_state = 176}, - [1095] = {.lex_state = 176}, - [1096] = {.lex_state = 176}, - [1097] = {.lex_state = 11}, - [1098] = {.lex_state = 176}, - [1099] = {.lex_state = 176}, - [1100] = {.lex_state = 176}, - [1101] = {.lex_state = 176}, - [1102] = {.lex_state = 176}, - [1103] = {.lex_state = 176}, - [1104] = {.lex_state = 176}, - [1105] = {.lex_state = 176}, - [1106] = {.lex_state = 176}, - [1107] = {.lex_state = 176}, - [1108] = {.lex_state = 176}, - [1109] = {.lex_state = 176}, - [1110] = {.lex_state = 176}, - [1111] = {.lex_state = 176}, - [1112] = {.lex_state = 3}, - [1113] = {.lex_state = 176}, - [1114] = {.lex_state = 176}, - [1115] = {.lex_state = 3}, - [1116] = {.lex_state = 176}, - [1117] = {.lex_state = 176}, - [1118] = {.lex_state = 176}, - [1119] = {.lex_state = 176}, - [1120] = {.lex_state = 176}, - [1121] = {.lex_state = 176}, + [829] = {.lex_state = 174}, + [830] = {.lex_state = 174}, + [831] = {.lex_state = 174}, + [832] = {.lex_state = 174}, + [833] = {.lex_state = 174}, + [834] = {.lex_state = 174}, + [835] = {.lex_state = 174}, + [836] = {.lex_state = 174}, + [837] = {.lex_state = 174}, + [838] = {.lex_state = 174}, + [839] = {.lex_state = 174}, + [840] = {.lex_state = 174}, + [841] = {.lex_state = 174}, + [842] = {.lex_state = 174}, + [843] = {.lex_state = 174}, + [844] = {.lex_state = 174}, + [845] = {.lex_state = 174}, + [846] = {.lex_state = 174}, + [847] = {.lex_state = 174}, + [848] = {.lex_state = 174}, + [849] = {.lex_state = 174}, + [850] = {.lex_state = 174}, + [851] = {.lex_state = 174}, + [852] = {.lex_state = 174}, + [853] = {.lex_state = 174}, + [854] = {.lex_state = 174}, + [855] = {.lex_state = 174}, + [856] = {.lex_state = 174}, + [857] = {.lex_state = 174}, + [858] = {.lex_state = 174}, + [859] = {.lex_state = 174}, + [860] = {.lex_state = 174}, + [861] = {.lex_state = 174}, + [862] = {.lex_state = 174}, + [863] = {.lex_state = 174}, + [864] = {.lex_state = 174}, + [865] = {.lex_state = 174}, + [866] = {.lex_state = 174}, + [867] = {.lex_state = 174}, + [868] = {.lex_state = 174}, + [869] = {.lex_state = 174}, + [870] = {.lex_state = 174}, + [871] = {.lex_state = 174}, + [872] = {.lex_state = 174}, + [873] = {.lex_state = 174}, + [874] = {.lex_state = 174}, + [875] = {.lex_state = 174}, + [876] = {.lex_state = 174}, + [877] = {.lex_state = 174}, + [878] = {.lex_state = 174}, + [879] = {.lex_state = 174}, + [880] = {.lex_state = 174}, + [881] = {.lex_state = 174}, + [882] = {.lex_state = 174}, + [883] = {.lex_state = 174}, + [884] = {.lex_state = 174}, + [885] = {.lex_state = 174}, + [886] = {.lex_state = 174}, + [887] = {.lex_state = 174}, + [888] = {.lex_state = 174}, + [889] = {.lex_state = 174}, + [890] = {.lex_state = 174}, + [891] = {.lex_state = 174}, + [892] = {.lex_state = 174}, + [893] = {.lex_state = 174}, + [894] = {.lex_state = 174}, + [895] = {.lex_state = 174}, + [896] = {.lex_state = 174}, + [897] = {.lex_state = 174}, + [898] = {.lex_state = 174}, + [899] = {.lex_state = 174}, + [900] = {.lex_state = 174}, + [901] = {.lex_state = 174}, + [902] = {.lex_state = 174}, + [903] = {.lex_state = 174}, + [904] = {.lex_state = 174}, + [905] = {.lex_state = 174}, + [906] = {.lex_state = 174}, + [907] = {.lex_state = 174}, + [908] = {.lex_state = 174}, + [909] = {.lex_state = 174}, + [910] = {.lex_state = 174}, + [911] = {.lex_state = 174}, + [912] = {.lex_state = 174}, + [913] = {.lex_state = 174}, + [914] = {.lex_state = 174}, + [915] = {.lex_state = 174}, + [916] = {.lex_state = 174}, + [917] = {.lex_state = 174}, + [918] = {.lex_state = 174}, + [919] = {.lex_state = 174}, + [920] = {.lex_state = 174}, + [921] = {.lex_state = 174}, + [922] = {.lex_state = 174}, + [923] = {.lex_state = 174}, + [924] = {.lex_state = 174}, + [925] = {.lex_state = 174}, + [926] = {.lex_state = 174}, + [927] = {.lex_state = 174}, + [928] = {.lex_state = 174}, + [929] = {.lex_state = 174}, + [930] = {.lex_state = 174}, + [931] = {.lex_state = 174}, + [932] = {.lex_state = 174}, + [933] = {.lex_state = 174}, + [934] = {.lex_state = 174}, + [935] = {.lex_state = 174}, + [936] = {.lex_state = 174}, + [937] = {.lex_state = 174}, + [938] = {.lex_state = 174}, + [939] = {.lex_state = 174}, + [940] = {.lex_state = 174}, + [941] = {.lex_state = 174}, + [942] = {.lex_state = 174}, + [943] = {.lex_state = 174}, + [944] = {.lex_state = 174}, + [945] = {.lex_state = 174}, + [946] = {.lex_state = 174}, + [947] = {.lex_state = 174}, + [948] = {.lex_state = 174}, + [949] = {.lex_state = 174}, + [950] = {.lex_state = 174}, + [951] = {.lex_state = 174}, + [952] = {.lex_state = 174}, + [953] = {.lex_state = 174}, + [954] = {.lex_state = 174}, + [955] = {.lex_state = 174}, + [956] = {.lex_state = 174}, + [957] = {.lex_state = 174}, + [958] = {.lex_state = 174}, + [959] = {.lex_state = 174}, + [960] = {.lex_state = 174}, + [961] = {.lex_state = 174}, + [962] = {.lex_state = 174}, + [963] = {.lex_state = 174}, + [964] = {.lex_state = 174}, + [965] = {.lex_state = 174}, + [966] = {.lex_state = 174}, + [967] = {.lex_state = 174}, + [968] = {.lex_state = 174}, + [969] = {.lex_state = 174}, + [970] = {.lex_state = 174}, + [971] = {.lex_state = 174}, + [972] = {.lex_state = 174}, + [973] = {.lex_state = 174}, + [974] = {.lex_state = 174}, + [975] = {.lex_state = 174}, + [976] = {.lex_state = 174}, + [977] = {.lex_state = 174}, + [978] = {.lex_state = 174}, + [979] = {.lex_state = 174}, + [980] = {.lex_state = 174}, + [981] = {.lex_state = 174}, + [982] = {.lex_state = 174}, + [983] = {.lex_state = 174}, + [984] = {.lex_state = 174}, + [985] = {.lex_state = 174}, + [986] = {.lex_state = 174}, + [987] = {.lex_state = 174}, + [988] = {.lex_state = 174}, + [989] = {.lex_state = 174}, + [990] = {.lex_state = 174}, + [991] = {.lex_state = 174}, + [992] = {.lex_state = 174}, + [993] = {.lex_state = 174}, + [994] = {.lex_state = 174}, + [995] = {.lex_state = 174}, + [996] = {.lex_state = 174}, + [997] = {.lex_state = 174}, + [998] = {.lex_state = 174}, + [999] = {.lex_state = 174}, + [1000] = {.lex_state = 174}, + [1001] = {.lex_state = 174}, + [1002] = {.lex_state = 174}, + [1003] = {.lex_state = 174}, + [1004] = {.lex_state = 174}, + [1005] = {.lex_state = 174}, + [1006] = {.lex_state = 174}, + [1007] = {.lex_state = 174}, + [1008] = {.lex_state = 174}, + [1009] = {.lex_state = 174}, + [1010] = {.lex_state = 174}, + [1011] = {.lex_state = 174}, + [1012] = {.lex_state = 174}, + [1013] = {.lex_state = 174}, + [1014] = {.lex_state = 174}, + [1015] = {.lex_state = 174}, + [1016] = {.lex_state = 174}, + [1017] = {.lex_state = 174}, + [1018] = {.lex_state = 174}, + [1019] = {.lex_state = 174}, + [1020] = {.lex_state = 174}, + [1021] = {.lex_state = 174}, + [1022] = {.lex_state = 174}, + [1023] = {.lex_state = 174}, + [1024] = {.lex_state = 174}, + [1025] = {.lex_state = 174}, + [1026] = {.lex_state = 174}, + [1027] = {.lex_state = 174}, + [1028] = {.lex_state = 174}, + [1029] = {.lex_state = 174}, + [1030] = {.lex_state = 174}, + [1031] = {.lex_state = 174}, + [1032] = {.lex_state = 174}, + [1033] = {.lex_state = 174}, + [1034] = {.lex_state = 174}, + [1035] = {.lex_state = 174}, + [1036] = {.lex_state = 174}, + [1037] = {.lex_state = 174}, + [1038] = {.lex_state = 174}, + [1039] = {.lex_state = 174}, + [1040] = {.lex_state = 174}, + [1041] = {.lex_state = 174}, + [1042] = {.lex_state = 174}, + [1043] = {.lex_state = 174}, + [1044] = {.lex_state = 174}, + [1045] = {.lex_state = 174}, + [1046] = {.lex_state = 174}, + [1047] = {.lex_state = 174}, + [1048] = {.lex_state = 174}, + [1049] = {.lex_state = 174}, + [1050] = {.lex_state = 174}, + [1051] = {.lex_state = 174}, + [1052] = {.lex_state = 174}, + [1053] = {.lex_state = 174}, + [1054] = {.lex_state = 11}, + [1055] = {.lex_state = 174}, + [1056] = {.lex_state = 174}, + [1057] = {.lex_state = 174}, + [1058] = {.lex_state = 174}, + [1059] = {.lex_state = 174}, + [1060] = {.lex_state = 174}, + [1061] = {.lex_state = 174}, + [1062] = {.lex_state = 174}, + [1063] = {.lex_state = 11}, + [1064] = {.lex_state = 174}, + [1065] = {.lex_state = 174}, + [1066] = {.lex_state = 174}, + [1067] = {.lex_state = 174}, + [1068] = {.lex_state = 3}, + [1069] = {.lex_state = 174}, + [1070] = {.lex_state = 174}, + [1071] = {.lex_state = 174}, + [1072] = {.lex_state = 174}, + [1073] = {.lex_state = 174}, + [1074] = {.lex_state = 174}, + [1075] = {.lex_state = 174}, + [1076] = {.lex_state = 174}, + [1077] = {.lex_state = 174}, + [1078] = {.lex_state = 174}, + [1079] = {.lex_state = 174}, + [1080] = {.lex_state = 3}, + [1081] = {.lex_state = 174}, + [1082] = {.lex_state = 174}, + [1083] = {.lex_state = 174}, + [1084] = {.lex_state = 174}, + [1085] = {.lex_state = 174}, + [1086] = {.lex_state = 174}, + [1087] = {.lex_state = 174}, + [1088] = {.lex_state = 174}, + [1089] = {.lex_state = 174}, + [1090] = {.lex_state = 174}, + [1091] = {.lex_state = 174}, + [1092] = {.lex_state = 174}, + [1093] = {.lex_state = 174}, + [1094] = {.lex_state = 174}, + [1095] = {.lex_state = 174}, + [1096] = {.lex_state = 174}, + [1097] = {.lex_state = 174}, + [1098] = {.lex_state = 174}, + [1099] = {.lex_state = 174}, + [1100] = {.lex_state = 174}, + [1101] = {.lex_state = 174}, + [1102] = {.lex_state = 174}, + [1103] = {.lex_state = 174}, + [1104] = {.lex_state = 174}, + [1105] = {.lex_state = 174}, + [1106] = {.lex_state = 174}, + [1107] = {.lex_state = 174}, + [1108] = {.lex_state = 174}, + [1109] = {.lex_state = 174}, + [1110] = {.lex_state = 174}, + [1111] = {.lex_state = 174}, + [1112] = {.lex_state = 174}, + [1113] = {.lex_state = 174}, + [1114] = {.lex_state = 174}, + [1115] = {.lex_state = 174}, + [1116] = {.lex_state = 11}, + [1117] = {.lex_state = 174}, + [1118] = {.lex_state = 174}, + [1119] = {.lex_state = 174}, + [1120] = {.lex_state = 174}, + [1121] = {.lex_state = 11}, [1122] = {.lex_state = 11}, [1123] = {.lex_state = 11}, - [1124] = {.lex_state = 176}, + [1124] = {.lex_state = 11}, [1125] = {.lex_state = 11}, [1126] = {.lex_state = 11}, [1127] = {.lex_state = 11}, - [1128] = {.lex_state = 176}, + [1128] = {.lex_state = 11}, [1129] = {.lex_state = 11}, - [1130] = {.lex_state = 11}, + [1130] = {.lex_state = 174}, [1131] = {.lex_state = 11}, [1132] = {.lex_state = 11}, [1133] = {.lex_state = 11}, [1134] = {.lex_state = 11}, [1135] = {.lex_state = 11}, [1136] = {.lex_state = 11}, - [1137] = {.lex_state = 176}, - [1138] = {.lex_state = 176}, - [1139] = {.lex_state = 176}, - [1140] = {.lex_state = 176}, - [1141] = {.lex_state = 11}, - [1142] = {.lex_state = 11}, - [1143] = {.lex_state = 176}, - [1144] = {.lex_state = 11}, - [1145] = {.lex_state = 176}, + [1137] = {.lex_state = 174}, + [1138] = {.lex_state = 174}, + [1139] = {.lex_state = 174}, + [1140] = {.lex_state = 11}, + [1141] = {.lex_state = 174}, + [1142] = {.lex_state = 174}, + [1143] = {.lex_state = 174}, + [1144] = {.lex_state = 174}, + [1145] = {.lex_state = 11}, [1146] = {.lex_state = 11}, [1147] = {.lex_state = 11}, - [1148] = {.lex_state = 176}, + [1148] = {.lex_state = 174}, [1149] = {.lex_state = 11}, - [1150] = {.lex_state = 176}, - [1151] = {.lex_state = 176}, - [1152] = {.lex_state = 176}, - [1153] = {.lex_state = 176}, - [1154] = {.lex_state = 11}, - [1155] = {.lex_state = 176}, - [1156] = {.lex_state = 11}, - [1157] = {.lex_state = 11}, - [1158] = {.lex_state = 176}, - [1159] = {.lex_state = 176}, - [1160] = {.lex_state = 176}, - [1161] = {.lex_state = 176}, - [1162] = {.lex_state = 176}, - [1163] = {.lex_state = 176}, - [1164] = {.lex_state = 176}, - [1165] = {.lex_state = 176}, - [1166] = {.lex_state = 11}, - [1167] = {.lex_state = 176}, - [1168] = {.lex_state = 176}, - [1169] = {.lex_state = 11}, - [1170] = {.lex_state = 176}, - [1171] = {.lex_state = 176}, - [1172] = {.lex_state = 176}, - [1173] = {.lex_state = 176}, - [1174] = {.lex_state = 176}, - [1175] = {.lex_state = 176}, - [1176] = {.lex_state = 176}, - [1177] = {.lex_state = 176}, - [1178] = {.lex_state = 176}, - [1179] = {.lex_state = 176}, - [1180] = {.lex_state = 176}, - [1181] = {.lex_state = 176}, - [1182] = {.lex_state = 176}, - [1183] = {.lex_state = 176}, - [1184] = {.lex_state = 176}, - [1185] = {.lex_state = 176}, - [1186] = {.lex_state = 176}, - [1187] = {.lex_state = 176}, - [1188] = {.lex_state = 176}, - [1189] = {.lex_state = 176}, - [1190] = {.lex_state = 176}, - [1191] = {.lex_state = 176}, - [1192] = {.lex_state = 176}, - [1193] = {.lex_state = 176}, - [1194] = {.lex_state = 176}, - [1195] = {.lex_state = 176}, - [1196] = {.lex_state = 176}, - [1197] = {.lex_state = 176}, - [1198] = {.lex_state = 176}, - [1199] = {.lex_state = 176}, - [1200] = {.lex_state = 176}, - [1201] = {.lex_state = 176}, - [1202] = {.lex_state = 176}, - [1203] = {.lex_state = 176}, - [1204] = {.lex_state = 176}, - [1205] = {.lex_state = 176}, - [1206] = {.lex_state = 176}, - [1207] = {.lex_state = 176}, - [1208] = {.lex_state = 176}, - [1209] = {.lex_state = 176}, - [1210] = {.lex_state = 176}, - [1211] = {.lex_state = 176}, - [1212] = {.lex_state = 176}, - [1213] = {.lex_state = 176}, - [1214] = {.lex_state = 176}, - [1215] = {.lex_state = 176}, - [1216] = {.lex_state = 176}, - [1217] = {.lex_state = 176}, - [1218] = {.lex_state = 176}, - [1219] = {.lex_state = 176}, - [1220] = {.lex_state = 176}, - [1221] = {.lex_state = 176}, - [1222] = {.lex_state = 176}, - [1223] = {.lex_state = 176}, - [1224] = {.lex_state = 176}, - [1225] = {.lex_state = 176}, + [1150] = {.lex_state = 11}, + [1151] = {.lex_state = 174}, + [1152] = {.lex_state = 11}, + [1153] = {.lex_state = 174}, + [1154] = {.lex_state = 174}, + [1155] = {.lex_state = 174}, + [1156] = {.lex_state = 174}, + [1157] = {.lex_state = 174}, + [1158] = {.lex_state = 174}, + [1159] = {.lex_state = 174}, + [1160] = {.lex_state = 11}, + [1161] = {.lex_state = 174}, + [1162] = {.lex_state = 174}, + [1163] = {.lex_state = 11}, + [1164] = {.lex_state = 174}, + [1165] = {.lex_state = 174}, + [1166] = {.lex_state = 174}, + [1167] = {.lex_state = 174}, + [1168] = {.lex_state = 174}, + [1169] = {.lex_state = 174}, + [1170] = {.lex_state = 174}, + [1171] = {.lex_state = 174}, + [1172] = {.lex_state = 174}, + [1173] = {.lex_state = 174}, + [1174] = {.lex_state = 174}, + [1175] = {.lex_state = 174}, + [1176] = {.lex_state = 174}, + [1177] = {.lex_state = 174}, + [1178] = {.lex_state = 174}, + [1179] = {.lex_state = 174}, + [1180] = {.lex_state = 174}, + [1181] = {.lex_state = 174}, + [1182] = {.lex_state = 174}, + [1183] = {.lex_state = 174}, + [1184] = {.lex_state = 174}, + [1185] = {.lex_state = 174}, + [1186] = {.lex_state = 174}, + [1187] = {.lex_state = 174}, + [1188] = {.lex_state = 174}, + [1189] = {.lex_state = 174}, + [1190] = {.lex_state = 174}, + [1191] = {.lex_state = 174}, + [1192] = {.lex_state = 174}, + [1193] = {.lex_state = 174}, + [1194] = {.lex_state = 174}, + [1195] = {.lex_state = 174}, + [1196] = {.lex_state = 174}, + [1197] = {.lex_state = 174}, + [1198] = {.lex_state = 174}, + [1199] = {.lex_state = 174}, + [1200] = {.lex_state = 174}, + [1201] = {.lex_state = 174}, + [1202] = {.lex_state = 174}, + [1203] = {.lex_state = 174}, + [1204] = {.lex_state = 174}, + [1205] = {.lex_state = 174}, + [1206] = {.lex_state = 174}, + [1207] = {.lex_state = 174}, + [1208] = {.lex_state = 174}, + [1209] = {.lex_state = 174}, + [1210] = {.lex_state = 174}, + [1211] = {.lex_state = 174}, + [1212] = {.lex_state = 174}, + [1213] = {.lex_state = 174}, + [1214] = {.lex_state = 174}, + [1215] = {.lex_state = 174}, + [1216] = {.lex_state = 174}, + [1217] = {.lex_state = 174}, + [1218] = {.lex_state = 174}, + [1219] = {.lex_state = 174}, + [1220] = {.lex_state = 174}, + [1221] = {.lex_state = 12}, + [1222] = {.lex_state = 12}, + [1223] = {.lex_state = 12}, + [1224] = {.lex_state = 12}, + [1225] = {.lex_state = 12}, [1226] = {.lex_state = 12}, [1227] = {.lex_state = 12}, [1228] = {.lex_state = 12}, - [1229] = {.lex_state = 12}, + [1229] = {.lex_state = 3}, [1230] = {.lex_state = 12}, [1231] = {.lex_state = 12}, - [1232] = {.lex_state = 3}, + [1232] = {.lex_state = 0}, [1233] = {.lex_state = 12}, - [1234] = {.lex_state = 12}, - [1235] = {.lex_state = 0}, + [1234] = {.lex_state = 174}, + [1235] = {.lex_state = 12}, [1236] = {.lex_state = 12}, [1237] = {.lex_state = 12}, [1238] = {.lex_state = 12}, - [1239] = {.lex_state = 12}, + [1239] = {.lex_state = 0}, [1240] = {.lex_state = 12}, - [1241] = {.lex_state = 12}, - [1242] = {.lex_state = 4}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 12}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 176}, - [1247] = {.lex_state = 176}, - [1248] = {.lex_state = 12}, + [1241] = {.lex_state = 0}, + [1242] = {.lex_state = 12}, + [1243] = {.lex_state = 174}, + [1244] = {.lex_state = 4}, + [1245] = {.lex_state = 174}, + [1246] = {.lex_state = 4}, + [1247] = {.lex_state = 174}, + [1248] = {.lex_state = 174}, [1249] = {.lex_state = 12}, - [1250] = {.lex_state = 176}, - [1251] = {.lex_state = 176}, - [1252] = {.lex_state = 3}, - [1253] = {.lex_state = 176}, - [1254] = {.lex_state = 176}, - [1255] = {.lex_state = 176}, - [1256] = {.lex_state = 0}, + [1250] = {.lex_state = 174}, + [1251] = {.lex_state = 174}, + [1252] = {.lex_state = 12}, + [1253] = {.lex_state = 174}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 174}, + [1256] = {.lex_state = 12}, [1257] = {.lex_state = 12}, - [1258] = {.lex_state = 12}, - [1259] = {.lex_state = 0}, + [1258] = {.lex_state = 0}, + [1259] = {.lex_state = 174}, [1260] = {.lex_state = 12}, - [1261] = {.lex_state = 176}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 12}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 12}, + [1263] = {.lex_state = 174}, [1264] = {.lex_state = 12}, - [1265] = {.lex_state = 176}, - [1266] = {.lex_state = 176}, - [1267] = {.lex_state = 12}, - [1268] = {.lex_state = 12}, - [1269] = {.lex_state = 176}, - [1270] = {.lex_state = 176}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 12, .external_lex_state = 2}, - [1273] = {.lex_state = 176}, - [1274] = {.lex_state = 176}, - [1275] = {.lex_state = 176}, - [1276] = {.lex_state = 176}, - [1277] = {.lex_state = 176}, - [1278] = {.lex_state = 176}, - [1279] = {.lex_state = 176}, - [1280] = {.lex_state = 176}, - [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 176}, - [1283] = {.lex_state = 176}, - [1284] = {.lex_state = 176}, - [1285] = {.lex_state = 176}, + [1265] = {.lex_state = 174}, + [1266] = {.lex_state = 174}, + [1267] = {.lex_state = 12, .external_lex_state = 2}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 174}, + [1270] = {.lex_state = 174}, + [1271] = {.lex_state = 174}, + [1272] = {.lex_state = 174}, + [1273] = {.lex_state = 174}, + [1274] = {.lex_state = 174}, + [1275] = {.lex_state = 174}, + [1276] = {.lex_state = 174}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 0}, + [1279] = {.lex_state = 174}, + [1280] = {.lex_state = 174}, + [1281] = {.lex_state = 174}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 174}, + [1284] = {.lex_state = 174}, + [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 176}, - [1288] = {.lex_state = 176}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 12}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 4}, + [1289] = {.lex_state = 4}, + [1290] = {.lex_state = 0}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 3}, - [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 12, .external_lex_state = 2}, - [1295] = {.lex_state = 12}, - [1296] = {.lex_state = 12, .external_lex_state = 2}, + [1292] = {.lex_state = 12, .external_lex_state = 2}, + [1293] = {.lex_state = 12, .external_lex_state = 2}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 176}, - [1300] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 12}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 3}, - [1307] = {.lex_state = 0}, + [1304] = {.lex_state = 12}, + [1305] = {.lex_state = 174}, + [1306] = {.lex_state = 0}, + [1307] = {.lex_state = 12, .external_lex_state = 2}, [1308] = {.lex_state = 0}, [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 12, .external_lex_state = 2}, + [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, + [1314] = {.lex_state = 12, .external_lex_state = 2}, [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 176}, + [1316] = {.lex_state = 0}, [1317] = {.lex_state = 0}, [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 12, .external_lex_state = 2}, - [1320] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 174}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 0}, + [1325] = {.lex_state = 174}, [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 176}, + [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, [1329] = {.lex_state = 0}, [1330] = {.lex_state = 0}, [1331] = {.lex_state = 0}, [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, + [1333] = {.lex_state = 174}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 176}, + [1337] = {.lex_state = 0}, [1338] = {.lex_state = 0}, [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0}, @@ -12087,45 +12070,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1346] = {.lex_state = 0}, [1347] = {.lex_state = 0}, [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 12, .external_lex_state = 2}, + [1349] = {.lex_state = 0}, [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 12}, - [1358] = {.lex_state = 12, .external_lex_state = 2}, + [1351] = {.lex_state = 12, .external_lex_state = 2}, + [1352] = {.lex_state = 12}, + [1353] = {.lex_state = 12, .external_lex_state = 2}, + [1354] = {.lex_state = 13}, + [1355] = {.lex_state = 11}, + [1356] = {.lex_state = 11}, + [1357] = {.lex_state = 11}, + [1358] = {.lex_state = 11}, [1359] = {.lex_state = 11}, [1360] = {.lex_state = 11}, [1361] = {.lex_state = 11}, [1362] = {.lex_state = 11}, [1363] = {.lex_state = 11}, - [1364] = {.lex_state = 11}, - [1365] = {.lex_state = 11}, - [1366] = {.lex_state = 13}, - [1367] = {.lex_state = 11}, - [1368] = {.lex_state = 11}, + [1364] = {.lex_state = 4}, + [1365] = {.lex_state = 0}, + [1366] = {.lex_state = 0}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 0}, [1369] = {.lex_state = 12}, - [1370] = {.lex_state = 0}, + [1370] = {.lex_state = 174}, [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 3}, - [1376] = {.lex_state = 3}, - [1377] = {.lex_state = 176}, + [1372] = {.lex_state = 12}, + [1373] = {.lex_state = 12}, + [1374] = {.lex_state = 12}, + [1375] = {.lex_state = 174}, + [1376] = {.lex_state = 12}, + [1377] = {.lex_state = 12}, [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 12}, + [1379] = {.lex_state = 4}, + [1380] = {.lex_state = 0}, [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 12}, - [1383] = {.lex_state = 12}, - [1384] = {.lex_state = 12}, - [1385] = {.lex_state = 176}, - [1386] = {.lex_state = 12}, - [1387] = {.lex_state = 11}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 174}, + [1386] = {.lex_state = 174}, + [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, [1389] = {.lex_state = 0}, [1390] = {.lex_state = 0}, @@ -12134,32 +12117,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1393] = {.lex_state = 0}, [1394] = {.lex_state = 0}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 176}, + [1396] = {.lex_state = 174}, + [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, [1400] = {.lex_state = 0}, [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 3}, + [1402] = {.lex_state = 0}, [1403] = {.lex_state = 0}, [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 176}, + [1405] = {.lex_state = 0}, [1406] = {.lex_state = 0}, [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 0}, + [1408] = {.lex_state = 174}, [1409] = {.lex_state = 0}, [1410] = {.lex_state = 0}, [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 0}, + [1412] = {.lex_state = 12}, [1413] = {.lex_state = 0}, [1414] = {.lex_state = 0}, [1415] = {.lex_state = 0}, [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 176}, + [1418] = {.lex_state = 174}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 176}, + [1421] = {.lex_state = 174}, [1422] = {.lex_state = 0}, [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, @@ -12169,11 +12152,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 12}, + [1431] = {.lex_state = 4}, [1432] = {.lex_state = 0}, [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, + [1434] = {.lex_state = 11}, + [1435] = {.lex_state = 174}, [1436] = {.lex_state = 0}, [1437] = {.lex_state = 0}, [1438] = {.lex_state = 0}, @@ -12185,365 +12168,365 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1444] = {.lex_state = 0}, [1445] = {.lex_state = 0}, [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 176}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 176}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 12}, + [1449] = {.lex_state = 4}, [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 176}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 176}, - [1454] = {.lex_state = 176}, - [1455] = {.lex_state = 176}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 176}, - [1459] = {.lex_state = 176}, - [1460] = {.lex_state = 0}, + [1451] = {.lex_state = 4}, + [1452] = {.lex_state = 174}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 174}, + [1455] = {.lex_state = 174}, + [1456] = {.lex_state = 174}, + [1457] = {.lex_state = 4}, + [1458] = {.lex_state = 0}, + [1459] = {.lex_state = 0}, + [1460] = {.lex_state = 174}, [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 0}, + [1462] = {.lex_state = 174}, [1463] = {.lex_state = 0}, [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 3}, - [1466] = {.lex_state = 176}, - [1467] = {.lex_state = 12}, - [1468] = {.lex_state = 0}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 0}, + [1468] = {.lex_state = 174}, [1469] = {.lex_state = 0}, [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 176}, - [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 3}, + [1471] = {.lex_state = 4}, + [1472] = {.lex_state = 4}, + [1473] = {.lex_state = 174}, + [1474] = {.lex_state = 0}, [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 13, .external_lex_state = 3}, - [1477] = {.lex_state = 176}, - [1478] = {.lex_state = 3}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 3}, - [1481] = {.lex_state = 3}, - [1482] = {.lex_state = 0}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 174}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 174}, + [1482] = {.lex_state = 174}, [1483] = {.lex_state = 0}, - [1484] = {.lex_state = 176}, - [1485] = {.lex_state = 176}, + [1484] = {.lex_state = 13, .external_lex_state = 3}, + [1485] = {.lex_state = 0}, [1486] = {.lex_state = 0}, [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 176}, + [1488] = {.lex_state = 0}, [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 176}, - [1492] = {.lex_state = 13}, - [1493] = {.lex_state = 3}, - [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 0}, + [1490] = {.lex_state = 174}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 174}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 13}, + [1495] = {.lex_state = 13}, [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 0}, + [1497] = {.lex_state = 3}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 176}, + [1500] = {.lex_state = 12}, + [1501] = {.lex_state = 0}, [1502] = {.lex_state = 0}, [1503] = {.lex_state = 0}, [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 0}, + [1505] = {.lex_state = 1}, [1506] = {.lex_state = 0}, [1507] = {.lex_state = 0}, [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 12}, - [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 13}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 1}, + [1511] = {.lex_state = 12}, + [1512] = {.lex_state = 174}, [1513] = {.lex_state = 0}, [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 13}, + [1515] = {.lex_state = 174}, + [1516] = {.lex_state = 0}, [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 176}, - [1521] = {.lex_state = 12}, + [1518] = {.lex_state = 1}, + [1519] = {.lex_state = 13}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, [1523] = {.lex_state = 0}, [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 176}, - [1528] = {.lex_state = 0}, + [1525] = {.lex_state = 12}, + [1526] = {.lex_state = 12}, + [1527] = {.lex_state = 174}, + [1528] = {.lex_state = 174}, [1529] = {.lex_state = 0}, [1530] = {.lex_state = 0}, [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, + [1532] = {.lex_state = 12}, + [1533] = {.lex_state = 12}, [1534] = {.lex_state = 0}, [1535] = {.lex_state = 0}, [1536] = {.lex_state = 0}, [1537] = {.lex_state = 0}, [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 3}, + [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 3}, - [1542] = {.lex_state = 0}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 3}, [1543] = {.lex_state = 0}, [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, + [1545] = {.lex_state = 12}, [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 11}, - [1548] = {.lex_state = 1}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 13}, + [1547] = {.lex_state = 12}, + [1548] = {.lex_state = 12}, + [1549] = {.lex_state = 12}, + [1550] = {.lex_state = 12}, + [1551] = {.lex_state = 12}, [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 3}, + [1553] = {.lex_state = 174}, [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 176}, - [1562] = {.lex_state = 0}, + [1555] = {.lex_state = 12}, + [1556] = {.lex_state = 4}, + [1557] = {.lex_state = 174}, + [1558] = {.lex_state = 3}, + [1559] = {.lex_state = 174}, + [1560] = {.lex_state = 12}, + [1561] = {.lex_state = 12}, + [1562] = {.lex_state = 12}, [1563] = {.lex_state = 12}, [1564] = {.lex_state = 12}, - [1565] = {.lex_state = 12}, - [1566] = {.lex_state = 12}, - [1567] = {.lex_state = 176}, - [1568] = {.lex_state = 0}, + [1565] = {.lex_state = 0}, + [1566] = {.lex_state = 174}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 12}, [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 12}, - [1571] = {.lex_state = 1}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 0}, + [1570] = {.lex_state = 0}, + [1571] = {.lex_state = 0}, + [1572] = {.lex_state = 12}, + [1573] = {.lex_state = 12}, [1574] = {.lex_state = 12}, [1575] = {.lex_state = 12}, [1576] = {.lex_state = 12}, - [1577] = {.lex_state = 12}, - [1578] = {.lex_state = 12}, - [1579] = {.lex_state = 176}, - [1580] = {.lex_state = 12}, + [1577] = {.lex_state = 174}, + [1578] = {.lex_state = 174}, + [1579] = {.lex_state = 13}, + [1580] = {.lex_state = 0}, [1581] = {.lex_state = 12}, [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 176}, + [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, [1585] = {.lex_state = 12}, [1586] = {.lex_state = 12}, [1587] = {.lex_state = 12}, [1588] = {.lex_state = 12}, [1589] = {.lex_state = 12}, - [1590] = {.lex_state = 176}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 12}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 174}, + [1592] = {.lex_state = 0}, [1593] = {.lex_state = 12}, - [1594] = {.lex_state = 12}, - [1595] = {.lex_state = 12}, - [1596] = {.lex_state = 12}, + [1594] = {.lex_state = 0}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 0}, [1597] = {.lex_state = 12}, [1598] = {.lex_state = 12}, [1599] = {.lex_state = 12}, [1600] = {.lex_state = 12}, [1601] = {.lex_state = 12}, - [1602] = {.lex_state = 12}, - [1603] = {.lex_state = 176}, + [1602] = {.lex_state = 174}, + [1603] = {.lex_state = 12}, [1604] = {.lex_state = 0}, [1605] = {.lex_state = 12}, [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 176}, - [1608] = {.lex_state = 12}, - [1609] = {.lex_state = 12}, - [1610] = {.lex_state = 12}, - [1611] = {.lex_state = 12}, - [1612] = {.lex_state = 12}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 0}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 11}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 174}, [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 176}, - [1615] = {.lex_state = 176}, - [1616] = {.lex_state = 12}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 176}, - [1619] = {.lex_state = 1}, - [1620] = {.lex_state = 176}, - [1621] = {.lex_state = 12}, - [1622] = {.lex_state = 0}, - [1623] = {.lex_state = 176}, - [1624] = {.lex_state = 176}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 0}, + [1616] = {.lex_state = 0}, + [1617] = {.lex_state = 174}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 0}, + [1622] = {.lex_state = 12}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 12}, [1625] = {.lex_state = 0}, [1626] = {.lex_state = 0}, [1627] = {.lex_state = 0}, [1628] = {.lex_state = 0}, [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 176}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 176}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, + [1630] = {.lex_state = 174}, + [1631] = {.lex_state = 174}, + [1632] = {.lex_state = 12}, + [1633] = {.lex_state = 12}, + [1634] = {.lex_state = 3}, + [1635] = {.lex_state = 174}, [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 12}, + [1637] = {.lex_state = 174}, [1638] = {.lex_state = 12}, [1639] = {.lex_state = 0}, [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 1}, + [1641] = {.lex_state = 13, .external_lex_state = 4}, [1642] = {.lex_state = 0}, [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 176}, + [1644] = {.lex_state = 0}, [1645] = {.lex_state = 0}, [1646] = {.lex_state = 0}, [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 176}, - [1650] = {.lex_state = 176}, - [1651] = {.lex_state = 12}, - [1652] = {.lex_state = 12}, + [1648] = {.lex_state = 174}, + [1649] = {.lex_state = 12}, + [1650] = {.lex_state = 12}, + [1651] = {.lex_state = 174}, + [1652] = {.lex_state = 0}, [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 11}, - [1655] = {.lex_state = 176}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 174}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, + [1659] = {.lex_state = 174}, [1660] = {.lex_state = 0}, [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 176}, - [1663] = {.lex_state = 0}, + [1662] = {.lex_state = 0}, + [1663] = {.lex_state = 174}, [1664] = {.lex_state = 12}, [1665] = {.lex_state = 12}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 12}, + [1666] = {.lex_state = 174}, + [1667] = {.lex_state = 174}, [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 176}, + [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 0}, [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 176}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 176}, - [1678] = {.lex_state = 176}, - [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 12}, - [1681] = {.lex_state = 12}, + [1673] = {.lex_state = 1}, + [1674] = {.lex_state = 0}, + [1675] = {.lex_state = 174}, + [1676] = {.lex_state = 12}, + [1677] = {.lex_state = 12}, + [1678] = {.lex_state = 12}, + [1679] = {.lex_state = 174}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 0}, [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 176}, + [1683] = {.lex_state = 0}, [1684] = {.lex_state = 0}, [1685] = {.lex_state = 0}, [1686] = {.lex_state = 0}, [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 176}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 176}, + [1688] = {.lex_state = 174}, + [1689] = {.lex_state = 11}, + [1690] = {.lex_state = 12}, + [1691] = {.lex_state = 12}, + [1692] = {.lex_state = 174}, + [1693] = {.lex_state = 0}, [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 176}, - [1697] = {.lex_state = 12}, - [1698] = {.lex_state = 12}, + [1695] = {.lex_state = 174}, + [1696] = {.lex_state = 174}, + [1697] = {.lex_state = 0}, + [1698] = {.lex_state = 174}, [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 176}, + [1700] = {.lex_state = 174}, [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 15}, + [1702] = {.lex_state = 174}, + [1703] = {.lex_state = 174}, + [1704] = {.lex_state = 0}, [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 176}, - [1707] = {.lex_state = 176}, - [1708] = {.lex_state = 176}, - [1709] = {.lex_state = 176}, - [1710] = {.lex_state = 12}, + [1706] = {.lex_state = 0}, + [1707] = {.lex_state = 0}, + [1708] = {.lex_state = 0}, + [1709] = {.lex_state = 174}, + [1710] = {.lex_state = 0}, [1711] = {.lex_state = 0}, [1712] = {.lex_state = 0}, [1713] = {.lex_state = 0}, [1714] = {.lex_state = 0}, [1715] = {.lex_state = 0}, - [1716] = {.lex_state = 12}, - [1717] = {.lex_state = 12}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 0}, [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, - [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 12}, - [1722] = {.lex_state = 0}, + [1720] = {.lex_state = 174}, + [1721] = {.lex_state = 0}, + [1722] = {.lex_state = 15}, [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 3}, + [1725] = {.lex_state = 0}, [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 0}, - [1728] = {.lex_state = 12}, + [1727] = {.lex_state = 174}, + [1728] = {.lex_state = 0}, [1729] = {.lex_state = 0}, [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 176}, + [1731] = {.lex_state = 12}, + [1732] = {.lex_state = 0}, [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 0}, + [1734] = {.lex_state = 12}, [1735] = {.lex_state = 0}, [1736] = {.lex_state = 0}, [1737] = {.lex_state = 0}, [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 176}, + [1739] = {.lex_state = 0}, [1740] = {.lex_state = 0}, [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, + [1742] = {.lex_state = 174}, [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 176}, - [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 176}, - [1749] = {.lex_state = 176}, + [1746] = {.lex_state = 174}, + [1747] = {.lex_state = 12}, + [1748] = {.lex_state = 0}, + [1749] = {.lex_state = 12}, [1750] = {.lex_state = 0}, [1751] = {.lex_state = 0}, [1752] = {.lex_state = 0}, [1753] = {.lex_state = 0}, [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 0}, + [1755] = {.lex_state = 4}, [1756] = {.lex_state = 0}, [1757] = {.lex_state = 0}, [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, + [1760] = {.lex_state = 174}, + [1761] = {.lex_state = 174}, [1762] = {.lex_state = 0}, [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, + [1764] = {.lex_state = 13}, [1765] = {.lex_state = 0}, [1766] = {.lex_state = 0}, [1767] = {.lex_state = 0}, [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 176}, + [1769] = {.lex_state = 0}, [1770] = {.lex_state = 0}, [1771] = {.lex_state = 0}, [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, + [1773] = {.lex_state = 12}, [1774] = {.lex_state = 0}, [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 12}, + [1777] = {.lex_state = 0}, [1778] = {.lex_state = 0}, [1779] = {.lex_state = 0}, [1780] = {.lex_state = 0}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, + [1782] = {.lex_state = 174}, [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 0}, + [1784] = {.lex_state = 12}, [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 176}, - [1787] = {.lex_state = 12}, + [1786] = {.lex_state = 0}, + [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 12}, + [1790] = {.lex_state = 2}, [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, + [1793] = {.lex_state = 4}, [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, + [1796] = {.lex_state = 12}, [1797] = {.lex_state = 0}, [1798] = {.lex_state = 0}, [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0}, [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 2}, + [1802] = {.lex_state = 12}, + [1803] = {.lex_state = 0}, [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 0}, + [1805] = {.lex_state = 11}, [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, [1808] = {.lex_state = 0}, @@ -12551,20 +12534,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1810] = {.lex_state = 0}, [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, + [1813] = {.lex_state = 174}, [1814] = {.lex_state = 0}, [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 176}, + [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 176}, + [1819] = {.lex_state = 0}, [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 0}, + [1821] = {.lex_state = 174}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 11}, + [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, [1828] = {.lex_state = 0}, [1829] = {.lex_state = 0}, @@ -12574,14 +12557,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1833] = {.lex_state = 0}, [1834] = {.lex_state = 0}, [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 176}, + [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, [1838] = {.lex_state = 0}, [1839] = {.lex_state = 0}, [1840] = {.lex_state = 0}, [1841] = {.lex_state = 0}, [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 12}, + [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, [1846] = {.lex_state = 0}, @@ -12589,58 +12572,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 12}, + [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 176}, + [1853] = {.lex_state = 0}, [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 12}, + [1856] = {.lex_state = 0}, [1857] = {.lex_state = 0}, [1858] = {.lex_state = 0}, [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 0}, + [1860] = {.lex_state = 174}, [1861] = {.lex_state = 0}, [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 12}, + [1864] = {.lex_state = 0}, [1865] = {.lex_state = 0}, [1866] = {.lex_state = 0}, [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 0}, + [1868] = {.lex_state = 174}, + [1869] = {.lex_state = 174}, [1870] = {.lex_state = 0}, [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 3}, + [1874] = {.lex_state = 174}, + [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 176}, - [1881] = {.lex_state = 13}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, + [1887] = {.lex_state = 13}, [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, [1890] = {.lex_state = 0}, [1891] = {.lex_state = 0}, [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 13}, + [1893] = {.lex_state = 0}, [1894] = {.lex_state = 0}, [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 176}, + [1898] = {.lex_state = 0}, [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 0}, + [1902] = {.lex_state = 174}, [1903] = {.lex_state = 0}, [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, @@ -12649,7 +12632,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 176}, + [1911] = {.lex_state = 0}, [1912] = {.lex_state = 0}, [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, @@ -12671,19 +12654,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1930] = {.lex_state = 0}, [1931] = {.lex_state = 0}, [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 176}, + [1933] = {.lex_state = 12}, + [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 0}, + [1936] = {.lex_state = 174}, [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 3}, + [1939] = {.lex_state = 0}, [1940] = {.lex_state = 0}, [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 12}, + [1942] = {.lex_state = 0}, [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 176}, + [1945] = {.lex_state = 0}, [1946] = {.lex_state = 0}, [1947] = {.lex_state = 0}, [1948] = {.lex_state = 0}, @@ -12697,7 +12680,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1956] = {.lex_state = 0}, [1957] = {.lex_state = 0}, [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 176}, + [1959] = {.lex_state = 0}, [1960] = {.lex_state = 0}, [1961] = {.lex_state = 0}, [1962] = {.lex_state = 0}, @@ -12713,33 +12696,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1972] = {.lex_state = 0}, [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 0}, - [1976] = {.lex_state = 0}, + [1975] = {.lex_state = 174}, + [1976] = {.lex_state = 13}, [1977] = {.lex_state = 0}, [1978] = {.lex_state = 0}, [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 13}, + [1980] = {.lex_state = 0}, [1981] = {.lex_state = 0}, [1982] = {.lex_state = 0}, [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 176}, - [1985] = {.lex_state = 13}, + [1984] = {.lex_state = 0}, + [1985] = {.lex_state = 0}, [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 0}, + [1987] = {.lex_state = 174}, [1988] = {.lex_state = 0}, [1989] = {.lex_state = 0}, [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 176}, - [1992] = {.lex_state = 176}, + [1991] = {.lex_state = 0}, + [1992] = {.lex_state = 174}, [1993] = {.lex_state = 0}, [1994] = {.lex_state = 0}, [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 176}, + [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, [1999] = {.lex_state = 0}, [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 176}, + [2001] = {.lex_state = 0}, [2002] = {.lex_state = 0}, [2003] = {.lex_state = 0}, [2004] = {.lex_state = 0}, @@ -12751,7 +12734,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2010] = {.lex_state = 0}, [2011] = {.lex_state = 0}, [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 0}, + [2013] = {.lex_state = 0, .external_lex_state = 5}, [2014] = {.lex_state = 0}, [2015] = {.lex_state = 0}, [2016] = {.lex_state = 0}, @@ -12760,9 +12743,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2019] = {.lex_state = 0}, [2020] = {.lex_state = 0}, [2021] = {.lex_state = 0}, - [2022] = {.lex_state = 0}, + [2022] = {.lex_state = 174}, [2023] = {.lex_state = 0}, - [2024] = {.lex_state = 0}, + [2024] = {.lex_state = 174}, [2025] = {.lex_state = 0}, [2026] = {.lex_state = 0}, [2027] = {.lex_state = 0}, @@ -12770,9 +12753,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2029] = {.lex_state = 0}, [2030] = {.lex_state = 0}, [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 0}, + [2032] = {.lex_state = 174}, [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 176}, + [2034] = {.lex_state = 0}, [2035] = {.lex_state = 0}, [2036] = {.lex_state = 0}, [2037] = {.lex_state = 0}, @@ -12788,70 +12771,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2047] = {.lex_state = 0}, [2048] = {.lex_state = 0}, [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 0}, + [2050] = {.lex_state = 174}, + [2051] = {.lex_state = 13}, [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 12}, + [2053] = {.lex_state = 0}, [2054] = {.lex_state = 0}, [2055] = {.lex_state = 0}, [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, [2058] = {.lex_state = 0}, - [2059] = {.lex_state = 176}, - [2060] = {.lex_state = 13}, - [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 0}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 0}, + [2061] = {.lex_state = 174}, + [2062] = {.lex_state = 174}, [2063] = {.lex_state = 0}, [2064] = {.lex_state = 0}, [2065] = {.lex_state = 0}, [2066] = {.lex_state = 0}, - [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 0}, - [2069] = {.lex_state = 0}, + [2067] = {.lex_state = 174}, + [2068] = {.lex_state = 174}, + [2069] = {.lex_state = 13}, [2070] = {.lex_state = 0}, - [2071] = {.lex_state = 176}, + [2071] = {.lex_state = 0}, [2072] = {.lex_state = 0}, [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 0}, + [2074] = {.lex_state = 174}, [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 176}, + [2076] = {.lex_state = 0}, [2077] = {.lex_state = 0}, [2078] = {.lex_state = 0}, [2079] = {.lex_state = 0}, [2080] = {.lex_state = 0}, [2081] = {.lex_state = 0}, - [2082] = {.lex_state = 176}, + [2082] = {.lex_state = 0}, [2083] = {.lex_state = 0}, [2084] = {.lex_state = 0}, [2085] = {.lex_state = 0}, [2086] = {.lex_state = 0}, - [2087] = {.lex_state = 13}, + [2087] = {.lex_state = 12}, [2088] = {.lex_state = 0}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, [2091] = {.lex_state = 0}, [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 200}, + [2093] = {.lex_state = 0}, [2094] = {.lex_state = 0}, [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 12}, + [2096] = {.lex_state = 174}, [2097] = {.lex_state = 0}, - [2098] = {.lex_state = 0}, + [2098] = {.lex_state = 174}, [2099] = {.lex_state = 0}, [2100] = {.lex_state = 0}, [2101] = {.lex_state = 0}, [2102] = {.lex_state = 0}, [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 0}, + [2104] = {.lex_state = 174}, [2105] = {.lex_state = 0}, - [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 176}, + [2106] = {.lex_state = 174}, + [2107] = {.lex_state = 0}, [2108] = {.lex_state = 0}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 12}, + [2109] = {.lex_state = 12}, + [2110] = {.lex_state = 174}, [2111] = {.lex_state = 0}, [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 176}, + [2113] = {.lex_state = 0}, [2114] = {.lex_state = 0}, [2115] = {.lex_state = 0}, [2116] = {.lex_state = 0}, @@ -12861,21 +12844,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2120] = {.lex_state = 0}, [2121] = {.lex_state = 0}, [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 0}, - [2125] = {.lex_state = 0}, + [2123] = {.lex_state = 174}, + [2124] = {.lex_state = 13}, + [2125] = {.lex_state = 12}, [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 0}, + [2127] = {.lex_state = 174}, [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 0, .external_lex_state = 4}, + [2129] = {.lex_state = 0}, [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0}, + [2131] = {.lex_state = 13}, [2132] = {.lex_state = 0}, - [2133] = {.lex_state = 176}, - [2134] = {.lex_state = 12}, + [2133] = {.lex_state = 0}, + [2134] = {.lex_state = 0}, [2135] = {.lex_state = 0}, [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 13}, + [2137] = {.lex_state = 0}, [2138] = {.lex_state = 0}, [2139] = {.lex_state = 0}, [2140] = {.lex_state = 0}, @@ -12892,110 +12875,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2151] = {.lex_state = 0}, [2152] = {.lex_state = 0}, [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, + [2154] = {.lex_state = 174}, [2155] = {.lex_state = 0}, [2156] = {.lex_state = 0}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 0}, + [2157] = {.lex_state = 12}, + [2158] = {.lex_state = 174}, [2159] = {.lex_state = 0}, - [2160] = {.lex_state = 176}, + [2160] = {.lex_state = 0}, [2161] = {.lex_state = 0}, [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 176}, + [2163] = {.lex_state = 0}, [2164] = {.lex_state = 12}, [2165] = {.lex_state = 0}, [2166] = {.lex_state = 0}, - [2167] = {.lex_state = 176}, - [2168] = {.lex_state = 176}, + [2167] = {.lex_state = 0}, + [2168] = {.lex_state = 12}, [2169] = {.lex_state = 0}, - [2170] = {.lex_state = 13}, + [2170] = {.lex_state = 0}, [2171] = {.lex_state = 0}, [2172] = {.lex_state = 0}, [2173] = {.lex_state = 0}, [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 12}, - [2176] = {.lex_state = 0}, + [2175] = {.lex_state = 0}, + [2176] = {.lex_state = 174}, [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 12}, + [2178] = {.lex_state = 0}, [2179] = {.lex_state = 0}, [2180] = {.lex_state = 0}, [2181] = {.lex_state = 0}, [2182] = {.lex_state = 0}, [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 0}, + [2184] = {.lex_state = 12}, + [2185] = {.lex_state = 174}, + [2186] = {.lex_state = 12}, [2187] = {.lex_state = 0}, [2188] = {.lex_state = 0}, [2189] = {.lex_state = 0}, [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 176}, + [2191] = {.lex_state = 0}, [2192] = {.lex_state = 0}, - [2193] = {.lex_state = 12}, + [2193] = {.lex_state = 0}, [2194] = {.lex_state = 0}, [2195] = {.lex_state = 0}, [2196] = {.lex_state = 0}, [2197] = {.lex_state = 0}, [2198] = {.lex_state = 0}, - [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 0}, + [2199] = {.lex_state = 174}, + [2200] = {.lex_state = 13}, [2201] = {.lex_state = 0}, [2202] = {.lex_state = 0}, [2203] = {.lex_state = 0}, [2204] = {.lex_state = 0}, - [2205] = {.lex_state = 176}, - [2206] = {.lex_state = 176}, - [2207] = {.lex_state = 13}, + [2205] = {.lex_state = 0}, + [2206] = {.lex_state = 0}, + [2207] = {.lex_state = 0}, [2208] = {.lex_state = 0}, [2209] = {.lex_state = 0}, - [2210] = {.lex_state = 0}, + [2210] = {.lex_state = 174}, [2211] = {.lex_state = 0}, [2212] = {.lex_state = 0}, [2213] = {.lex_state = 0}, [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 0}, - [2216] = {.lex_state = 176}, + [2215] = {.lex_state = 12}, + [2216] = {.lex_state = 0}, [2217] = {.lex_state = 0}, [2218] = {.lex_state = 0}, [2219] = {.lex_state = 0}, [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 12}, + [2221] = {.lex_state = 174}, [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0}, + [2223] = {.lex_state = 198}, [2224] = {.lex_state = 0}, [2225] = {.lex_state = 0}, [2226] = {.lex_state = 0}, [2227] = {.lex_state = 0}, - [2228] = {.lex_state = 0}, + [2228] = {.lex_state = 174}, [2229] = {.lex_state = 0}, [2230] = {.lex_state = 0}, [2231] = {.lex_state = 0}, [2232] = {.lex_state = 0}, - [2233] = {.lex_state = 176}, + [2233] = {.lex_state = 0}, [2234] = {.lex_state = 0}, [2235] = {.lex_state = 0}, [2236] = {.lex_state = 0}, [2237] = {.lex_state = 0}, [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 176}, + [2239] = {.lex_state = 0}, [2240] = {.lex_state = 0}, - [2241] = {.lex_state = 176}, - [2242] = {.lex_state = 0}, - [2243] = {.lex_state = 0}, + [2241] = {.lex_state = 0}, + [2242] = {.lex_state = 12}, + [2243] = {.lex_state = 174}, [2244] = {.lex_state = 0}, [2245] = {.lex_state = 0}, - [2246] = {.lex_state = 0}, + [2246] = {.lex_state = 13}, [2247] = {.lex_state = 0}, [2248] = {.lex_state = 0}, - [2249] = {.lex_state = 176}, - [2250] = {.lex_state = 12}, + [2249] = {.lex_state = 0}, + [2250] = {.lex_state = 0}, [2251] = {.lex_state = 0}, [2252] = {.lex_state = 0}, [2253] = {.lex_state = 0}, [2254] = {.lex_state = 0}, [2255] = {.lex_state = 0}, [2256] = {.lex_state = 0}, - [2257] = {.lex_state = 0, .external_lex_state = 5}, + [2257] = {.lex_state = 0}, [2258] = {.lex_state = 0}, [2259] = {.lex_state = 0}, [2260] = {.lex_state = 0}, @@ -13003,30 +12986,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2262] = {.lex_state = 0}, [2263] = {.lex_state = 0}, [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 176}, + [2265] = {.lex_state = 0}, [2266] = {.lex_state = 0}, [2267] = {.lex_state = 0}, [2268] = {.lex_state = 0}, - [2269] = {.lex_state = 0}, + [2269] = {.lex_state = 12}, [2270] = {.lex_state = 0}, [2271] = {.lex_state = 0}, [2272] = {.lex_state = 0}, [2273] = {.lex_state = 0}, - [2274] = {.lex_state = 176}, + [2274] = {.lex_state = 0}, [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 0}, - [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 0}, - [2280] = {.lex_state = 0}, - [2281] = {.lex_state = 0}, - [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 0}, - [2284] = {(TSStateId)(-1)}, - [2285] = {(TSStateId)(-1)}, - [2286] = {(TSStateId)(-1)}, - [2287] = {(TSStateId)(-1)}, - [2288] = {(TSStateId)(-1)}, + [2276] = {(TSStateId)(-1)}, + [2277] = {(TSStateId)(-1)}, + [2278] = {(TSStateId)(-1)}, + [2279] = {(TSStateId)(-1)}, + [2280] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13226,37 +13201,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2155), + [sym_source_file] = STATE(1962), [sym_line_comment] = STATE(1), [sym_doc_comment] = STATE(1), [sym_block_comment] = STATE(1), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1500), - [sym_global_storage] = STATE(1194), - [sym_module] = STATE(915), - [sym_import_declaration] = STATE(915), - [sym_define_declaration] = STATE(915), - [sym_distinct_declaration] = STATE(915), - [sym_const_declaration] = STATE(915), - [sym_global_declaration] = STATE(915), - [sym__struct_or_union] = STATE(2248), - [sym_struct_declaration] = STATE(915), - [sym_bitstruct_declaration] = STATE(915), - [sym_fault_declaration] = STATE(915), - [sym_enum_declaration] = STATE(915), - [sym_interface_declaration] = STATE(915), - [sym_func_declaration] = STATE(915), - [sym_func_definition] = STATE(915), - [sym_macro_declaration] = STATE(915), - [sym_ct_assert_stmt] = STATE(915), - [sym_ct_include_stmt] = STATE(915), - [sym_ct_exec_stmt] = STATE(915), - [sym_ct_echo_stmt] = STATE(915), - [sym_module_type_ident] = STATE(1052), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1977), - [aux_sym_source_file_repeat1] = STATE(833), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1541), + [sym_global_storage] = STATE(1183), + [sym_module] = STATE(923), + [sym_import_declaration] = STATE(923), + [sym_define_declaration] = STATE(923), + [sym_distinct_declaration] = STATE(923), + [sym_const_declaration] = STATE(923), + [sym_global_declaration] = STATE(923), + [sym__struct_or_union] = STATE(2086), + [sym_struct_declaration] = STATE(923), + [sym_bitstruct_declaration] = STATE(923), + [sym_fault_declaration] = STATE(923), + [sym_enum_declaration] = STATE(923), + [sym_interface_declaration] = STATE(923), + [sym_func_declaration] = STATE(923), + [sym_func_definition] = STATE(923), + [sym_macro_declaration] = STATE(923), + [sym_ct_assert_stmt] = STATE(923), + [sym_ct_include_stmt] = STATE(923), + [sym_ct_exec_stmt] = STATE(923), + [sym_ct_echo_stmt] = STATE(923), + [sym_module_type_ident] = STATE(1063), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(2094), + [aux_sym_source_file_repeat1] = STATE(829), [ts_builtin_sym_end] = ACTIONS(9), [sym_ident] = ACTIONS(11), [aux_sym_line_comment_token1] = ACTIONS(3), @@ -13314,82 +13289,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(59), }, [2] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(2), [sym_doc_comment] = STATE(2), [sym_block_comment] = STATE(2), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_case_stmt] = STATE(1699), - [sym_default_stmt] = STATE(1699), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(72), - [aux_sym_switch_body_repeat1] = STATE(1438), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(71), + [aux_sym_switch_body_repeat1] = STATE(1428), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -13506,82 +13481,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [3] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(3), [sym_doc_comment] = STATE(3), [sym_block_comment] = STATE(3), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_case_stmt] = STATE(1699), - [sym_default_stmt] = STATE(1699), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(83), - [aux_sym_switch_body_repeat1] = STATE(1432), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_switch_body_repeat1] = STATE(1427), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -13698,82 +13673,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [4] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(4), [sym_doc_comment] = STATE(4), [sym_block_comment] = STATE(4), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_case_stmt] = STATE(1699), - [sym_default_stmt] = STATE(1699), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(93), - [aux_sym_switch_body_repeat1] = STATE(1396), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(88), + [aux_sym_switch_body_repeat1] = STATE(1420), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -13890,82 +13865,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [5] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(5), [sym_doc_comment] = STATE(5), [sym_block_comment] = STATE(5), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_case_stmt] = STATE(1699), - [sym_default_stmt] = STATE(1699), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(58), - [aux_sym_switch_body_repeat1] = STATE(1416), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(65), + [aux_sym_switch_body_repeat1] = STATE(1403), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14082,82 +14057,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [6] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(6), [sym_doc_comment] = STATE(6), [sym_block_comment] = STATE(6), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_case_stmt] = STATE(1699), - [sym_default_stmt] = STATE(1699), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(66), - [aux_sym_switch_body_repeat1] = STATE(1407), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(76), + [aux_sym_switch_body_repeat1] = STATE(1413), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14274,82 +14249,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [7] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(7), [sym_doc_comment] = STATE(7), [sym_block_comment] = STATE(7), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_case_stmt] = STATE(1699), - [sym_default_stmt] = STATE(1699), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(88), - [aux_sym_switch_body_repeat1] = STATE(1425), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(91), + [aux_sym_switch_body_repeat1] = STATE(1392), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14466,79 +14441,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [8] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(8), [sym_doc_comment] = STATE(8), [sym_block_comment] = STATE(8), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(83), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14653,79 +14628,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [9] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(9), [sym_doc_comment] = STATE(9), [sym_block_comment] = STATE(9), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(93), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(65), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14840,79 +14815,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [10] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(10), [sym_doc_comment] = STATE(10), [sym_block_comment] = STATE(10), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(58), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(91), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -15027,266 +15002,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [11] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(11), [sym_doc_comment] = STATE(11), [sym_block_comment] = STATE(11), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(66), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_int] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), - [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(137), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(137), - [anon_sym_bool] = ACTIONS(137), - [anon_sym_char] = ACTIONS(137), - [anon_sym_ichar] = ACTIONS(137), - [anon_sym_short] = ACTIONS(137), - [anon_sym_ushort] = ACTIONS(137), - [anon_sym_uint] = ACTIONS(137), - [anon_sym_long] = ACTIONS(137), - [anon_sym_ulong] = ACTIONS(137), - [anon_sym_int128] = ACTIONS(137), - [anon_sym_uint128] = ACTIONS(137), - [anon_sym_float] = ACTIONS(137), - [anon_sym_double] = ACTIONS(137), - [anon_sym_float16] = ACTIONS(137), - [anon_sym_bfloat16] = ACTIONS(137), - [anon_sym_float128] = ACTIONS(137), - [anon_sym_iptr] = ACTIONS(137), - [anon_sym_uptr] = ACTIONS(137), - [anon_sym_isz] = ACTIONS(137), - [anon_sym_usz] = ACTIONS(137), - [anon_sym_anyfault] = ACTIONS(137), - [anon_sym_any] = ACTIONS(137), - [anon_sym_DOLLARtypeof] = ACTIONS(171), - [anon_sym_DOLLARtypefrom] = ACTIONS(171), - [anon_sym_DOLLARevaltype] = ACTIONS(171), - [anon_sym_DOLLARvatype] = ACTIONS(173), - [sym_real_literal] = ACTIONS(63), - }, - [12] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(12), - [sym_doc_comment] = STATE(12), - [sym_block_comment] = STATE(12), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(88), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(79), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_tlocal] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(191), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), + [sym_real_literal] = ACTIONS(63), + }, + [12] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(12), + [sym_doc_comment] = STATE(12), + [sym_block_comment] = STATE(12), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(76), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -15401,79 +15376,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [13] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(13), [sym_doc_comment] = STATE(13), [sym_block_comment] = STATE(13), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1043), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(72), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(71), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -15588,76 +15563,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [14] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(14), [sym_doc_comment] = STATE(14), [sym_block_comment] = STATE(14), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(427), - [sym_expr_stmt] = STATE(427), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(427), - [sym_return_stmt] = STATE(427), - [sym_continue_stmt] = STATE(427), - [sym_break_stmt] = STATE(427), - [sym_defer_stmt] = STATE(427), - [sym_assert_stmt] = STATE(427), - [sym_declaration_stmt] = STATE(427), - [sym_nextcase_stmt] = STATE(427), - [sym_switch_stmt] = STATE(427), - [sym_if_stmt] = STATE(427), - [sym_for_stmt] = STATE(427), - [sym_foreach_stmt] = STATE(427), - [sym_while_stmt] = STATE(427), - [sym_do_stmt] = STATE(427), - [sym_asm_block_stmt] = STATE(427), - [sym_ct_stmt_body] = STATE(1674), - [sym_ct_assert_stmt] = STATE(427), - [sym_ct_echo_stmt] = STATE(427), - [sym_ct_if_stmt] = STATE(427), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(427), - [sym_ct_for_stmt] = STATE(427), - [sym_ct_foreach_stmt] = STATE(427), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_stmt_body] = STATE(1651), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), [aux_sym_compound_stmt_repeat1] = STATE(25), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -15772,75 +15747,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [15] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(15), [sym_doc_comment] = STATE(15), [sym_block_comment] = STATE(15), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(243), [sym_integer_literal] = ACTIONS(246), [anon_sym_SQUOTE] = ACTIONS(249), @@ -15956,76 +15931,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(246), }, [16] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(16), [sym_doc_comment] = STATE(16), [sym_block_comment] = STATE(16), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(427), - [sym_expr_stmt] = STATE(427), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(427), - [sym_return_stmt] = STATE(427), - [sym_continue_stmt] = STATE(427), - [sym_break_stmt] = STATE(427), - [sym_defer_stmt] = STATE(427), - [sym_assert_stmt] = STATE(427), - [sym_declaration_stmt] = STATE(427), - [sym_nextcase_stmt] = STATE(427), - [sym_switch_stmt] = STATE(427), - [sym_if_stmt] = STATE(427), - [sym_for_stmt] = STATE(427), - [sym_foreach_stmt] = STATE(427), - [sym_while_stmt] = STATE(427), - [sym_do_stmt] = STATE(427), - [sym_asm_block_stmt] = STATE(427), - [sym_ct_stmt_body] = STATE(1623), - [sym_ct_assert_stmt] = STATE(427), - [sym_ct_echo_stmt] = STATE(427), - [sym_ct_if_stmt] = STATE(427), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(427), - [sym_ct_for_stmt] = STATE(427), - [sym_ct_foreach_stmt] = STATE(427), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_stmt_body] = STATE(1727), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), [aux_sym_compound_stmt_repeat1] = STATE(25), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16140,76 +16115,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [17] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(17), [sym_doc_comment] = STATE(17), [sym_block_comment] = STATE(17), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(427), - [sym_expr_stmt] = STATE(427), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(427), - [sym_return_stmt] = STATE(427), - [sym_continue_stmt] = STATE(427), - [sym_break_stmt] = STATE(427), - [sym_defer_stmt] = STATE(427), - [sym_assert_stmt] = STATE(427), - [sym_declaration_stmt] = STATE(427), - [sym_nextcase_stmt] = STATE(427), - [sym_switch_stmt] = STATE(427), - [sym_if_stmt] = STATE(427), - [sym_for_stmt] = STATE(427), - [sym_foreach_stmt] = STATE(427), - [sym_while_stmt] = STATE(427), - [sym_do_stmt] = STATE(427), - [sym_asm_block_stmt] = STATE(427), - [sym_ct_stmt_body] = STATE(1624), - [sym_ct_assert_stmt] = STATE(427), - [sym_ct_echo_stmt] = STATE(427), - [sym_ct_if_stmt] = STATE(427), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(427), - [sym_ct_for_stmt] = STATE(427), - [sym_ct_foreach_stmt] = STATE(427), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_stmt_body] = STATE(1617), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), [aux_sym_compound_stmt_repeat1] = STATE(25), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16324,76 +16299,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [18] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(18), [sym_doc_comment] = STATE(18), [sym_block_comment] = STATE(18), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(527), - [sym_expr_stmt] = STATE(527), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(527), - [sym_return_stmt] = STATE(527), - [sym_continue_stmt] = STATE(527), - [sym_break_stmt] = STATE(527), - [sym_defer_stmt] = STATE(527), - [sym_assert_stmt] = STATE(527), - [sym_declaration_stmt] = STATE(527), - [sym_nextcase_stmt] = STATE(527), - [sym_switch_stmt] = STATE(527), - [sym_if_stmt] = STATE(527), - [sym_for_stmt] = STATE(527), - [sym_foreach_stmt] = STATE(527), - [sym_while_stmt] = STATE(527), - [sym_do_stmt] = STATE(527), - [sym_asm_block_stmt] = STATE(527), - [sym_ct_stmt_body] = STATE(1853), - [sym_ct_assert_stmt] = STATE(527), - [sym_ct_echo_stmt] = STATE(527), - [sym_ct_if_stmt] = STATE(527), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(527), - [sym_ct_for_stmt] = STATE(527), - [sym_ct_foreach_stmt] = STATE(527), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_compound_stmt_repeat1] = STATE(55), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1874), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16507,75 +16482,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [19] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(19), [sym_doc_comment] = STATE(19), [sym_block_comment] = STATE(19), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(22), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16690,75 +16665,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [20] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(20), [sym_doc_comment] = STATE(20), [sym_block_comment] = STATE(20), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(23), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16873,75 +16848,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [21] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(21), [sym_doc_comment] = STATE(21), [sym_block_comment] = STATE(21), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(24), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17056,75 +17031,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [22] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(22), [sym_doc_comment] = STATE(22), [sym_block_comment] = STATE(22), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17239,75 +17214,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [23] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(23), [sym_doc_comment] = STATE(23), [sym_block_comment] = STATE(23), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17422,75 +17397,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [24] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(24), [sym_doc_comment] = STATE(24), [sym_block_comment] = STATE(24), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17605,75 +17580,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [25] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(25), [sym_doc_comment] = STATE(25), [sym_block_comment] = STATE(25), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(427), - [sym_expr_stmt] = STATE(427), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(427), - [sym_return_stmt] = STATE(427), - [sym_continue_stmt] = STATE(427), - [sym_break_stmt] = STATE(427), - [sym_defer_stmt] = STATE(427), - [sym_assert_stmt] = STATE(427), - [sym_declaration_stmt] = STATE(427), - [sym_nextcase_stmt] = STATE(427), - [sym_switch_stmt] = STATE(427), - [sym_if_stmt] = STATE(427), - [sym_for_stmt] = STATE(427), - [sym_foreach_stmt] = STATE(427), - [sym_while_stmt] = STATE(427), - [sym_do_stmt] = STATE(427), - [sym_asm_block_stmt] = STATE(427), - [sym_ct_assert_stmt] = STATE(427), - [sym_ct_echo_stmt] = STATE(427), - [sym_ct_if_stmt] = STATE(427), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(427), - [sym_ct_for_stmt] = STATE(427), - [sym_ct_foreach_stmt] = STATE(427), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_compound_stmt_repeat1] = STATE(28), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_compound_stmt_repeat1] = STATE(30), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17788,76 +17763,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [26] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(26), [sym_doc_comment] = STATE(26), [sym_block_comment] = STATE(26), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(527), - [sym_expr_stmt] = STATE(527), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(527), - [sym_return_stmt] = STATE(527), - [sym_continue_stmt] = STATE(527), - [sym_break_stmt] = STATE(527), - [sym_defer_stmt] = STATE(527), - [sym_assert_stmt] = STATE(527), - [sym_declaration_stmt] = STATE(527), - [sym_nextcase_stmt] = STATE(527), - [sym_switch_stmt] = STATE(527), - [sym_if_stmt] = STATE(527), - [sym_for_stmt] = STATE(527), - [sym_foreach_stmt] = STATE(527), - [sym_while_stmt] = STATE(527), - [sym_do_stmt] = STATE(527), - [sym_asm_block_stmt] = STATE(527), - [sym_ct_stmt_body] = STATE(1749), - [sym_ct_assert_stmt] = STATE(527), - [sym_ct_echo_stmt] = STATE(527), - [sym_ct_if_stmt] = STATE(527), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(527), - [sym_ct_for_stmt] = STATE(527), - [sym_ct_foreach_stmt] = STATE(527), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_compound_stmt_repeat1] = STATE(55), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1860), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17971,76 +17946,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [27] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(27), [sym_doc_comment] = STATE(27), [sym_block_comment] = STATE(27), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(527), - [sym_expr_stmt] = STATE(527), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(527), - [sym_return_stmt] = STATE(527), - [sym_continue_stmt] = STATE(527), - [sym_break_stmt] = STATE(527), - [sym_defer_stmt] = STATE(527), - [sym_assert_stmt] = STATE(527), - [sym_declaration_stmt] = STATE(527), - [sym_nextcase_stmt] = STATE(527), - [sym_switch_stmt] = STATE(527), - [sym_if_stmt] = STATE(527), - [sym_for_stmt] = STATE(527), - [sym_foreach_stmt] = STATE(527), - [sym_while_stmt] = STATE(527), - [sym_do_stmt] = STATE(527), - [sym_asm_block_stmt] = STATE(527), - [sym_ct_stmt_body] = STATE(1748), - [sym_ct_assert_stmt] = STATE(527), - [sym_ct_echo_stmt] = STATE(527), - [sym_ct_if_stmt] = STATE(527), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(527), - [sym_ct_for_stmt] = STATE(527), - [sym_ct_foreach_stmt] = STATE(527), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_compound_stmt_repeat1] = STATE(55), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1742), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -18154,259 +18129,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [28] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(28), [sym_doc_comment] = STATE(28), [sym_block_comment] = STATE(28), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(427), - [sym_expr_stmt] = STATE(427), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(427), - [sym_return_stmt] = STATE(427), - [sym_continue_stmt] = STATE(427), - [sym_break_stmt] = STATE(427), - [sym_defer_stmt] = STATE(427), - [sym_assert_stmt] = STATE(427), - [sym_declaration_stmt] = STATE(427), - [sym_nextcase_stmt] = STATE(427), - [sym_switch_stmt] = STATE(427), - [sym_if_stmt] = STATE(427), - [sym_for_stmt] = STATE(427), - [sym_foreach_stmt] = STATE(427), - [sym_while_stmt] = STATE(427), - [sym_do_stmt] = STATE(427), - [sym_asm_block_stmt] = STATE(427), - [sym_ct_assert_stmt] = STATE(427), - [sym_ct_echo_stmt] = STATE(427), - [sym_ct_if_stmt] = STATE(427), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(427), - [sym_ct_for_stmt] = STATE(427), - [sym_ct_foreach_stmt] = STATE(427), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_compound_stmt_repeat1] = STATE(28), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(243), - [sym_integer_literal] = ACTIONS(246), - [anon_sym_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(255), - [sym_bytes_literal] = ACTIONS(258), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(261), - [sym_at_ident] = ACTIONS(264), - [sym_hash_ident] = ACTIONS(267), - [sym_type_ident] = ACTIONS(270), - [sym_ct_type_ident] = ACTIONS(273), - [sym_const_ident] = ACTIONS(276), - [sym_builtin] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(282), - [anon_sym_static] = ACTIONS(285), - [anon_sym_tlocal] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(489), - [anon_sym_fn] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_const] = ACTIONS(495), - [anon_sym_var] = ACTIONS(302), - [anon_sym_return] = ACTIONS(498), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_break] = ACTIONS(504), - [anon_sym_defer] = ACTIONS(507), - [anon_sym_assert] = ACTIONS(510), - [anon_sym_nextcase] = ACTIONS(513), - [anon_sym_switch] = ACTIONS(516), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_if] = ACTIONS(519), - [anon_sym_for] = ACTIONS(522), - [anon_sym_foreach] = ACTIONS(525), - [anon_sym_foreach_r] = ACTIONS(525), - [anon_sym_while] = ACTIONS(528), - [anon_sym_do] = ACTIONS(531), - [anon_sym_int] = ACTIONS(346), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_asm] = ACTIONS(534), - [anon_sym_DOLLARassert] = ACTIONS(537), - [anon_sym_DOLLARerror] = ACTIONS(540), - [anon_sym_DOLLARecho] = ACTIONS(543), - [anon_sym_DOLLARif] = ACTIONS(546), - [anon_sym_DOLLARcase] = ACTIONS(320), - [anon_sym_DOLLARdefault] = ACTIONS(320), - [anon_sym_DOLLARswitch] = ACTIONS(364), - [anon_sym_DOLLARendswitch] = ACTIONS(320), - [anon_sym_DOLLARfor] = ACTIONS(549), - [anon_sym_DOLLARforeach] = ACTIONS(552), - [anon_sym_DOLLARalignof] = ACTIONS(373), - [anon_sym_DOLLARextnameof] = ACTIONS(373), - [anon_sym_DOLLARnameof] = ACTIONS(373), - [anon_sym_DOLLARoffsetof] = ACTIONS(373), - [anon_sym_DOLLARqnameof] = ACTIONS(373), - [anon_sym_DOLLARvaconst] = ACTIONS(376), - [anon_sym_DOLLARvaarg] = ACTIONS(376), - [anon_sym_DOLLARvaref] = ACTIONS(376), - [anon_sym_DOLLARvaexpr] = ACTIONS(376), - [anon_sym_true] = ACTIONS(379), - [anon_sym_false] = ACTIONS(379), - [anon_sym_null] = ACTIONS(379), - [anon_sym_DOLLARvacount] = ACTIONS(379), - [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARsizeof] = ACTIONS(382), - [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARappend] = ACTIONS(385), - [anon_sym_DOLLARconcat] = ACTIONS(385), - [anon_sym_DOLLARdefined] = ACTIONS(385), - [anon_sym_DOLLARembed] = ACTIONS(385), - [anon_sym_DOLLARand] = ACTIONS(385), - [anon_sym_DOLLARor] = ACTIONS(385), - [anon_sym_DOLLARfeature] = ACTIONS(388), - [anon_sym_DOLLARassignable] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_typeid] = ACTIONS(346), - [anon_sym_LBRACE_PIPE] = ACTIONS(394), - [anon_sym_void] = ACTIONS(346), - [anon_sym_bool] = ACTIONS(346), - [anon_sym_char] = ACTIONS(346), - [anon_sym_ichar] = ACTIONS(346), - [anon_sym_short] = ACTIONS(346), - [anon_sym_ushort] = ACTIONS(346), - [anon_sym_uint] = ACTIONS(346), - [anon_sym_long] = ACTIONS(346), - [anon_sym_ulong] = ACTIONS(346), - [anon_sym_int128] = ACTIONS(346), - [anon_sym_uint128] = ACTIONS(346), - [anon_sym_float] = ACTIONS(346), - [anon_sym_double] = ACTIONS(346), - [anon_sym_float16] = ACTIONS(346), - [anon_sym_bfloat16] = ACTIONS(346), - [anon_sym_float128] = ACTIONS(346), - [anon_sym_iptr] = ACTIONS(346), - [anon_sym_uptr] = ACTIONS(346), - [anon_sym_isz] = ACTIONS(346), - [anon_sym_usz] = ACTIONS(346), - [anon_sym_anyfault] = ACTIONS(346), - [anon_sym_any] = ACTIONS(346), - [anon_sym_DOLLARtypeof] = ACTIONS(397), - [anon_sym_DOLLARtypefrom] = ACTIONS(397), - [anon_sym_DOLLARevaltype] = ACTIONS(397), - [anon_sym_DOLLARvatype] = ACTIONS(400), - [sym_real_literal] = ACTIONS(246), - }, - [29] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(29), - [sym_doc_comment] = STATE(29), - [sym_block_comment] = STATE(29), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(527), - [sym_expr_stmt] = STATE(527), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(527), - [sym_return_stmt] = STATE(527), - [sym_continue_stmt] = STATE(527), - [sym_break_stmt] = STATE(527), - [sym_defer_stmt] = STATE(527), - [sym_assert_stmt] = STATE(527), - [sym_declaration_stmt] = STATE(527), - [sym_nextcase_stmt] = STATE(527), - [sym_switch_stmt] = STATE(527), - [sym_if_stmt] = STATE(527), - [sym_for_stmt] = STATE(527), - [sym_foreach_stmt] = STATE(527), - [sym_while_stmt] = STATE(527), - [sym_do_stmt] = STATE(527), - [sym_asm_block_stmt] = STATE(527), - [sym_ct_stmt_body] = STATE(1836), - [sym_ct_assert_stmt] = STATE(527), - [sym_ct_echo_stmt] = STATE(527), - [sym_ct_if_stmt] = STATE(527), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(527), - [sym_ct_for_stmt] = STATE(527), - [sym_ct_foreach_stmt] = STATE(527), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_compound_stmt_repeat1] = STATE(55), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1746), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -18455,8 +18247,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(441), [anon_sym_DOLLARecho] = ACTIONS(443), [anon_sym_DOLLARif] = ACTIONS(445), - [anon_sym_DOLLARendif] = ACTIONS(555), - [anon_sym_DOLLARelse] = ACTIONS(557), + [anon_sym_DOLLARendif] = ACTIONS(489), + [anon_sym_DOLLARelse] = ACTIONS(491), [anon_sym_DOLLARswitch] = ACTIONS(149), [anon_sym_DOLLARfor] = ACTIONS(451), [anon_sym_DOLLARforeach] = ACTIONS(453), @@ -18519,77 +18311,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [30] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(30), - [sym_doc_comment] = STATE(30), - [sym_block_comment] = STATE(30), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(527), - [sym_expr_stmt] = STATE(527), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(527), - [sym_return_stmt] = STATE(527), - [sym_continue_stmt] = STATE(527), - [sym_break_stmt] = STATE(527), - [sym_defer_stmt] = STATE(527), - [sym_assert_stmt] = STATE(527), - [sym_declaration_stmt] = STATE(527), - [sym_nextcase_stmt] = STATE(527), - [sym_switch_stmt] = STATE(527), - [sym_if_stmt] = STATE(527), - [sym_for_stmt] = STATE(527), - [sym_foreach_stmt] = STATE(527), - [sym_while_stmt] = STATE(527), - [sym_do_stmt] = STATE(527), - [sym_asm_block_stmt] = STATE(527), - [sym_ct_stmt_body] = STATE(1786), - [sym_ct_assert_stmt] = STATE(527), - [sym_ct_echo_stmt] = STATE(527), - [sym_ct_if_stmt] = STATE(527), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(527), - [sym_ct_for_stmt] = STATE(527), - [sym_ct_foreach_stmt] = STATE(527), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_compound_stmt_repeat1] = STATE(55), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [29] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(29), + [sym_doc_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1782), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -18638,8 +18430,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(441), [anon_sym_DOLLARecho] = ACTIONS(443), [anon_sym_DOLLARif] = ACTIONS(445), - [anon_sym_DOLLARendif] = ACTIONS(559), - [anon_sym_DOLLARelse] = ACTIONS(561), + [anon_sym_DOLLARendif] = ACTIONS(493), + [anon_sym_DOLLARelse] = ACTIONS(495), [anon_sym_DOLLARswitch] = ACTIONS(149), [anon_sym_DOLLARfor] = ACTIONS(451), [anon_sym_DOLLARforeach] = ACTIONS(453), @@ -18702,77 +18494,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, + [30] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(30), + [sym_doc_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_compound_stmt_repeat1] = STATE(30), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_const] = ACTIONS(503), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(512), + [anon_sym_defer] = ACTIONS(515), + [anon_sym_assert] = ACTIONS(518), + [anon_sym_nextcase] = ACTIONS(521), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(527), + [anon_sym_for] = ACTIONS(530), + [anon_sym_foreach] = ACTIONS(533), + [anon_sym_foreach_r] = ACTIONS(533), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(539), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(542), + [anon_sym_DOLLARassert] = ACTIONS(545), + [anon_sym_DOLLARerror] = ACTIONS(548), + [anon_sym_DOLLARecho] = ACTIONS(551), + [anon_sym_DOLLARif] = ACTIONS(554), + [anon_sym_DOLLARcase] = ACTIONS(320), + [anon_sym_DOLLARdefault] = ACTIONS(320), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARendswitch] = ACTIONS(320), + [anon_sym_DOLLARfor] = ACTIONS(557), + [anon_sym_DOLLARforeach] = ACTIONS(560), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLAReval] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), + [anon_sym_DOLLARsizeof] = ACTIONS(382), + [anon_sym_DOLLARstringify] = ACTIONS(382), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), + }, [31] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(31), [sym_doc_comment] = STATE(31), [sym_block_comment] = STATE(31), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(527), - [sym_expr_stmt] = STATE(527), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(527), - [sym_return_stmt] = STATE(527), - [sym_continue_stmt] = STATE(527), - [sym_break_stmt] = STATE(527), - [sym_defer_stmt] = STATE(527), - [sym_assert_stmt] = STATE(527), - [sym_declaration_stmt] = STATE(527), - [sym_nextcase_stmt] = STATE(527), - [sym_switch_stmt] = STATE(527), - [sym_if_stmt] = STATE(527), - [sym_for_stmt] = STATE(527), - [sym_foreach_stmt] = STATE(527), - [sym_while_stmt] = STATE(527), - [sym_do_stmt] = STATE(527), - [sym_asm_block_stmt] = STATE(527), - [sym_ct_stmt_body] = STATE(1819), - [sym_ct_assert_stmt] = STATE(527), - [sym_ct_echo_stmt] = STATE(527), - [sym_ct_if_stmt] = STATE(527), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(527), - [sym_ct_for_stmt] = STATE(527), - [sym_ct_foreach_stmt] = STATE(527), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_compound_stmt_repeat1] = STATE(55), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1813), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -18886,76 +18861,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [32] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(32), [sym_doc_comment] = STATE(32), [sym_block_comment] = STATE(32), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(591), - [sym_expr_stmt] = STATE(591), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(591), - [sym_return_stmt] = STATE(591), - [sym_continue_stmt] = STATE(591), - [sym_break_stmt] = STATE(591), - [sym_defer_stmt] = STATE(591), - [sym_assert_stmt] = STATE(591), - [sym_declaration_stmt] = STATE(591), - [sym_nextcase_stmt] = STATE(591), - [sym_switch_stmt] = STATE(591), - [sym_if_stmt] = STATE(591), - [sym_for_stmt] = STATE(591), - [sym_foreach_stmt] = STATE(591), - [sym_while_stmt] = STATE(591), - [sym_do_stmt] = STATE(591), - [sym_asm_block_stmt] = STATE(591), - [sym_ct_stmt_body] = STATE(2168), - [sym_ct_assert_stmt] = STATE(591), - [sym_ct_echo_stmt] = STATE(591), - [sym_ct_if_stmt] = STATE(591), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(591), - [sym_ct_for_stmt] = STATE(591), - [sym_ct_foreach_stmt] = STATE(591), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_compound_stmt_repeat1] = STATE(79), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2131), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19006,8 +18981,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARendfor] = ACTIONS(609), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(611), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -19068,76 +19043,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [33] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(33), [sym_doc_comment] = STATE(33), [sym_block_comment] = STATE(33), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2076), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2067), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19250,76 +19225,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [34] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(34), [sym_doc_comment] = STATE(34), [sym_block_comment] = STATE(34), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(1991), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(1936), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19432,76 +19407,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [35] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(35), [sym_doc_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(651), - [sym_expr_stmt] = STATE(651), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(651), - [sym_return_stmt] = STATE(651), - [sym_continue_stmt] = STATE(651), - [sym_break_stmt] = STATE(651), - [sym_defer_stmt] = STATE(651), - [sym_assert_stmt] = STATE(651), - [sym_declaration_stmt] = STATE(651), - [sym_nextcase_stmt] = STATE(651), - [sym_switch_stmt] = STATE(651), - [sym_if_stmt] = STATE(651), - [sym_for_stmt] = STATE(651), - [sym_foreach_stmt] = STATE(651), - [sym_while_stmt] = STATE(651), - [sym_do_stmt] = STATE(651), - [sym_asm_block_stmt] = STATE(651), - [sym_ct_stmt_body] = STATE(2170), - [sym_ct_assert_stmt] = STATE(651), - [sym_ct_echo_stmt] = STATE(651), - [sym_ct_if_stmt] = STATE(651), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(651), - [sym_ct_for_stmt] = STATE(651), - [sym_ct_foreach_stmt] = STATE(651), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_compound_stmt_repeat1] = STATE(90), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2127), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19552,8 +19527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), - [anon_sym_DOLLARendforeach] = ACTIONS(705), + [anon_sym_DOLLARendfor] = ACTIONS(703), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -19614,76 +19589,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [36] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(36), [sym_doc_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(591), - [sym_expr_stmt] = STATE(591), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(591), - [sym_return_stmt] = STATE(591), - [sym_continue_stmt] = STATE(591), - [sym_break_stmt] = STATE(591), - [sym_defer_stmt] = STATE(591), - [sym_assert_stmt] = STATE(591), - [sym_declaration_stmt] = STATE(591), - [sym_nextcase_stmt] = STATE(591), - [sym_switch_stmt] = STATE(591), - [sym_if_stmt] = STATE(591), - [sym_for_stmt] = STATE(591), - [sym_foreach_stmt] = STATE(591), - [sym_while_stmt] = STATE(591), - [sym_do_stmt] = STATE(591), - [sym_asm_block_stmt] = STATE(591), - [sym_ct_stmt_body] = STATE(2133), - [sym_ct_assert_stmt] = STATE(591), - [sym_ct_echo_stmt] = STATE(591), - [sym_ct_if_stmt] = STATE(591), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(591), - [sym_ct_for_stmt] = STATE(591), - [sym_ct_foreach_stmt] = STATE(591), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_compound_stmt_repeat1] = STATE(79), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2243), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19704,38 +19679,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARfor] = ACTIONS(701), [anon_sym_DOLLARendfor] = ACTIONS(707), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -19796,76 +19771,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [37] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(37), [sym_doc_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2205), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2185), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19978,76 +19953,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [38] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(38), [sym_doc_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2241), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2210), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20160,76 +20135,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [39] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(39), [sym_doc_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(651), - [sym_expr_stmt] = STATE(651), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(651), - [sym_return_stmt] = STATE(651), - [sym_continue_stmt] = STATE(651), - [sym_break_stmt] = STATE(651), - [sym_defer_stmt] = STATE(651), - [sym_assert_stmt] = STATE(651), - [sym_declaration_stmt] = STATE(651), - [sym_nextcase_stmt] = STATE(651), - [sym_switch_stmt] = STATE(651), - [sym_if_stmt] = STATE(651), - [sym_for_stmt] = STATE(651), - [sym_foreach_stmt] = STATE(651), - [sym_while_stmt] = STATE(651), - [sym_do_stmt] = STATE(651), - [sym_asm_block_stmt] = STATE(651), - [sym_ct_stmt_body] = STATE(2137), - [sym_ct_assert_stmt] = STATE(651), - [sym_ct_echo_stmt] = STATE(651), - [sym_ct_if_stmt] = STATE(651), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(651), - [sym_ct_for_stmt] = STATE(651), - [sym_ct_foreach_stmt] = STATE(651), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_compound_stmt_repeat1] = STATE(90), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2124), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20250,37 +20225,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARendforeach] = ACTIONS(713), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), @@ -20342,76 +20317,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [40] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(40), [sym_doc_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(591), - [sym_expr_stmt] = STATE(591), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(591), - [sym_return_stmt] = STATE(591), - [sym_continue_stmt] = STATE(591), - [sym_break_stmt] = STATE(591), - [sym_defer_stmt] = STATE(591), - [sym_assert_stmt] = STATE(591), - [sym_declaration_stmt] = STATE(591), - [sym_nextcase_stmt] = STATE(591), - [sym_switch_stmt] = STATE(591), - [sym_if_stmt] = STATE(591), - [sym_for_stmt] = STATE(591), - [sym_foreach_stmt] = STATE(591), - [sym_while_stmt] = STATE(591), - [sym_do_stmt] = STATE(591), - [sym_asm_block_stmt] = STATE(591), - [sym_ct_stmt_body] = STATE(2082), - [sym_ct_assert_stmt] = STATE(591), - [sym_ct_echo_stmt] = STATE(591), - [sym_ct_if_stmt] = STATE(591), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(591), - [sym_ct_for_stmt] = STATE(591), - [sym_ct_foreach_stmt] = STATE(591), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_compound_stmt_repeat1] = STATE(79), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2068), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20432,38 +20407,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARfor] = ACTIONS(701), [anon_sym_DOLLARendfor] = ACTIONS(715), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -20524,76 +20499,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [41] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(41), [sym_doc_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(651), - [sym_expr_stmt] = STATE(651), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(651), - [sym_return_stmt] = STATE(651), - [sym_continue_stmt] = STATE(651), - [sym_break_stmt] = STATE(651), - [sym_defer_stmt] = STATE(651), - [sym_assert_stmt] = STATE(651), - [sym_declaration_stmt] = STATE(651), - [sym_nextcase_stmt] = STATE(651), - [sym_switch_stmt] = STATE(651), - [sym_if_stmt] = STATE(651), - [sym_for_stmt] = STATE(651), - [sym_foreach_stmt] = STATE(651), - [sym_while_stmt] = STATE(651), - [sym_do_stmt] = STATE(651), - [sym_asm_block_stmt] = STATE(651), - [sym_ct_stmt_body] = STATE(2087), - [sym_ct_assert_stmt] = STATE(651), - [sym_ct_echo_stmt] = STATE(651), - [sym_ct_if_stmt] = STATE(651), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(651), - [sym_ct_for_stmt] = STATE(651), - [sym_ct_foreach_stmt] = STATE(651), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_compound_stmt_repeat1] = STATE(90), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2069), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20614,37 +20589,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARendforeach] = ACTIONS(717), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), @@ -20706,76 +20681,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [42] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(42), [sym_doc_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2107), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2096), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20888,76 +20863,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [43] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(43), [sym_doc_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2113), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2104), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -21070,76 +21045,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [44] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(44), [sym_doc_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(591), - [sym_expr_stmt] = STATE(591), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(591), - [sym_return_stmt] = STATE(591), - [sym_continue_stmt] = STATE(591), - [sym_break_stmt] = STATE(591), - [sym_defer_stmt] = STATE(591), - [sym_assert_stmt] = STATE(591), - [sym_declaration_stmt] = STATE(591), - [sym_nextcase_stmt] = STATE(591), - [sym_switch_stmt] = STATE(591), - [sym_if_stmt] = STATE(591), - [sym_for_stmt] = STATE(591), - [sym_foreach_stmt] = STATE(591), - [sym_while_stmt] = STATE(591), - [sym_do_stmt] = STATE(591), - [sym_asm_block_stmt] = STATE(591), - [sym_ct_stmt_body] = STATE(2206), - [sym_ct_assert_stmt] = STATE(591), - [sym_ct_echo_stmt] = STATE(591), - [sym_ct_if_stmt] = STATE(591), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(591), - [sym_ct_for_stmt] = STATE(591), - [sym_ct_foreach_stmt] = STATE(591), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_compound_stmt_repeat1] = STATE(79), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2158), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -21160,38 +21135,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(723), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARendfor] = ACTIONS(723), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -21252,76 +21227,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [45] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(45), [sym_doc_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(651), - [sym_expr_stmt] = STATE(651), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(651), - [sym_return_stmt] = STATE(651), - [sym_continue_stmt] = STATE(651), - [sym_break_stmt] = STATE(651), - [sym_defer_stmt] = STATE(651), - [sym_assert_stmt] = STATE(651), - [sym_declaration_stmt] = STATE(651), - [sym_nextcase_stmt] = STATE(651), - [sym_switch_stmt] = STATE(651), - [sym_if_stmt] = STATE(651), - [sym_for_stmt] = STATE(651), - [sym_foreach_stmt] = STATE(651), - [sym_while_stmt] = STATE(651), - [sym_do_stmt] = STATE(651), - [sym_asm_block_stmt] = STATE(651), - [sym_ct_stmt_body] = STATE(2207), - [sym_ct_assert_stmt] = STATE(651), - [sym_ct_echo_stmt] = STATE(651), - [sym_ct_if_stmt] = STATE(651), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(651), - [sym_ct_for_stmt] = STATE(651), - [sym_ct_foreach_stmt] = STATE(651), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_compound_stmt_repeat1] = STATE(90), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2200), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -21342,37 +21317,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARendforeach] = ACTIONS(725), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), @@ -21434,75 +21409,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [46] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(46), [sym_doc_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(527), - [sym_expr_stmt] = STATE(527), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(527), - [sym_return_stmt] = STATE(527), - [sym_continue_stmt] = STATE(527), - [sym_break_stmt] = STATE(527), - [sym_defer_stmt] = STATE(527), - [sym_assert_stmt] = STATE(527), - [sym_declaration_stmt] = STATE(527), - [sym_nextcase_stmt] = STATE(527), - [sym_switch_stmt] = STATE(527), - [sym_if_stmt] = STATE(527), - [sym_for_stmt] = STATE(527), - [sym_foreach_stmt] = STATE(527), - [sym_while_stmt] = STATE(527), - [sym_do_stmt] = STATE(527), - [sym_asm_block_stmt] = STATE(527), - [sym_ct_assert_stmt] = STATE(527), - [sym_ct_echo_stmt] = STATE(527), - [sym_ct_if_stmt] = STATE(527), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(527), - [sym_ct_for_stmt] = STATE(527), - [sym_ct_foreach_stmt] = STATE(527), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), [aux_sym_compound_stmt_repeat1] = STATE(46), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(243), [sym_integer_literal] = ACTIONS(246), [anon_sym_SQUOTE] = ACTIONS(249), @@ -21616,76 +21591,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(246), }, [47] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(47), [sym_doc_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2233), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2221), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -21798,76 +21773,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [48] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(48), [sym_doc_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2239), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2228), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -21980,76 +21955,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [49] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(49), [sym_doc_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(591), - [sym_expr_stmt] = STATE(591), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(591), - [sym_return_stmt] = STATE(591), - [sym_continue_stmt] = STATE(591), - [sym_break_stmt] = STATE(591), - [sym_defer_stmt] = STATE(591), - [sym_assert_stmt] = STATE(591), - [sym_declaration_stmt] = STATE(591), - [sym_nextcase_stmt] = STATE(591), - [sym_switch_stmt] = STATE(591), - [sym_if_stmt] = STATE(591), - [sym_for_stmt] = STATE(591), - [sym_foreach_stmt] = STATE(591), - [sym_while_stmt] = STATE(591), - [sym_do_stmt] = STATE(591), - [sym_asm_block_stmt] = STATE(591), - [sym_ct_stmt_body] = STATE(1984), - [sym_ct_assert_stmt] = STATE(591), - [sym_ct_echo_stmt] = STATE(591), - [sym_ct_if_stmt] = STATE(591), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(591), - [sym_ct_for_stmt] = STATE(591), - [sym_ct_foreach_stmt] = STATE(591), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_compound_stmt_repeat1] = STATE(79), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(1975), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22070,38 +22045,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARfor] = ACTIONS(701), [anon_sym_DOLLARendfor] = ACTIONS(797), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -22162,76 +22137,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [50] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(50), [sym_doc_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(651), - [sym_expr_stmt] = STATE(651), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(651), - [sym_return_stmt] = STATE(651), - [sym_continue_stmt] = STATE(651), - [sym_break_stmt] = STATE(651), - [sym_defer_stmt] = STATE(651), - [sym_assert_stmt] = STATE(651), - [sym_declaration_stmt] = STATE(651), - [sym_nextcase_stmt] = STATE(651), - [sym_switch_stmt] = STATE(651), - [sym_if_stmt] = STATE(651), - [sym_for_stmt] = STATE(651), - [sym_foreach_stmt] = STATE(651), - [sym_while_stmt] = STATE(651), - [sym_do_stmt] = STATE(651), - [sym_asm_block_stmt] = STATE(651), - [sym_ct_stmt_body] = STATE(1985), - [sym_ct_assert_stmt] = STATE(651), - [sym_ct_echo_stmt] = STATE(651), - [sym_ct_if_stmt] = STATE(651), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(651), - [sym_ct_for_stmt] = STATE(651), - [sym_ct_foreach_stmt] = STATE(651), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_compound_stmt_repeat1] = STATE(90), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(1976), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22252,37 +22227,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARendforeach] = ACTIONS(799), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), @@ -22344,76 +22319,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [51] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(51), [sym_doc_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(1996), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(1987), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22526,76 +22501,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [52] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(52), [sym_doc_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2001), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(1992), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22708,76 +22683,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [53] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(53), [sym_doc_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(591), - [sym_expr_stmt] = STATE(591), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(591), - [sym_return_stmt] = STATE(591), - [sym_continue_stmt] = STATE(591), - [sym_break_stmt] = STATE(591), - [sym_defer_stmt] = STATE(591), - [sym_assert_stmt] = STATE(591), - [sym_declaration_stmt] = STATE(591), - [sym_nextcase_stmt] = STATE(591), - [sym_switch_stmt] = STATE(591), - [sym_if_stmt] = STATE(591), - [sym_for_stmt] = STATE(591), - [sym_foreach_stmt] = STATE(591), - [sym_while_stmt] = STATE(591), - [sym_do_stmt] = STATE(591), - [sym_asm_block_stmt] = STATE(591), - [sym_ct_stmt_body] = STATE(2059), - [sym_ct_assert_stmt] = STATE(591), - [sym_ct_echo_stmt] = STATE(591), - [sym_ct_if_stmt] = STATE(591), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(591), - [sym_ct_for_stmt] = STATE(591), - [sym_ct_foreach_stmt] = STATE(591), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_compound_stmt_repeat1] = STATE(79), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(46), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22798,38 +22772,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_SEMI] = ACTIONS(407), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARendif] = ACTIONS(479), + [anon_sym_DOLLARelse] = ACTIONS(479), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARendfor] = ACTIONS(805), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -22890,76 +22865,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [54] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(54), [sym_doc_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(651), - [sym_expr_stmt] = STATE(651), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(651), - [sym_return_stmt] = STATE(651), - [sym_continue_stmt] = STATE(651), - [sym_break_stmt] = STATE(651), - [sym_defer_stmt] = STATE(651), - [sym_assert_stmt] = STATE(651), - [sym_declaration_stmt] = STATE(651), - [sym_nextcase_stmt] = STATE(651), - [sym_switch_stmt] = STATE(651), - [sym_if_stmt] = STATE(651), - [sym_for_stmt] = STATE(651), - [sym_foreach_stmt] = STATE(651), - [sym_while_stmt] = STATE(651), - [sym_do_stmt] = STATE(651), - [sym_asm_block_stmt] = STATE(651), - [sym_ct_stmt_body] = STATE(2060), - [sym_ct_assert_stmt] = STATE(651), - [sym_ct_echo_stmt] = STATE(651), - [sym_ct_if_stmt] = STATE(651), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(651), - [sym_ct_for_stmt] = STATE(651), - [sym_ct_foreach_stmt] = STATE(651), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_compound_stmt_repeat1] = STATE(90), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2050), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23010,8 +22985,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), - [anon_sym_DOLLARendforeach] = ACTIONS(807), + [anon_sym_DOLLARendfor] = ACTIONS(805), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -23072,75 +23047,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [55] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(55), [sym_doc_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(527), - [sym_expr_stmt] = STATE(527), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(527), - [sym_return_stmt] = STATE(527), - [sym_continue_stmt] = STATE(527), - [sym_break_stmt] = STATE(527), - [sym_defer_stmt] = STATE(527), - [sym_assert_stmt] = STATE(527), - [sym_declaration_stmt] = STATE(527), - [sym_nextcase_stmt] = STATE(527), - [sym_switch_stmt] = STATE(527), - [sym_if_stmt] = STATE(527), - [sym_for_stmt] = STATE(527), - [sym_foreach_stmt] = STATE(527), - [sym_while_stmt] = STATE(527), - [sym_do_stmt] = STATE(527), - [sym_asm_block_stmt] = STATE(527), - [sym_ct_assert_stmt] = STATE(527), - [sym_ct_echo_stmt] = STATE(527), - [sym_ct_if_stmt] = STATE(527), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(527), - [sym_ct_for_stmt] = STATE(527), - [sym_ct_foreach_stmt] = STATE(527), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_compound_stmt_repeat1] = STATE(46), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2051), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23161,39 +23137,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_const] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_break] = ACTIONS(417), - [anon_sym_defer] = ACTIONS(419), - [anon_sym_assert] = ACTIONS(421), - [anon_sym_nextcase] = ACTIONS(423), - [anon_sym_switch] = ACTIONS(425), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_foreach] = ACTIONS(431), - [anon_sym_foreach_r] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(437), - [anon_sym_DOLLARassert] = ACTIONS(439), - [anon_sym_DOLLARerror] = ACTIONS(441), - [anon_sym_DOLLARecho] = ACTIONS(443), - [anon_sym_DOLLARif] = ACTIONS(445), - [anon_sym_DOLLARendif] = ACTIONS(479), - [anon_sym_DOLLARelse] = ACTIONS(479), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(451), - [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(807), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -23254,76 +23229,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [56] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(56), [sym_doc_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2071), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2062), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23436,76 +23411,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [57] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(57), [sym_doc_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_stmt_body] = STATE(2160), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), - [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(73), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2199), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23526,38 +23501,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_const] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_break] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(625), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_nextcase] = ACTIONS(629), - [anon_sym_switch] = ACTIONS(631), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_foreach] = ACTIONS(637), - [anon_sym_foreach_r] = ACTIONS(637), - [anon_sym_while] = ACTIONS(639), - [anon_sym_do] = ACTIONS(641), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(643), - [anon_sym_DOLLARassert] = ACTIONS(645), - [anon_sym_DOLLARerror] = ACTIONS(647), - [anon_sym_DOLLARecho] = ACTIONS(649), - [anon_sym_DOLLARif] = ACTIONS(651), - [anon_sym_DOLLARendif] = ACTIONS(811), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(655), - [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARendfor] = ACTIONS(811), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -23618,75 +23593,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [58] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(58), [sym_doc_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(462), + [sym_expr_stmt] = STATE(749), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(749), + [sym_return_stmt] = STATE(749), + [sym_continue_stmt] = STATE(749), + [sym_break_stmt] = STATE(749), + [sym_defer_stmt] = STATE(749), + [sym_assert_stmt] = STATE(749), + [sym_declaration_stmt] = STATE(749), + [sym_nextcase_stmt] = STATE(749), + [sym_switch_body] = STATE(462), + [sym_switch_stmt] = STATE(749), + [sym__if_body] = STATE(750), + [sym_if_stmt] = STATE(749), + [sym_for_stmt] = STATE(749), + [sym_foreach_stmt] = STATE(749), + [sym_while_stmt] = STATE(749), + [sym_do_stmt] = STATE(749), + [sym_asm_block_stmt] = STATE(749), + [sym_ct_assert_stmt] = STATE(749), + [sym_ct_echo_stmt] = STATE(749), + [sym_ct_if_stmt] = STATE(749), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(749), + [sym_ct_for_stmt] = STATE(749), + [sym_ct_foreach_stmt] = STATE(749), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23707,38 +23683,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(813), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_const] = ACTIONS(617), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -23799,76 +23774,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [59] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(59), [sym_doc_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(425), - [sym_expr_stmt] = STATE(681), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(681), - [sym_return_stmt] = STATE(681), - [sym_continue_stmt] = STATE(681), - [sym_break_stmt] = STATE(681), - [sym_defer_stmt] = STATE(681), - [sym_assert_stmt] = STATE(681), - [sym_declaration_stmt] = STATE(681), - [sym_nextcase_stmt] = STATE(681), - [sym_switch_body] = STATE(425), - [sym_switch_stmt] = STATE(681), - [sym__if_body] = STATE(698), - [sym_if_stmt] = STATE(681), - [sym_for_stmt] = STATE(681), - [sym_foreach_stmt] = STATE(681), - [sym_while_stmt] = STATE(681), - [sym_do_stmt] = STATE(681), - [sym_asm_block_stmt] = STATE(681), - [sym_ct_assert_stmt] = STATE(681), - [sym_ct_echo_stmt] = STATE(681), - [sym_ct_if_stmt] = STATE(681), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(681), - [sym_ct_for_stmt] = STATE(681), - [sym_ct_foreach_stmt] = STATE(681), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(61), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23889,37 +23863,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -23980,75 +23955,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [60] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(60), [sym_doc_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(69), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24161,256 +24136,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [61] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(61), [sym_doc_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(558), - [sym_expr_stmt] = STATE(558), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(558), - [sym_return_stmt] = STATE(558), - [sym_continue_stmt] = STATE(558), - [sym_break_stmt] = STATE(558), - [sym_defer_stmt] = STATE(558), - [sym_assert_stmt] = STATE(558), - [sym_declaration_stmt] = STATE(558), - [sym_nextcase_stmt] = STATE(558), - [sym_switch_stmt] = STATE(558), - [sym_if_stmt] = STATE(558), - [sym_for_stmt] = STATE(558), - [sym_foreach_stmt] = STATE(558), - [sym_while_stmt] = STATE(558), - [sym_do_stmt] = STATE(558), - [sym_asm_block_stmt] = STATE(558), - [sym_ct_assert_stmt] = STATE(558), - [sym_ct_echo_stmt] = STATE(558), - [sym_ct_if_stmt] = STATE(558), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(558), - [sym_ct_for_stmt] = STATE(558), - [sym_ct_foreach_stmt] = STATE(558), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_const] = ACTIONS(411), - [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_break] = ACTIONS(417), - [anon_sym_defer] = ACTIONS(419), - [anon_sym_try] = ACTIONS(823), - [anon_sym_catch] = ACTIONS(823), - [anon_sym_assert] = ACTIONS(421), - [anon_sym_nextcase] = ACTIONS(423), - [anon_sym_switch] = ACTIONS(425), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_foreach] = ACTIONS(431), - [anon_sym_foreach_r] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_int] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(437), - [anon_sym_DOLLARassert] = ACTIONS(439), - [anon_sym_DOLLARerror] = ACTIONS(441), - [anon_sym_DOLLARecho] = ACTIONS(443), - [anon_sym_DOLLARif] = ACTIONS(445), - [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(451), - [anon_sym_DOLLARforeach] = ACTIONS(453), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(137), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(137), - [anon_sym_bool] = ACTIONS(137), - [anon_sym_char] = ACTIONS(137), - [anon_sym_ichar] = ACTIONS(137), - [anon_sym_short] = ACTIONS(137), - [anon_sym_ushort] = ACTIONS(137), - [anon_sym_uint] = ACTIONS(137), - [anon_sym_long] = ACTIONS(137), - [anon_sym_ulong] = ACTIONS(137), - [anon_sym_int128] = ACTIONS(137), - [anon_sym_uint128] = ACTIONS(137), - [anon_sym_float] = ACTIONS(137), - [anon_sym_double] = ACTIONS(137), - [anon_sym_float16] = ACTIONS(137), - [anon_sym_bfloat16] = ACTIONS(137), - [anon_sym_float128] = ACTIONS(137), - [anon_sym_iptr] = ACTIONS(137), - [anon_sym_uptr] = ACTIONS(137), - [anon_sym_isz] = ACTIONS(137), - [anon_sym_usz] = ACTIONS(137), - [anon_sym_anyfault] = ACTIONS(137), - [anon_sym_any] = ACTIONS(137), - [anon_sym_DOLLARtypeof] = ACTIONS(171), - [anon_sym_DOLLARtypefrom] = ACTIONS(171), - [anon_sym_DOLLARevaltype] = ACTIONS(171), - [anon_sym_DOLLARvatype] = ACTIONS(173), - [sym_real_literal] = ACTIONS(63), - }, - [62] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(62), - [sym_doc_comment] = STATE(62), - [sym_block_comment] = STATE(62), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(83), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24434,7 +24228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(821), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -24522,77 +24316,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [63] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(63), - [sym_doc_comment] = STATE(63), - [sym_block_comment] = STATE(63), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(341), - [sym_expr_stmt] = STATE(351), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(351), - [sym_return_stmt] = STATE(351), - [sym_continue_stmt] = STATE(351), - [sym_break_stmt] = STATE(351), - [sym_defer_stmt] = STATE(351), - [sym_assert_stmt] = STATE(351), - [sym_declaration_stmt] = STATE(351), - [sym_nextcase_stmt] = STATE(351), - [sym_switch_body] = STATE(341), - [sym_switch_stmt] = STATE(351), - [sym__if_body] = STATE(378), - [sym_if_stmt] = STATE(351), - [sym_for_stmt] = STATE(351), - [sym_foreach_stmt] = STATE(351), - [sym_while_stmt] = STATE(351), - [sym_do_stmt] = STATE(351), - [sym_asm_block_stmt] = STATE(351), - [sym_ct_assert_stmt] = STATE(351), - [sym_ct_echo_stmt] = STATE(351), - [sym_ct_if_stmt] = STATE(351), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(351), - [sym_ct_for_stmt] = STATE(351), - [sym_ct_foreach_stmt] = STATE(351), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [62] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(62), + [sym_doc_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(338), + [sym_expr_stmt] = STATE(348), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(348), + [sym_return_stmt] = STATE(348), + [sym_continue_stmt] = STATE(348), + [sym_break_stmt] = STATE(348), + [sym_defer_stmt] = STATE(348), + [sym_assert_stmt] = STATE(348), + [sym_declaration_stmt] = STATE(348), + [sym_nextcase_stmt] = STATE(348), + [sym_switch_body] = STATE(338), + [sym_switch_stmt] = STATE(348), + [sym__if_body] = STATE(367), + [sym_if_stmt] = STATE(348), + [sym_for_stmt] = STATE(348), + [sym_foreach_stmt] = STATE(348), + [sym_while_stmt] = STATE(348), + [sym_do_stmt] = STATE(348), + [sym_asm_block_stmt] = STATE(348), + [sym_ct_assert_stmt] = STATE(348), + [sym_ct_echo_stmt] = STATE(348), + [sym_ct_if_stmt] = STATE(348), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(348), + [sym_ct_for_stmt] = STATE(348), + [sym_ct_foreach_stmt] = STATE(348), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24613,9 +24407,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(823), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(825), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -24703,75 +24497,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [64] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(64), - [sym_doc_comment] = STATE(64), - [sym_block_comment] = STATE(64), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(662), - [sym_expr_stmt] = STATE(662), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(662), - [sym_return_stmt] = STATE(662), - [sym_continue_stmt] = STATE(662), - [sym_break_stmt] = STATE(662), - [sym_defer_stmt] = STATE(662), - [sym_assert_stmt] = STATE(662), - [sym_declaration_stmt] = STATE(662), - [sym_nextcase_stmt] = STATE(662), - [sym_switch_stmt] = STATE(662), - [sym_if_stmt] = STATE(662), - [sym_for_stmt] = STATE(662), - [sym_foreach_stmt] = STATE(662), - [sym_while_stmt] = STATE(662), - [sym_do_stmt] = STATE(662), - [sym_asm_block_stmt] = STATE(662), - [sym_ct_assert_stmt] = STATE(662), - [sym_ct_echo_stmt] = STATE(662), - [sym_ct_if_stmt] = STATE(662), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(662), - [sym_ct_for_stmt] = STATE(662), - [sym_ct_foreach_stmt] = STATE(662), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [63] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(63), + [sym_doc_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(657), + [sym_expr_stmt] = STATE(657), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(657), + [sym_return_stmt] = STATE(657), + [sym_continue_stmt] = STATE(657), + [sym_break_stmt] = STATE(657), + [sym_defer_stmt] = STATE(657), + [sym_assert_stmt] = STATE(657), + [sym_declaration_stmt] = STATE(657), + [sym_nextcase_stmt] = STATE(657), + [sym_switch_stmt] = STATE(657), + [sym_if_stmt] = STATE(657), + [sym_for_stmt] = STATE(657), + [sym_foreach_stmt] = STATE(657), + [sym_while_stmt] = STATE(657), + [sym_do_stmt] = STATE(657), + [sym_asm_block_stmt] = STATE(657), + [sym_ct_assert_stmt] = STATE(657), + [sym_ct_echo_stmt] = STATE(657), + [sym_ct_if_stmt] = STATE(657), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(657), + [sym_ct_for_stmt] = STATE(657), + [sym_ct_foreach_stmt] = STATE(657), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24792,39 +24586,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(827), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_try] = ACTIONS(833), - [anon_sym_catch] = ACTIONS(833), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_try] = ACTIONS(829), + [anon_sym_catch] = ACTIONS(829), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -24884,76 +24678,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [65] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(65), - [sym_doc_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(66), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [64] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(64), + [sym_doc_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(65), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24977,7 +24771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(831), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -25065,76 +24859,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [66] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(66), - [sym_doc_comment] = STATE(66), - [sym_block_comment] = STATE(66), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [65] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(65), + [sym_doc_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -25158,7 +24952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(833), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -25246,77 +25040,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [67] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(67), - [sym_doc_comment] = STATE(67), - [sym_block_comment] = STATE(67), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(425), - [sym_expr_stmt] = STATE(681), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(681), - [sym_return_stmt] = STATE(681), - [sym_continue_stmt] = STATE(681), - [sym_break_stmt] = STATE(681), - [sym_defer_stmt] = STATE(681), - [sym_assert_stmt] = STATE(681), - [sym_declaration_stmt] = STATE(681), - [sym_nextcase_stmt] = STATE(681), - [sym_switch_body] = STATE(425), - [sym_switch_stmt] = STATE(681), - [sym__if_body] = STATE(682), - [sym_if_stmt] = STATE(681), - [sym_for_stmt] = STATE(681), - [sym_foreach_stmt] = STATE(681), - [sym_while_stmt] = STATE(681), - [sym_do_stmt] = STATE(681), - [sym_asm_block_stmt] = STATE(681), - [sym_ct_assert_stmt] = STATE(681), - [sym_ct_echo_stmt] = STATE(681), - [sym_ct_if_stmt] = STATE(681), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(681), - [sym_ct_for_stmt] = STATE(681), - [sym_ct_foreach_stmt] = STATE(681), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [66] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(66), + [sym_doc_comment] = STATE(66), + [sym_block_comment] = STATE(66), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(448), + [sym_expr_stmt] = STATE(676), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(676), + [sym_return_stmt] = STATE(676), + [sym_continue_stmt] = STATE(676), + [sym_break_stmt] = STATE(676), + [sym_defer_stmt] = STATE(676), + [sym_assert_stmt] = STATE(676), + [sym_declaration_stmt] = STATE(676), + [sym_nextcase_stmt] = STATE(676), + [sym_switch_body] = STATE(448), + [sym_switch_stmt] = STATE(676), + [sym__if_body] = STATE(677), + [sym_if_stmt] = STATE(676), + [sym_for_stmt] = STATE(676), + [sym_foreach_stmt] = STATE(676), + [sym_while_stmt] = STATE(676), + [sym_do_stmt] = STATE(676), + [sym_asm_block_stmt] = STATE(676), + [sym_ct_assert_stmt] = STATE(676), + [sym_ct_echo_stmt] = STATE(676), + [sym_ct_if_stmt] = STATE(676), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(676), + [sym_ct_for_stmt] = STATE(676), + [sym_ct_foreach_stmt] = STATE(676), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -25337,37 +25131,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(835), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(817), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -25427,76 +25221,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [68] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(68), - [sym_doc_comment] = STATE(68), - [sym_block_comment] = STATE(68), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), + [67] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(67), + [sym_doc_comment] = STATE(67), + [sym_block_comment] = STATE(67), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(416), + [sym_expr_stmt] = STATE(546), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(546), + [sym_return_stmt] = STATE(546), + [sym_continue_stmt] = STATE(546), + [sym_break_stmt] = STATE(546), + [sym_defer_stmt] = STATE(546), + [sym_assert_stmt] = STATE(546), + [sym_declaration_stmt] = STATE(546), + [sym_nextcase_stmt] = STATE(546), + [sym_switch_body] = STATE(416), + [sym_switch_stmt] = STATE(546), + [sym__if_body] = STATE(548), + [sym_if_stmt] = STATE(546), + [sym_for_stmt] = STATE(546), + [sym_foreach_stmt] = STATE(546), + [sym_while_stmt] = STATE(546), + [sym_do_stmt] = STATE(546), + [sym_asm_block_stmt] = STATE(546), + [sym_ct_assert_stmt] = STATE(546), + [sym_ct_echo_stmt] = STATE(546), + [sym_ct_if_stmt] = STATE(546), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(546), + [sym_ct_for_stmt] = STATE(546), + [sym_ct_foreach_stmt] = STATE(546), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(95), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -25517,37 +25312,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(839), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_const] = ACTIONS(411), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -25579,7 +25374,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(137), [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_PIPE_RBRACE] = ACTIONS(839), [anon_sym_void] = ACTIONS(137), [anon_sym_bool] = ACTIONS(137), [anon_sym_char] = ACTIONS(137), @@ -25608,76 +25402,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [69] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(69), - [sym_doc_comment] = STATE(69), - [sym_block_comment] = STATE(69), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [68] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(68), + [sym_doc_comment] = STATE(68), + [sym_block_comment] = STATE(68), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(94), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -25701,7 +25495,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(841), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -25761,6 +25554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(137), [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_PIPE_RBRACE] = ACTIONS(843), [anon_sym_void] = ACTIONS(137), [anon_sym_bool] = ACTIONS(137), [anon_sym_char] = ACTIONS(137), @@ -25789,256 +25583,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [70] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(70), - [sym_doc_comment] = STATE(70), - [sym_block_comment] = STATE(70), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(379), - [sym_expr_stmt] = STATE(556), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(556), - [sym_return_stmt] = STATE(556), - [sym_continue_stmt] = STATE(556), - [sym_break_stmt] = STATE(556), - [sym_defer_stmt] = STATE(556), - [sym_assert_stmt] = STATE(556), - [sym_declaration_stmt] = STATE(556), - [sym_nextcase_stmt] = STATE(556), - [sym_switch_body] = STATE(379), - [sym_switch_stmt] = STATE(556), - [sym__if_body] = STATE(561), - [sym_if_stmt] = STATE(556), - [sym_for_stmt] = STATE(556), - [sym_foreach_stmt] = STATE(556), - [sym_while_stmt] = STATE(556), - [sym_do_stmt] = STATE(556), - [sym_asm_block_stmt] = STATE(556), - [sym_ct_assert_stmt] = STATE(556), - [sym_ct_echo_stmt] = STATE(556), - [sym_ct_if_stmt] = STATE(556), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(556), - [sym_ct_for_stmt] = STATE(556), - [sym_ct_foreach_stmt] = STATE(556), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_const] = ACTIONS(411), - [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_break] = ACTIONS(417), - [anon_sym_defer] = ACTIONS(419), - [anon_sym_assert] = ACTIONS(421), - [anon_sym_nextcase] = ACTIONS(423), - [anon_sym_switch] = ACTIONS(425), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_foreach] = ACTIONS(431), - [anon_sym_foreach_r] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), - [anon_sym_int] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(437), - [anon_sym_DOLLARassert] = ACTIONS(439), - [anon_sym_DOLLARerror] = ACTIONS(441), - [anon_sym_DOLLARecho] = ACTIONS(443), - [anon_sym_DOLLARif] = ACTIONS(445), - [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(451), - [anon_sym_DOLLARforeach] = ACTIONS(453), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(137), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(137), - [anon_sym_bool] = ACTIONS(137), - [anon_sym_char] = ACTIONS(137), - [anon_sym_ichar] = ACTIONS(137), - [anon_sym_short] = ACTIONS(137), - [anon_sym_ushort] = ACTIONS(137), - [anon_sym_uint] = ACTIONS(137), - [anon_sym_long] = ACTIONS(137), - [anon_sym_ulong] = ACTIONS(137), - [anon_sym_int128] = ACTIONS(137), - [anon_sym_uint128] = ACTIONS(137), - [anon_sym_float] = ACTIONS(137), - [anon_sym_double] = ACTIONS(137), - [anon_sym_float16] = ACTIONS(137), - [anon_sym_bfloat16] = ACTIONS(137), - [anon_sym_float128] = ACTIONS(137), - [anon_sym_iptr] = ACTIONS(137), - [anon_sym_uptr] = ACTIONS(137), - [anon_sym_isz] = ACTIONS(137), - [anon_sym_usz] = ACTIONS(137), - [anon_sym_anyfault] = ACTIONS(137), - [anon_sym_any] = ACTIONS(137), - [anon_sym_DOLLARtypeof] = ACTIONS(171), - [anon_sym_DOLLARtypefrom] = ACTIONS(171), - [anon_sym_DOLLARevaltype] = ACTIONS(171), - [anon_sym_DOLLARvatype] = ACTIONS(173), - [sym_real_literal] = ACTIONS(63), - }, - [71] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(71), - [sym_doc_comment] = STATE(71), - [sym_block_comment] = STATE(71), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(420), - [sym_expr_stmt] = STATE(420), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(420), - [sym_return_stmt] = STATE(420), - [sym_continue_stmt] = STATE(420), - [sym_break_stmt] = STATE(420), - [sym_defer_stmt] = STATE(420), - [sym_assert_stmt] = STATE(420), - [sym_declaration_stmt] = STATE(420), - [sym_nextcase_stmt] = STATE(420), - [sym_switch_stmt] = STATE(420), - [sym_if_stmt] = STATE(420), - [sym_for_stmt] = STATE(420), - [sym_foreach_stmt] = STATE(420), - [sym_while_stmt] = STATE(420), - [sym_do_stmt] = STATE(420), - [sym_asm_block_stmt] = STATE(420), - [sym_ct_assert_stmt] = STATE(420), - [sym_ct_echo_stmt] = STATE(420), - [sym_ct_if_stmt] = STATE(420), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(420), - [sym_ct_for_stmt] = STATE(420), - [sym_ct_foreach_stmt] = STATE(420), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [69] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(69), + [sym_doc_comment] = STATE(69), + [sym_block_comment] = STATE(69), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(369), + [sym_expr_stmt] = STATE(369), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(369), + [sym_return_stmt] = STATE(369), + [sym_continue_stmt] = STATE(369), + [sym_break_stmt] = STATE(369), + [sym_defer_stmt] = STATE(369), + [sym_assert_stmt] = STATE(369), + [sym_declaration_stmt] = STATE(369), + [sym_nextcase_stmt] = STATE(369), + [sym_switch_stmt] = STATE(369), + [sym_if_stmt] = STATE(369), + [sym_for_stmt] = STATE(369), + [sym_foreach_stmt] = STATE(369), + [sym_while_stmt] = STATE(369), + [sym_do_stmt] = STATE(369), + [sym_asm_block_stmt] = STATE(369), + [sym_ct_assert_stmt] = STATE(369), + [sym_ct_echo_stmt] = STATE(369), + [sym_ct_if_stmt] = STATE(369), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(369), + [sym_ct_for_stmt] = STATE(369), + [sym_ct_foreach_stmt] = STATE(369), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26059,7 +25672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(845), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), [anon_sym_const] = ACTIONS(103), @@ -26068,8 +25681,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(109), [anon_sym_break] = ACTIONS(111), [anon_sym_defer] = ACTIONS(113), - [anon_sym_try] = ACTIONS(849), - [anon_sym_catch] = ACTIONS(849), + [anon_sym_try] = ACTIONS(847), + [anon_sym_catch] = ACTIONS(847), [anon_sym_assert] = ACTIONS(115), [anon_sym_nextcase] = ACTIONS(121), [anon_sym_switch] = ACTIONS(123), @@ -26151,76 +25764,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [72] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(72), - [sym_doc_comment] = STATE(72), - [sym_block_comment] = STATE(72), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [70] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(70), + [sym_doc_comment] = STATE(70), + [sym_block_comment] = STATE(70), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(70), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_const] = ACTIONS(855), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_break] = ACTIONS(864), + [anon_sym_defer] = ACTIONS(867), + [anon_sym_assert] = ACTIONS(870), + [anon_sym_nextcase] = ACTIONS(873), + [anon_sym_switch] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(879), + [anon_sym_for] = ACTIONS(882), + [anon_sym_foreach] = ACTIONS(885), + [anon_sym_foreach_r] = ACTIONS(885), + [anon_sym_while] = ACTIONS(888), + [anon_sym_do] = ACTIONS(891), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(894), + [anon_sym_DOLLARassert] = ACTIONS(897), + [anon_sym_DOLLARerror] = ACTIONS(900), + [anon_sym_DOLLARecho] = ACTIONS(903), + [anon_sym_DOLLARif] = ACTIONS(906), + [anon_sym_DOLLARendif] = ACTIONS(320), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(909), + [anon_sym_DOLLARforeach] = ACTIONS(912), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLAReval] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), + [anon_sym_DOLLARsizeof] = ACTIONS(382), + [anon_sym_DOLLARstringify] = ACTIONS(382), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), + }, + [71] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(71), + [sym_doc_comment] = STATE(71), + [sym_block_comment] = STATE(71), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26244,7 +26038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_RBRACE] = ACTIONS(915), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -26332,76 +26126,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [73] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(73), - [sym_doc_comment] = STATE(73), - [sym_block_comment] = STATE(73), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), + [72] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(72), + [sym_doc_comment] = STATE(72), + [sym_block_comment] = STATE(72), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(462), + [sym_expr_stmt] = STATE(749), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(749), + [sym_return_stmt] = STATE(749), + [sym_continue_stmt] = STATE(749), + [sym_break_stmt] = STATE(749), + [sym_defer_stmt] = STATE(749), + [sym_assert_stmt] = STATE(749), + [sym_declaration_stmt] = STATE(749), + [sym_nextcase_stmt] = STATE(749), + [sym_switch_body] = STATE(462), + [sym_switch_stmt] = STATE(749), + [sym__if_body] = STATE(767), + [sym_if_stmt] = STATE(749), + [sym_for_stmt] = STATE(749), + [sym_foreach_stmt] = STATE(749), + [sym_while_stmt] = STATE(749), + [sym_do_stmt] = STATE(749), + [sym_asm_block_stmt] = STATE(749), + [sym_ct_assert_stmt] = STATE(749), + [sym_ct_echo_stmt] = STATE(749), + [sym_ct_if_stmt] = STATE(749), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(749), + [sym_ct_for_stmt] = STATE(749), + [sym_ct_foreach_stmt] = STATE(749), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(80), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26422,9 +26217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(815), [anon_sym_const] = ACTIONS(617), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(619), @@ -26450,7 +26245,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(647), [anon_sym_DOLLARecho] = ACTIONS(649), [anon_sym_DOLLARif] = ACTIONS(651), - [anon_sym_DOLLARendif] = ACTIONS(479), [anon_sym_DOLLARswitch] = ACTIONS(149), [anon_sym_DOLLARfor] = ACTIONS(655), [anon_sym_DOLLARforeach] = ACTIONS(657), @@ -26513,77 +26307,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [74] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(74), - [sym_doc_comment] = STATE(74), - [sym_block_comment] = STATE(74), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(344), - [sym_expr_stmt] = STATE(446), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(446), - [sym_return_stmt] = STATE(446), - [sym_continue_stmt] = STATE(446), - [sym_break_stmt] = STATE(446), - [sym_defer_stmt] = STATE(446), - [sym_assert_stmt] = STATE(446), - [sym_declaration_stmt] = STATE(446), - [sym_nextcase_stmt] = STATE(446), - [sym_switch_body] = STATE(344), - [sym_switch_stmt] = STATE(446), - [sym__if_body] = STATE(462), - [sym_if_stmt] = STATE(446), - [sym_for_stmt] = STATE(446), - [sym_foreach_stmt] = STATE(446), - [sym_while_stmt] = STATE(446), - [sym_do_stmt] = STATE(446), - [sym_asm_block_stmt] = STATE(446), - [sym_ct_assert_stmt] = STATE(446), - [sym_ct_echo_stmt] = STATE(446), - [sym_ct_if_stmt] = STATE(446), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(446), - [sym_ct_for_stmt] = STATE(446), - [sym_ct_foreach_stmt] = STATE(446), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [73] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(73), + [sym_doc_comment] = STATE(73), + [sym_block_comment] = STATE(73), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(416), + [sym_expr_stmt] = STATE(546), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(546), + [sym_return_stmt] = STATE(546), + [sym_continue_stmt] = STATE(546), + [sym_break_stmt] = STATE(546), + [sym_defer_stmt] = STATE(546), + [sym_assert_stmt] = STATE(546), + [sym_declaration_stmt] = STATE(546), + [sym_nextcase_stmt] = STATE(546), + [sym_switch_body] = STATE(416), + [sym_switch_stmt] = STATE(546), + [sym__if_body] = STATE(573), + [sym_if_stmt] = STATE(546), + [sym_for_stmt] = STATE(546), + [sym_foreach_stmt] = STATE(546), + [sym_while_stmt] = STATE(546), + [sym_do_stmt] = STATE(546), + [sym_asm_block_stmt] = STATE(546), + [sym_ct_assert_stmt] = STATE(546), + [sym_ct_echo_stmt] = STATE(546), + [sym_ct_if_stmt] = STATE(546), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(546), + [sym_ct_for_stmt] = STATE(546), + [sym_ct_foreach_stmt] = STATE(546), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26604,37 +26398,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(839), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_const] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_const] = ACTIONS(411), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_defer] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_nextcase] = ACTIONS(213), - [anon_sym_switch] = ACTIONS(215), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_foreach] = ACTIONS(221), - [anon_sym_foreach_r] = ACTIONS(221), - [anon_sym_while] = ACTIONS(223), - [anon_sym_do] = ACTIONS(225), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(227), - [anon_sym_DOLLARassert] = ACTIONS(229), - [anon_sym_DOLLARerror] = ACTIONS(231), - [anon_sym_DOLLARecho] = ACTIONS(233), - [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(239), - [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -26694,75 +26488,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [75] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(75), - [sym_doc_comment] = STATE(75), - [sym_block_comment] = STATE(75), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(734), - [sym_expr_stmt] = STATE(734), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(734), - [sym_return_stmt] = STATE(734), - [sym_continue_stmt] = STATE(734), - [sym_break_stmt] = STATE(734), - [sym_defer_stmt] = STATE(734), - [sym_assert_stmt] = STATE(734), - [sym_declaration_stmt] = STATE(734), - [sym_nextcase_stmt] = STATE(734), - [sym_switch_stmt] = STATE(734), - [sym_if_stmt] = STATE(734), - [sym_for_stmt] = STATE(734), - [sym_foreach_stmt] = STATE(734), - [sym_while_stmt] = STATE(734), - [sym_do_stmt] = STATE(734), - [sym_asm_block_stmt] = STATE(734), - [sym_ct_assert_stmt] = STATE(734), - [sym_ct_echo_stmt] = STATE(734), - [sym_ct_if_stmt] = STATE(734), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(734), - [sym_ct_for_stmt] = STATE(734), - [sym_ct_foreach_stmt] = STATE(734), - [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [74] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(74), + [sym_doc_comment] = STATE(74), + [sym_block_comment] = STATE(74), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(520), + [sym_expr_stmt] = STATE(520), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(520), + [sym_return_stmt] = STATE(520), + [sym_continue_stmt] = STATE(520), + [sym_break_stmt] = STATE(520), + [sym_defer_stmt] = STATE(520), + [sym_assert_stmt] = STATE(520), + [sym_declaration_stmt] = STATE(520), + [sym_nextcase_stmt] = STATE(520), + [sym_switch_stmt] = STATE(520), + [sym_if_stmt] = STATE(520), + [sym_for_stmt] = STATE(520), + [sym_foreach_stmt] = STATE(520), + [sym_while_stmt] = STATE(520), + [sym_do_stmt] = STATE(520), + [sym_asm_block_stmt] = STATE(520), + [sym_ct_assert_stmt] = STATE(520), + [sym_ct_echo_stmt] = STATE(520), + [sym_ct_if_stmt] = STATE(520), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(520), + [sym_ct_for_stmt] = STATE(520), + [sym_ct_foreach_stmt] = STATE(520), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26783,39 +26577,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(917), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_const] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_break] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(625), - [anon_sym_try] = ACTIONS(859), - [anon_sym_catch] = ACTIONS(859), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_nextcase] = ACTIONS(629), - [anon_sym_switch] = ACTIONS(631), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_try] = ACTIONS(919), + [anon_sym_catch] = ACTIONS(919), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_foreach] = ACTIONS(637), - [anon_sym_foreach_r] = ACTIONS(637), - [anon_sym_while] = ACTIONS(639), - [anon_sym_do] = ACTIONS(641), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(643), - [anon_sym_DOLLARassert] = ACTIONS(645), - [anon_sym_DOLLARerror] = ACTIONS(647), - [anon_sym_DOLLARecho] = ACTIONS(649), - [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(655), - [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -26875,76 +26669,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [76] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(76), - [sym_doc_comment] = STATE(76), - [sym_block_comment] = STATE(76), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(58), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [75] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(75), + [sym_doc_comment] = STATE(75), + [sym_block_comment] = STATE(75), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(76), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26968,7 +26762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(921), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -27056,258 +26850,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [77] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(77), - [sym_doc_comment] = STATE(77), - [sym_block_comment] = STATE(77), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(651), - [sym_expr_stmt] = STATE(651), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(651), - [sym_return_stmt] = STATE(651), - [sym_continue_stmt] = STATE(651), - [sym_break_stmt] = STATE(651), - [sym_defer_stmt] = STATE(651), - [sym_assert_stmt] = STATE(651), - [sym_declaration_stmt] = STATE(651), - [sym_nextcase_stmt] = STATE(651), - [sym_switch_stmt] = STATE(651), - [sym_if_stmt] = STATE(651), - [sym_for_stmt] = STATE(651), - [sym_foreach_stmt] = STATE(651), - [sym_while_stmt] = STATE(651), - [sym_do_stmt] = STATE(651), - [sym_asm_block_stmt] = STATE(651), - [sym_ct_assert_stmt] = STATE(651), - [sym_ct_echo_stmt] = STATE(651), - [sym_ct_if_stmt] = STATE(651), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(651), - [sym_ct_for_stmt] = STATE(651), - [sym_ct_foreach_stmt] = STATE(651), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_compound_stmt_repeat1] = STATE(77), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(243), - [sym_integer_literal] = ACTIONS(246), - [anon_sym_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(255), - [sym_bytes_literal] = ACTIONS(258), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(261), - [sym_at_ident] = ACTIONS(264), - [sym_hash_ident] = ACTIONS(267), - [sym_type_ident] = ACTIONS(270), - [sym_ct_type_ident] = ACTIONS(273), - [sym_const_ident] = ACTIONS(276), - [sym_builtin] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(282), - [anon_sym_static] = ACTIONS(285), - [anon_sym_tlocal] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(863), - [anon_sym_fn] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_const] = ACTIONS(869), - [anon_sym_var] = ACTIONS(302), - [anon_sym_return] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(875), - [anon_sym_break] = ACTIONS(878), - [anon_sym_defer] = ACTIONS(881), - [anon_sym_assert] = ACTIONS(884), - [anon_sym_nextcase] = ACTIONS(887), - [anon_sym_switch] = ACTIONS(890), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_if] = ACTIONS(893), - [anon_sym_for] = ACTIONS(896), - [anon_sym_foreach] = ACTIONS(899), - [anon_sym_foreach_r] = ACTIONS(899), - [anon_sym_while] = ACTIONS(902), - [anon_sym_do] = ACTIONS(905), - [anon_sym_int] = ACTIONS(346), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_asm] = ACTIONS(908), - [anon_sym_DOLLARassert] = ACTIONS(911), - [anon_sym_DOLLARerror] = ACTIONS(914), - [anon_sym_DOLLARecho] = ACTIONS(917), - [anon_sym_DOLLARif] = ACTIONS(920), - [anon_sym_DOLLARswitch] = ACTIONS(364), - [anon_sym_DOLLARfor] = ACTIONS(923), - [anon_sym_DOLLARforeach] = ACTIONS(926), - [anon_sym_DOLLARendforeach] = ACTIONS(320), - [anon_sym_DOLLARalignof] = ACTIONS(373), - [anon_sym_DOLLARextnameof] = ACTIONS(373), - [anon_sym_DOLLARnameof] = ACTIONS(373), - [anon_sym_DOLLARoffsetof] = ACTIONS(373), - [anon_sym_DOLLARqnameof] = ACTIONS(373), - [anon_sym_DOLLARvaconst] = ACTIONS(376), - [anon_sym_DOLLARvaarg] = ACTIONS(376), - [anon_sym_DOLLARvaref] = ACTIONS(376), - [anon_sym_DOLLARvaexpr] = ACTIONS(376), - [anon_sym_true] = ACTIONS(379), - [anon_sym_false] = ACTIONS(379), - [anon_sym_null] = ACTIONS(379), - [anon_sym_DOLLARvacount] = ACTIONS(379), - [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARsizeof] = ACTIONS(382), - [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARappend] = ACTIONS(385), - [anon_sym_DOLLARconcat] = ACTIONS(385), - [anon_sym_DOLLARdefined] = ACTIONS(385), - [anon_sym_DOLLARembed] = ACTIONS(385), - [anon_sym_DOLLARand] = ACTIONS(385), - [anon_sym_DOLLARor] = ACTIONS(385), - [anon_sym_DOLLARfeature] = ACTIONS(388), - [anon_sym_DOLLARassignable] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_typeid] = ACTIONS(346), - [anon_sym_LBRACE_PIPE] = ACTIONS(394), - [anon_sym_void] = ACTIONS(346), - [anon_sym_bool] = ACTIONS(346), - [anon_sym_char] = ACTIONS(346), - [anon_sym_ichar] = ACTIONS(346), - [anon_sym_short] = ACTIONS(346), - [anon_sym_ushort] = ACTIONS(346), - [anon_sym_uint] = ACTIONS(346), - [anon_sym_long] = ACTIONS(346), - [anon_sym_ulong] = ACTIONS(346), - [anon_sym_int128] = ACTIONS(346), - [anon_sym_uint128] = ACTIONS(346), - [anon_sym_float] = ACTIONS(346), - [anon_sym_double] = ACTIONS(346), - [anon_sym_float16] = ACTIONS(346), - [anon_sym_bfloat16] = ACTIONS(346), - [anon_sym_float128] = ACTIONS(346), - [anon_sym_iptr] = ACTIONS(346), - [anon_sym_uptr] = ACTIONS(346), - [anon_sym_isz] = ACTIONS(346), - [anon_sym_usz] = ACTIONS(346), - [anon_sym_anyfault] = ACTIONS(346), - [anon_sym_any] = ACTIONS(346), - [anon_sym_DOLLARtypeof] = ACTIONS(397), - [anon_sym_DOLLARtypefrom] = ACTIONS(397), - [anon_sym_DOLLARevaltype] = ACTIONS(397), - [anon_sym_DOLLARvatype] = ACTIONS(400), - [sym_real_literal] = ACTIONS(246), - }, - [78] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(78), - [sym_doc_comment] = STATE(78), - [sym_block_comment] = STATE(78), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(426), - [sym_expr_stmt] = STATE(753), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(753), - [sym_return_stmt] = STATE(753), - [sym_continue_stmt] = STATE(753), - [sym_break_stmt] = STATE(753), - [sym_defer_stmt] = STATE(753), - [sym_assert_stmt] = STATE(753), - [sym_declaration_stmt] = STATE(753), - [sym_nextcase_stmt] = STATE(753), - [sym_switch_body] = STATE(426), - [sym_switch_stmt] = STATE(753), - [sym__if_body] = STATE(754), - [sym_if_stmt] = STATE(753), - [sym_for_stmt] = STATE(753), - [sym_foreach_stmt] = STATE(753), - [sym_while_stmt] = STATE(753), - [sym_do_stmt] = STATE(753), - [sym_asm_block_stmt] = STATE(753), - [sym_ct_assert_stmt] = STATE(753), - [sym_ct_echo_stmt] = STATE(753), - [sym_ct_if_stmt] = STATE(753), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(753), - [sym_ct_for_stmt] = STATE(753), - [sym_ct_foreach_stmt] = STATE(753), - [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [76] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(76), + [sym_doc_comment] = STATE(76), + [sym_block_comment] = STATE(76), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -27328,37 +26940,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_const] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_break] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(625), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_nextcase] = ACTIONS(629), - [anon_sym_switch] = ACTIONS(631), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_foreach] = ACTIONS(637), - [anon_sym_foreach_r] = ACTIONS(637), - [anon_sym_while] = ACTIONS(639), - [anon_sym_do] = ACTIONS(641), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(643), - [anon_sym_DOLLARassert] = ACTIONS(645), - [anon_sym_DOLLARerror] = ACTIONS(647), - [anon_sym_DOLLARecho] = ACTIONS(649), - [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(655), - [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -27418,76 +27031,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [79] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(79), - [sym_doc_comment] = STATE(79), - [sym_block_comment] = STATE(79), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(591), - [sym_expr_stmt] = STATE(591), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(591), - [sym_return_stmt] = STATE(591), - [sym_continue_stmt] = STATE(591), - [sym_break_stmt] = STATE(591), - [sym_defer_stmt] = STATE(591), - [sym_assert_stmt] = STATE(591), - [sym_declaration_stmt] = STATE(591), - [sym_nextcase_stmt] = STATE(591), - [sym_switch_stmt] = STATE(591), - [sym_if_stmt] = STATE(591), - [sym_for_stmt] = STATE(591), - [sym_foreach_stmt] = STATE(591), - [sym_while_stmt] = STATE(591), - [sym_do_stmt] = STATE(591), - [sym_asm_block_stmt] = STATE(591), - [sym_ct_assert_stmt] = STATE(591), - [sym_ct_echo_stmt] = STATE(591), - [sym_ct_if_stmt] = STATE(591), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(591), - [sym_ct_for_stmt] = STATE(591), - [sym_ct_foreach_stmt] = STATE(591), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_compound_stmt_repeat1] = STATE(82), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [77] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(77), + [sym_doc_comment] = STATE(77), + [sym_block_comment] = STATE(77), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(448), + [sym_expr_stmt] = STATE(676), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(676), + [sym_return_stmt] = STATE(676), + [sym_continue_stmt] = STATE(676), + [sym_break_stmt] = STATE(676), + [sym_defer_stmt] = STATE(676), + [sym_assert_stmt] = STATE(676), + [sym_declaration_stmt] = STATE(676), + [sym_nextcase_stmt] = STATE(676), + [sym_switch_body] = STATE(448), + [sym_switch_stmt] = STATE(676), + [sym__if_body] = STATE(694), + [sym_if_stmt] = STATE(676), + [sym_for_stmt] = STATE(676), + [sym_foreach_stmt] = STATE(676), + [sym_while_stmt] = STATE(676), + [sym_do_stmt] = STATE(676), + [sym_asm_block_stmt] = STATE(676), + [sym_ct_assert_stmt] = STATE(676), + [sym_ct_echo_stmt] = STATE(676), + [sym_ct_if_stmt] = STATE(676), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(676), + [sym_ct_for_stmt] = STATE(676), + [sym_ct_foreach_stmt] = STATE(676), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -27508,9 +27122,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_SEMI] = ACTIONS(835), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(837), [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(573), @@ -27538,8 +27152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARendfor] = ACTIONS(479), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -27599,258 +27212,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [80] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(80), - [sym_doc_comment] = STATE(80), - [sym_block_comment] = STATE(80), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(723), - [sym_expr_stmt] = STATE(723), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(723), - [sym_return_stmt] = STATE(723), - [sym_continue_stmt] = STATE(723), - [sym_break_stmt] = STATE(723), - [sym_defer_stmt] = STATE(723), - [sym_assert_stmt] = STATE(723), - [sym_declaration_stmt] = STATE(723), - [sym_nextcase_stmt] = STATE(723), - [sym_switch_stmt] = STATE(723), - [sym_if_stmt] = STATE(723), - [sym_for_stmt] = STATE(723), - [sym_foreach_stmt] = STATE(723), - [sym_while_stmt] = STATE(723), - [sym_do_stmt] = STATE(723), - [sym_asm_block_stmt] = STATE(723), - [sym_ct_assert_stmt] = STATE(723), - [sym_ct_echo_stmt] = STATE(723), - [sym_ct_if_stmt] = STATE(723), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(723), - [sym_ct_for_stmt] = STATE(723), - [sym_ct_foreach_stmt] = STATE(723), - [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_compound_stmt_repeat1] = STATE(80), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(243), - [sym_integer_literal] = ACTIONS(246), - [anon_sym_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(255), - [sym_bytes_literal] = ACTIONS(258), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(261), - [sym_at_ident] = ACTIONS(264), - [sym_hash_ident] = ACTIONS(267), - [sym_type_ident] = ACTIONS(270), - [sym_ct_type_ident] = ACTIONS(273), - [sym_const_ident] = ACTIONS(276), - [sym_builtin] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(282), - [anon_sym_static] = ACTIONS(285), - [anon_sym_tlocal] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_fn] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_const] = ACTIONS(939), - [anon_sym_var] = ACTIONS(302), - [anon_sym_return] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_break] = ACTIONS(948), - [anon_sym_defer] = ACTIONS(951), - [anon_sym_assert] = ACTIONS(954), - [anon_sym_nextcase] = ACTIONS(957), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_if] = ACTIONS(963), - [anon_sym_for] = ACTIONS(966), - [anon_sym_foreach] = ACTIONS(969), - [anon_sym_foreach_r] = ACTIONS(969), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(975), - [anon_sym_int] = ACTIONS(346), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_asm] = ACTIONS(978), - [anon_sym_DOLLARassert] = ACTIONS(981), - [anon_sym_DOLLARerror] = ACTIONS(984), - [anon_sym_DOLLARecho] = ACTIONS(987), - [anon_sym_DOLLARif] = ACTIONS(990), - [anon_sym_DOLLARendif] = ACTIONS(320), - [anon_sym_DOLLARswitch] = ACTIONS(364), - [anon_sym_DOLLARfor] = ACTIONS(993), - [anon_sym_DOLLARforeach] = ACTIONS(996), - [anon_sym_DOLLARalignof] = ACTIONS(373), - [anon_sym_DOLLARextnameof] = ACTIONS(373), - [anon_sym_DOLLARnameof] = ACTIONS(373), - [anon_sym_DOLLARoffsetof] = ACTIONS(373), - [anon_sym_DOLLARqnameof] = ACTIONS(373), - [anon_sym_DOLLARvaconst] = ACTIONS(376), - [anon_sym_DOLLARvaarg] = ACTIONS(376), - [anon_sym_DOLLARvaref] = ACTIONS(376), - [anon_sym_DOLLARvaexpr] = ACTIONS(376), - [anon_sym_true] = ACTIONS(379), - [anon_sym_false] = ACTIONS(379), - [anon_sym_null] = ACTIONS(379), - [anon_sym_DOLLARvacount] = ACTIONS(379), - [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARsizeof] = ACTIONS(382), - [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARappend] = ACTIONS(385), - [anon_sym_DOLLARconcat] = ACTIONS(385), - [anon_sym_DOLLARdefined] = ACTIONS(385), - [anon_sym_DOLLARembed] = ACTIONS(385), - [anon_sym_DOLLARand] = ACTIONS(385), - [anon_sym_DOLLARor] = ACTIONS(385), - [anon_sym_DOLLARfeature] = ACTIONS(388), - [anon_sym_DOLLARassignable] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_typeid] = ACTIONS(346), - [anon_sym_LBRACE_PIPE] = ACTIONS(394), - [anon_sym_void] = ACTIONS(346), - [anon_sym_bool] = ACTIONS(346), - [anon_sym_char] = ACTIONS(346), - [anon_sym_ichar] = ACTIONS(346), - [anon_sym_short] = ACTIONS(346), - [anon_sym_ushort] = ACTIONS(346), - [anon_sym_uint] = ACTIONS(346), - [anon_sym_long] = ACTIONS(346), - [anon_sym_ulong] = ACTIONS(346), - [anon_sym_int128] = ACTIONS(346), - [anon_sym_uint128] = ACTIONS(346), - [anon_sym_float] = ACTIONS(346), - [anon_sym_double] = ACTIONS(346), - [anon_sym_float16] = ACTIONS(346), - [anon_sym_bfloat16] = ACTIONS(346), - [anon_sym_float128] = ACTIONS(346), - [anon_sym_iptr] = ACTIONS(346), - [anon_sym_uptr] = ACTIONS(346), - [anon_sym_isz] = ACTIONS(346), - [anon_sym_usz] = ACTIONS(346), - [anon_sym_anyfault] = ACTIONS(346), - [anon_sym_any] = ACTIONS(346), - [anon_sym_DOLLARtypeof] = ACTIONS(397), - [anon_sym_DOLLARtypefrom] = ACTIONS(397), - [anon_sym_DOLLARevaltype] = ACTIONS(397), - [anon_sym_DOLLARvatype] = ACTIONS(400), - [sym_real_literal] = ACTIONS(246), - }, - [81] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(81), - [sym_doc_comment] = STATE(81), - [sym_block_comment] = STATE(81), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(426), - [sym_expr_stmt] = STATE(753), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(753), - [sym_return_stmt] = STATE(753), - [sym_continue_stmt] = STATE(753), - [sym_break_stmt] = STATE(753), - [sym_defer_stmt] = STATE(753), - [sym_assert_stmt] = STATE(753), - [sym_declaration_stmt] = STATE(753), - [sym_nextcase_stmt] = STATE(753), - [sym_switch_body] = STATE(426), - [sym_switch_stmt] = STATE(753), - [sym__if_body] = STATE(771), - [sym_if_stmt] = STATE(753), - [sym_for_stmt] = STATE(753), - [sym_foreach_stmt] = STATE(753), - [sym_while_stmt] = STATE(753), - [sym_do_stmt] = STATE(753), - [sym_asm_block_stmt] = STATE(753), - [sym_ct_assert_stmt] = STATE(753), - [sym_ct_echo_stmt] = STATE(753), - [sym_ct_if_stmt] = STATE(753), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(753), - [sym_ct_for_stmt] = STATE(753), - [sym_ct_foreach_stmt] = STATE(753), - [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [78] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(78), + [sym_doc_comment] = STATE(78), + [sym_block_comment] = STATE(78), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(81), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -27871,37 +27302,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_const] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_break] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(625), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_nextcase] = ACTIONS(629), - [anon_sym_switch] = ACTIONS(631), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_foreach] = ACTIONS(637), - [anon_sym_foreach_r] = ACTIONS(637), - [anon_sym_while] = ACTIONS(639), - [anon_sym_do] = ACTIONS(641), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(643), - [anon_sym_DOLLARassert] = ACTIONS(645), - [anon_sym_DOLLARerror] = ACTIONS(647), - [anon_sym_DOLLARecho] = ACTIONS(649), - [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(655), - [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARendfor] = ACTIONS(479), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -27961,257 +27393,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [82] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(82), - [sym_doc_comment] = STATE(82), - [sym_block_comment] = STATE(82), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(591), - [sym_expr_stmt] = STATE(591), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(591), - [sym_return_stmt] = STATE(591), - [sym_continue_stmt] = STATE(591), - [sym_break_stmt] = STATE(591), - [sym_defer_stmt] = STATE(591), - [sym_assert_stmt] = STATE(591), - [sym_declaration_stmt] = STATE(591), - [sym_nextcase_stmt] = STATE(591), - [sym_switch_stmt] = STATE(591), - [sym_if_stmt] = STATE(591), - [sym_for_stmt] = STATE(591), - [sym_foreach_stmt] = STATE(591), - [sym_while_stmt] = STATE(591), - [sym_do_stmt] = STATE(591), - [sym_asm_block_stmt] = STATE(591), - [sym_ct_assert_stmt] = STATE(591), - [sym_ct_echo_stmt] = STATE(591), - [sym_ct_if_stmt] = STATE(591), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(591), - [sym_ct_for_stmt] = STATE(591), - [sym_ct_foreach_stmt] = STATE(591), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_compound_stmt_repeat1] = STATE(82), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(243), - [sym_integer_literal] = ACTIONS(246), - [anon_sym_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_BQUOTE] = ACTIONS(255), - [sym_bytes_literal] = ACTIONS(258), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(261), - [sym_at_ident] = ACTIONS(264), - [sym_hash_ident] = ACTIONS(267), - [sym_type_ident] = ACTIONS(270), - [sym_ct_type_ident] = ACTIONS(273), - [sym_const_ident] = ACTIONS(276), - [sym_builtin] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(282), - [anon_sym_static] = ACTIONS(285), - [anon_sym_tlocal] = ACTIONS(285), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_fn] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_var] = ACTIONS(302), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1014), - [anon_sym_defer] = ACTIONS(1017), - [anon_sym_assert] = ACTIONS(1020), - [anon_sym_nextcase] = ACTIONS(1023), - [anon_sym_switch] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_foreach] = ACTIONS(1035), - [anon_sym_foreach_r] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1041), - [anon_sym_int] = ACTIONS(346), - [anon_sym_PLUS] = ACTIONS(282), - [anon_sym_DASH] = ACTIONS(282), - [anon_sym_STAR] = ACTIONS(328), - [anon_sym_asm] = ACTIONS(1044), - [anon_sym_DOLLARassert] = ACTIONS(1047), - [anon_sym_DOLLARerror] = ACTIONS(1050), - [anon_sym_DOLLARecho] = ACTIONS(1053), - [anon_sym_DOLLARif] = ACTIONS(1056), - [anon_sym_DOLLARswitch] = ACTIONS(364), - [anon_sym_DOLLARfor] = ACTIONS(1059), - [anon_sym_DOLLARendfor] = ACTIONS(320), - [anon_sym_DOLLARforeach] = ACTIONS(1062), - [anon_sym_DOLLARalignof] = ACTIONS(373), - [anon_sym_DOLLARextnameof] = ACTIONS(373), - [anon_sym_DOLLARnameof] = ACTIONS(373), - [anon_sym_DOLLARoffsetof] = ACTIONS(373), - [anon_sym_DOLLARqnameof] = ACTIONS(373), - [anon_sym_DOLLARvaconst] = ACTIONS(376), - [anon_sym_DOLLARvaarg] = ACTIONS(376), - [anon_sym_DOLLARvaref] = ACTIONS(376), - [anon_sym_DOLLARvaexpr] = ACTIONS(376), - [anon_sym_true] = ACTIONS(379), - [anon_sym_false] = ACTIONS(379), - [anon_sym_null] = ACTIONS(379), - [anon_sym_DOLLARvacount] = ACTIONS(379), - [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARsizeof] = ACTIONS(382), - [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARappend] = ACTIONS(385), - [anon_sym_DOLLARconcat] = ACTIONS(385), - [anon_sym_DOLLARdefined] = ACTIONS(385), - [anon_sym_DOLLARembed] = ACTIONS(385), - [anon_sym_DOLLARand] = ACTIONS(385), - [anon_sym_DOLLARor] = ACTIONS(385), - [anon_sym_DOLLARfeature] = ACTIONS(388), - [anon_sym_DOLLARassignable] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(328), - [anon_sym_TILDE] = ACTIONS(328), - [anon_sym_PLUS_PLUS] = ACTIONS(328), - [anon_sym_DASH_DASH] = ACTIONS(328), - [anon_sym_typeid] = ACTIONS(346), - [anon_sym_LBRACE_PIPE] = ACTIONS(394), - [anon_sym_void] = ACTIONS(346), - [anon_sym_bool] = ACTIONS(346), - [anon_sym_char] = ACTIONS(346), - [anon_sym_ichar] = ACTIONS(346), - [anon_sym_short] = ACTIONS(346), - [anon_sym_ushort] = ACTIONS(346), - [anon_sym_uint] = ACTIONS(346), - [anon_sym_long] = ACTIONS(346), - [anon_sym_ulong] = ACTIONS(346), - [anon_sym_int128] = ACTIONS(346), - [anon_sym_uint128] = ACTIONS(346), - [anon_sym_float] = ACTIONS(346), - [anon_sym_double] = ACTIONS(346), - [anon_sym_float16] = ACTIONS(346), - [anon_sym_bfloat16] = ACTIONS(346), - [anon_sym_float128] = ACTIONS(346), - [anon_sym_iptr] = ACTIONS(346), - [anon_sym_uptr] = ACTIONS(346), - [anon_sym_isz] = ACTIONS(346), - [anon_sym_usz] = ACTIONS(346), - [anon_sym_anyfault] = ACTIONS(346), - [anon_sym_any] = ACTIONS(346), - [anon_sym_DOLLARtypeof] = ACTIONS(397), - [anon_sym_DOLLARtypefrom] = ACTIONS(397), - [anon_sym_DOLLARevaltype] = ACTIONS(397), - [anon_sym_DOLLARvatype] = ACTIONS(400), - [sym_real_literal] = ACTIONS(246), - }, - [83] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(83), - [sym_doc_comment] = STATE(83), - [sym_block_comment] = STATE(83), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), + [79] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(79), + [sym_doc_comment] = STATE(79), + [sym_block_comment] = STATE(79), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -28235,7 +27486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(925), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -28323,77 +27574,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [84] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(84), - [sym_doc_comment] = STATE(84), - [sym_block_comment] = STATE(84), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(341), - [sym_expr_stmt] = STATE(351), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(351), - [sym_return_stmt] = STATE(351), - [sym_continue_stmt] = STATE(351), - [sym_break_stmt] = STATE(351), - [sym_defer_stmt] = STATE(351), - [sym_assert_stmt] = STATE(351), - [sym_declaration_stmt] = STATE(351), - [sym_nextcase_stmt] = STATE(351), - [sym_switch_body] = STATE(341), - [sym_switch_stmt] = STATE(351), - [sym__if_body] = STATE(417), - [sym_if_stmt] = STATE(351), - [sym_for_stmt] = STATE(351), - [sym_foreach_stmt] = STATE(351), - [sym_while_stmt] = STATE(351), - [sym_do_stmt] = STATE(351), - [sym_asm_block_stmt] = STATE(351), - [sym_ct_assert_stmt] = STATE(351), - [sym_ct_echo_stmt] = STATE(351), - [sym_ct_if_stmt] = STATE(351), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(351), - [sym_ct_for_stmt] = STATE(351), - [sym_ct_foreach_stmt] = STATE(351), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [80] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(80), + [sym_doc_comment] = STATE(80), + [sym_block_comment] = STATE(80), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(338), + [sym_expr_stmt] = STATE(348), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(348), + [sym_return_stmt] = STATE(348), + [sym_continue_stmt] = STATE(348), + [sym_break_stmt] = STATE(348), + [sym_defer_stmt] = STATE(348), + [sym_assert_stmt] = STATE(348), + [sym_declaration_stmt] = STATE(348), + [sym_nextcase_stmt] = STATE(348), + [sym_switch_body] = STATE(338), + [sym_switch_stmt] = STATE(348), + [sym__if_body] = STATE(349), + [sym_if_stmt] = STATE(348), + [sym_for_stmt] = STATE(348), + [sym_foreach_stmt] = STATE(348), + [sym_while_stmt] = STATE(348), + [sym_do_stmt] = STATE(348), + [sym_asm_block_stmt] = STATE(348), + [sym_ct_assert_stmt] = STATE(348), + [sym_ct_echo_stmt] = STATE(348), + [sym_ct_if_stmt] = STATE(348), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(348), + [sym_ct_for_stmt] = STATE(348), + [sym_ct_foreach_stmt] = STATE(348), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -28414,9 +27665,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_SEMI] = ACTIONS(823), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(825), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -28504,77 +27755,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [85] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(85), - [sym_doc_comment] = STATE(85), - [sym_block_comment] = STATE(85), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(424), - [sym_expr_stmt] = STATE(611), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(611), - [sym_return_stmt] = STATE(611), - [sym_continue_stmt] = STATE(611), - [sym_break_stmt] = STATE(611), - [sym_defer_stmt] = STATE(611), - [sym_assert_stmt] = STATE(611), - [sym_declaration_stmt] = STATE(611), - [sym_nextcase_stmt] = STATE(611), - [sym_switch_body] = STATE(424), - [sym_switch_stmt] = STATE(611), - [sym__if_body] = STATE(627), - [sym_if_stmt] = STATE(611), - [sym_for_stmt] = STATE(611), - [sym_foreach_stmt] = STATE(611), - [sym_while_stmt] = STATE(611), - [sym_do_stmt] = STATE(611), - [sym_asm_block_stmt] = STATE(611), - [sym_ct_assert_stmt] = STATE(611), - [sym_ct_echo_stmt] = STATE(611), - [sym_ct_if_stmt] = STATE(611), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(611), - [sym_ct_for_stmt] = STATE(611), - [sym_ct_foreach_stmt] = STATE(611), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [81] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(81), + [sym_doc_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(81), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_const] = ACTIONS(933), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_break] = ACTIONS(942), + [anon_sym_defer] = ACTIONS(945), + [anon_sym_assert] = ACTIONS(948), + [anon_sym_nextcase] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(954), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(957), + [anon_sym_for] = ACTIONS(960), + [anon_sym_foreach] = ACTIONS(963), + [anon_sym_foreach_r] = ACTIONS(963), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(969), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(972), + [anon_sym_DOLLARassert] = ACTIONS(975), + [anon_sym_DOLLARerror] = ACTIONS(978), + [anon_sym_DOLLARecho] = ACTIONS(981), + [anon_sym_DOLLARif] = ACTIONS(984), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(987), + [anon_sym_DOLLARendfor] = ACTIONS(320), + [anon_sym_DOLLARforeach] = ACTIONS(990), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLAReval] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), + [anon_sym_DOLLARsizeof] = ACTIONS(382), + [anon_sym_DOLLARstringify] = ACTIONS(382), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), + }, + [82] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(82), + [sym_doc_comment] = STATE(82), + [sym_block_comment] = STATE(82), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(341), + [sym_expr_stmt] = STATE(472), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(472), + [sym_return_stmt] = STATE(472), + [sym_continue_stmt] = STATE(472), + [sym_break_stmt] = STATE(472), + [sym_defer_stmt] = STATE(472), + [sym_assert_stmt] = STATE(472), + [sym_declaration_stmt] = STATE(472), + [sym_nextcase_stmt] = STATE(472), + [sym_switch_body] = STATE(341), + [sym_switch_stmt] = STATE(472), + [sym__if_body] = STATE(429), + [sym_if_stmt] = STATE(472), + [sym_for_stmt] = STATE(472), + [sym_foreach_stmt] = STATE(472), + [sym_while_stmt] = STATE(472), + [sym_do_stmt] = STATE(472), + [sym_asm_block_stmt] = STATE(472), + [sym_ct_assert_stmt] = STATE(472), + [sym_ct_echo_stmt] = STATE(472), + [sym_ct_if_stmt] = STATE(472), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(472), + [sym_ct_for_stmt] = STATE(472), + [sym_ct_foreach_stmt] = STATE(472), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -28595,37 +28027,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(993), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_const] = ACTIONS(201), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -28685,79 +28117,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [86] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(86), - [sym_doc_comment] = STATE(86), - [sym_block_comment] = STATE(86), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(432), - [sym_expr_stmt] = STATE(432), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(432), - [sym_return_stmt] = STATE(432), - [sym_continue_stmt] = STATE(432), - [sym_break_stmt] = STATE(432), - [sym_defer_stmt] = STATE(432), - [sym_assert_stmt] = STATE(432), - [sym_declaration_stmt] = STATE(432), - [sym_nextcase_stmt] = STATE(432), - [sym_switch_stmt] = STATE(432), - [sym_if_stmt] = STATE(432), - [sym_for_stmt] = STATE(432), - [sym_foreach_stmt] = STATE(432), - [sym_while_stmt] = STATE(432), - [sym_do_stmt] = STATE(432), - [sym_asm_block_stmt] = STATE(432), - [sym_ct_assert_stmt] = STATE(432), - [sym_ct_echo_stmt] = STATE(432), - [sym_ct_if_stmt] = STATE(432), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(432), - [sym_ct_for_stmt] = STATE(432), - [sym_ct_foreach_stmt] = STATE(432), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), + [83] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(83), + [sym_doc_comment] = STATE(83), + [sym_block_comment] = STATE(83), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(591), + [sym_expr_stmt] = STATE(591), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(591), + [sym_return_stmt] = STATE(591), + [sym_continue_stmt] = STATE(591), + [sym_break_stmt] = STATE(591), + [sym_defer_stmt] = STATE(591), + [sym_assert_stmt] = STATE(591), + [sym_declaration_stmt] = STATE(591), + [sym_nextcase_stmt] = STATE(591), + [sym_switch_stmt] = STATE(591), + [sym_if_stmt] = STATE(591), + [sym_for_stmt] = STATE(591), + [sym_foreach_stmt] = STATE(591), + [sym_while_stmt] = STATE(591), + [sym_do_stmt] = STATE(591), + [sym_asm_block_stmt] = STATE(591), + [sym_ct_assert_stmt] = STATE(591), + [sym_ct_echo_stmt] = STATE(591), + [sym_ct_if_stmt] = STATE(591), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(591), + [sym_ct_for_stmt] = STATE(591), + [sym_ct_foreach_stmt] = STATE(591), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), @@ -28774,39 +28206,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(997), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_const] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_defer] = ACTIONS(209), - [anon_sym_try] = ACTIONS(1073), - [anon_sym_catch] = ACTIONS(1073), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_nextcase] = ACTIONS(213), - [anon_sym_switch] = ACTIONS(215), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_try] = ACTIONS(999), + [anon_sym_catch] = ACTIONS(999), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_foreach] = ACTIONS(221), - [anon_sym_foreach_r] = ACTIONS(221), - [anon_sym_while] = ACTIONS(223), - [anon_sym_do] = ACTIONS(225), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(227), - [anon_sym_DOLLARassert] = ACTIONS(229), - [anon_sym_DOLLARerror] = ACTIONS(231), - [anon_sym_DOLLARecho] = ACTIONS(233), - [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(239), - [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -28866,76 +28298,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [87] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(87), - [sym_doc_comment] = STATE(87), - [sym_block_comment] = STATE(87), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), + [84] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(84), + [sym_doc_comment] = STATE(84), + [sym_block_comment] = STATE(84), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(88), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(431), + [sym_expr_stmt] = STATE(606), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(606), + [sym_return_stmt] = STATE(606), + [sym_continue_stmt] = STATE(606), + [sym_break_stmt] = STATE(606), + [sym_defer_stmt] = STATE(606), + [sym_assert_stmt] = STATE(606), + [sym_declaration_stmt] = STATE(606), + [sym_nextcase_stmt] = STATE(606), + [sym_switch_body] = STATE(431), + [sym_switch_stmt] = STATE(606), + [sym__if_body] = STATE(622), + [sym_if_stmt] = STATE(606), + [sym_for_stmt] = STATE(606), + [sym_foreach_stmt] = STATE(606), + [sym_while_stmt] = STATE(606), + [sym_do_stmt] = STATE(606), + [sym_asm_block_stmt] = STATE(606), + [sym_ct_assert_stmt] = STATE(606), + [sym_ct_echo_stmt] = STATE(606), + [sym_ct_if_stmt] = STATE(606), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(606), + [sym_ct_for_stmt] = STATE(606), + [sym_ct_foreach_stmt] = STATE(606), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -28956,38 +28389,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1001), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1075), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -29047,76 +28479,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [88] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(88), - [sym_doc_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [85] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(85), + [sym_doc_comment] = STATE(85), + [sym_block_comment] = STATE(85), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(93), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29137,38 +28569,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(479), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -29228,77 +28660,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [89] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(89), - [sym_doc_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(344), - [sym_expr_stmt] = STATE(446), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(446), - [sym_return_stmt] = STATE(446), - [sym_continue_stmt] = STATE(446), - [sym_break_stmt] = STATE(446), - [sym_defer_stmt] = STATE(446), - [sym_assert_stmt] = STATE(446), - [sym_declaration_stmt] = STATE(446), - [sym_nextcase_stmt] = STATE(446), - [sym_switch_body] = STATE(344), - [sym_switch_stmt] = STATE(446), - [sym__if_body] = STATE(447), - [sym_if_stmt] = STATE(446), - [sym_for_stmt] = STATE(446), - [sym_foreach_stmt] = STATE(446), - [sym_while_stmt] = STATE(446), - [sym_do_stmt] = STATE(446), - [sym_asm_block_stmt] = STATE(446), - [sym_ct_assert_stmt] = STATE(446), - [sym_ct_echo_stmt] = STATE(446), - [sym_ct_if_stmt] = STATE(446), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(446), - [sym_ct_for_stmt] = STATE(446), - [sym_ct_foreach_stmt] = STATE(446), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [86] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(86), + [sym_doc_comment] = STATE(86), + [sym_block_comment] = STATE(86), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(485), + [sym_expr_stmt] = STATE(485), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(485), + [sym_return_stmt] = STATE(485), + [sym_continue_stmt] = STATE(485), + [sym_break_stmt] = STATE(485), + [sym_defer_stmt] = STATE(485), + [sym_assert_stmt] = STATE(485), + [sym_declaration_stmt] = STATE(485), + [sym_nextcase_stmt] = STATE(485), + [sym_switch_stmt] = STATE(485), + [sym_if_stmt] = STATE(485), + [sym_for_stmt] = STATE(485), + [sym_foreach_stmt] = STATE(485), + [sym_while_stmt] = STATE(485), + [sym_do_stmt] = STATE(485), + [sym_asm_block_stmt] = STATE(485), + [sym_ct_assert_stmt] = STATE(485), + [sym_ct_echo_stmt] = STATE(485), + [sym_ct_if_stmt] = STATE(485), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(485), + [sym_ct_for_stmt] = STATE(485), + [sym_ct_foreach_stmt] = STATE(485), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29319,15 +28749,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LBRACE] = ACTIONS(199), [anon_sym_const] = ACTIONS(201), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(203), [anon_sym_continue] = ACTIONS(205), [anon_sym_break] = ACTIONS(207), [anon_sym_defer] = ACTIONS(209), + [anon_sym_try] = ACTIONS(1007), + [anon_sym_catch] = ACTIONS(1007), [anon_sym_assert] = ACTIONS(211), [anon_sym_nextcase] = ACTIONS(213), [anon_sym_switch] = ACTIONS(215), @@ -29409,76 +28841,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [90] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(90), - [sym_doc_comment] = STATE(90), - [sym_block_comment] = STATE(90), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(651), - [sym_expr_stmt] = STATE(651), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(651), - [sym_return_stmt] = STATE(651), - [sym_continue_stmt] = STATE(651), - [sym_break_stmt] = STATE(651), - [sym_defer_stmt] = STATE(651), - [sym_assert_stmt] = STATE(651), - [sym_declaration_stmt] = STATE(651), - [sym_nextcase_stmt] = STATE(651), - [sym_switch_stmt] = STATE(651), - [sym_if_stmt] = STATE(651), - [sym_for_stmt] = STATE(651), - [sym_foreach_stmt] = STATE(651), - [sym_while_stmt] = STATE(651), - [sym_do_stmt] = STATE(651), - [sym_asm_block_stmt] = STATE(651), - [sym_ct_assert_stmt] = STATE(651), - [sym_ct_echo_stmt] = STATE(651), - [sym_ct_if_stmt] = STATE(651), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(651), - [sym_ct_for_stmt] = STATE(651), - [sym_ct_foreach_stmt] = STATE(651), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_compound_stmt_repeat1] = STATE(77), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [87] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(87), + [sym_doc_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(88), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29499,38 +28931,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), - [anon_sym_DOLLARendforeach] = ACTIONS(479), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -29590,75 +29022,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [91] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(91), - [sym_doc_comment] = STATE(91), - [sym_block_comment] = STATE(91), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(596), - [sym_expr_stmt] = STATE(596), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(596), - [sym_return_stmt] = STATE(596), - [sym_continue_stmt] = STATE(596), - [sym_break_stmt] = STATE(596), - [sym_defer_stmt] = STATE(596), - [sym_assert_stmt] = STATE(596), - [sym_declaration_stmt] = STATE(596), - [sym_nextcase_stmt] = STATE(596), - [sym_switch_stmt] = STATE(596), - [sym_if_stmt] = STATE(596), - [sym_for_stmt] = STATE(596), - [sym_foreach_stmt] = STATE(596), - [sym_while_stmt] = STATE(596), - [sym_do_stmt] = STATE(596), - [sym_asm_block_stmt] = STATE(596), - [sym_ct_assert_stmt] = STATE(596), - [sym_ct_echo_stmt] = STATE(596), - [sym_ct_if_stmt] = STATE(596), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(596), - [sym_ct_for_stmt] = STATE(596), - [sym_ct_foreach_stmt] = STATE(596), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [88] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(88), + [sym_doc_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29679,39 +29112,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_catch] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -29771,76 +29203,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [92] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(92), - [sym_doc_comment] = STATE(92), - [sym_block_comment] = STATE(92), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(93), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [89] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(89), + [sym_doc_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(341), + [sym_expr_stmt] = STATE(472), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(472), + [sym_return_stmt] = STATE(472), + [sym_continue_stmt] = STATE(472), + [sym_break_stmt] = STATE(472), + [sym_defer_stmt] = STATE(472), + [sym_assert_stmt] = STATE(472), + [sym_declaration_stmt] = STATE(472), + [sym_nextcase_stmt] = STATE(472), + [sym_switch_body] = STATE(341), + [sym_switch_stmt] = STATE(472), + [sym__if_body] = STATE(473), + [sym_if_stmt] = STATE(472), + [sym_for_stmt] = STATE(472), + [sym_foreach_stmt] = STATE(472), + [sym_while_stmt] = STATE(472), + [sym_do_stmt] = STATE(472), + [sym_asm_block_stmt] = STATE(472), + [sym_ct_assert_stmt] = STATE(472), + [sym_ct_echo_stmt] = STATE(472), + [sym_ct_if_stmt] = STATE(472), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(472), + [sym_ct_for_stmt] = STATE(472), + [sym_ct_foreach_stmt] = STATE(472), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29861,38 +29294,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(993), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1083), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_const] = ACTIONS(201), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -29952,76 +29384,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [93] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(93), - [sym_doc_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [90] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(90), + [sym_doc_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(91), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30045,7 +29477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1013), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -30133,77 +29565,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [94] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(94), - [sym_doc_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(424), - [sym_expr_stmt] = STATE(611), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(611), - [sym_return_stmt] = STATE(611), - [sym_continue_stmt] = STATE(611), - [sym_break_stmt] = STATE(611), - [sym_defer_stmt] = STATE(611), - [sym_assert_stmt] = STATE(611), - [sym_declaration_stmt] = STATE(611), - [sym_nextcase_stmt] = STATE(611), - [sym_switch_body] = STATE(424), - [sym_switch_stmt] = STATE(611), - [sym__if_body] = STATE(612), - [sym_if_stmt] = STATE(611), - [sym_for_stmt] = STATE(611), - [sym_foreach_stmt] = STATE(611), - [sym_while_stmt] = STATE(611), - [sym_do_stmt] = STATE(611), - [sym_asm_block_stmt] = STATE(611), - [sym_ct_assert_stmt] = STATE(611), - [sym_ct_echo_stmt] = STATE(611), - [sym_ct_if_stmt] = STATE(611), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(611), - [sym_ct_for_stmt] = STATE(611), - [sym_ct_foreach_stmt] = STATE(611), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [91] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(91), + [sym_doc_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30224,37 +29655,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -30314,76 +29746,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [95] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(95), - [sym_doc_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), + [92] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(92), + [sym_doc_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(15), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(431), + [sym_expr_stmt] = STATE(606), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(606), + [sym_return_stmt] = STATE(606), + [sym_continue_stmt] = STATE(606), + [sym_break_stmt] = STATE(606), + [sym_defer_stmt] = STATE(606), + [sym_assert_stmt] = STATE(606), + [sym_declaration_stmt] = STATE(606), + [sym_nextcase_stmt] = STATE(606), + [sym_switch_body] = STATE(431), + [sym_switch_stmt] = STATE(606), + [sym__if_body] = STATE(607), + [sym_if_stmt] = STATE(606), + [sym_for_stmt] = STATE(606), + [sym_foreach_stmt] = STATE(606), + [sym_while_stmt] = STATE(606), + [sym_do_stmt] = STATE(606), + [sym_asm_block_stmt] = STATE(606), + [sym_ct_assert_stmt] = STATE(606), + [sym_ct_echo_stmt] = STATE(606), + [sym_ct_if_stmt] = STATE(606), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(606), + [sym_ct_for_stmt] = STATE(606), + [sym_ct_foreach_stmt] = STATE(606), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30404,37 +29837,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1001), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -30466,7 +29899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(137), [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_PIPE_RBRACE] = ACTIONS(1087), [anon_sym_void] = ACTIONS(137), [anon_sym_bool] = ACTIONS(137), [anon_sym_char] = ACTIONS(137), @@ -30495,76 +29927,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [96] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(96), - [sym_doc_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_compound_stmt_repeat1] = STATE(72), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [93] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(93), + [sym_doc_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(93), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_defer] = ACTIONS(1035), + [anon_sym_assert] = ACTIONS(1038), + [anon_sym_nextcase] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_foreach] = ACTIONS(1053), + [anon_sym_foreach_r] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(1062), + [anon_sym_DOLLARassert] = ACTIONS(1065), + [anon_sym_DOLLARerror] = ACTIONS(1068), + [anon_sym_DOLLARecho] = ACTIONS(1071), + [anon_sym_DOLLARif] = ACTIONS(1074), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(1077), + [anon_sym_DOLLARforeach] = ACTIONS(1080), + [anon_sym_DOLLARendforeach] = ACTIONS(320), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLAReval] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), + [anon_sym_DOLLARsizeof] = ACTIONS(382), + [anon_sym_DOLLARstringify] = ACTIONS(382), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), + }, + [94] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(94), + [sym_doc_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30588,7 +30201,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1089), [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), [anon_sym_return] = ACTIONS(107), @@ -30648,6 +30260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(137), [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_PIPE_RBRACE] = ACTIONS(1083), [anon_sym_void] = ACTIONS(137), [anon_sym_bool] = ACTIONS(137), [anon_sym_char] = ACTIONS(137), @@ -30676,77 +30289,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [97] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(97), - [sym_doc_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(379), - [sym_expr_stmt] = STATE(556), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(556), - [sym_return_stmt] = STATE(556), - [sym_continue_stmt] = STATE(556), - [sym_break_stmt] = STATE(556), - [sym_defer_stmt] = STATE(556), - [sym_assert_stmt] = STATE(556), - [sym_declaration_stmt] = STATE(556), - [sym_nextcase_stmt] = STATE(556), - [sym_switch_body] = STATE(379), - [sym_switch_stmt] = STATE(556), - [sym__if_body] = STATE(554), - [sym_if_stmt] = STATE(556), - [sym_for_stmt] = STATE(556), - [sym_foreach_stmt] = STATE(556), - [sym_while_stmt] = STATE(556), - [sym_do_stmt] = STATE(556), - [sym_asm_block_stmt] = STATE(556), - [sym_ct_assert_stmt] = STATE(556), - [sym_ct_echo_stmt] = STATE(556), - [sym_ct_if_stmt] = STATE(556), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(556), - [sym_ct_for_stmt] = STATE(556), - [sym_ct_foreach_stmt] = STATE(556), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [95] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(95), + [sym_doc_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(70), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30767,37 +30379,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(843), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_const] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_break] = ACTIONS(417), - [anon_sym_defer] = ACTIONS(419), - [anon_sym_assert] = ACTIONS(421), - [anon_sym_nextcase] = ACTIONS(423), - [anon_sym_switch] = ACTIONS(425), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_foreach] = ACTIONS(431), - [anon_sym_foreach_r] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(437), - [anon_sym_DOLLARassert] = ACTIONS(439), - [anon_sym_DOLLARerror] = ACTIONS(441), - [anon_sym_DOLLARecho] = ACTIONS(443), - [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(479), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(451), - [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -30857,75 +30470,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [98] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(98), - [sym_doc_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(464), - [sym_expr_stmt] = STATE(464), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(464), - [sym_return_stmt] = STATE(464), - [sym_continue_stmt] = STATE(464), - [sym_break_stmt] = STATE(464), - [sym_defer_stmt] = STATE(464), - [sym_assert_stmt] = STATE(464), - [sym_declaration_stmt] = STATE(464), - [sym_nextcase_stmt] = STATE(464), - [sym_switch_stmt] = STATE(464), - [sym_if_stmt] = STATE(464), - [sym_for_stmt] = STATE(464), - [sym_foreach_stmt] = STATE(464), - [sym_while_stmt] = STATE(464), - [sym_do_stmt] = STATE(464), - [sym_asm_block_stmt] = STATE(464), - [sym_ct_assert_stmt] = STATE(464), - [sym_ct_echo_stmt] = STATE(464), - [sym_ct_if_stmt] = STATE(464), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(464), - [sym_ct_for_stmt] = STATE(464), - [sym_ct_foreach_stmt] = STATE(464), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [96] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(96), + [sym_doc_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(71), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30946,37 +30560,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1091), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_const] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_defer] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_nextcase] = ACTIONS(213), - [anon_sym_switch] = ACTIONS(215), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_foreach] = ACTIONS(221), - [anon_sym_foreach_r] = ACTIONS(221), - [anon_sym_while] = ACTIONS(223), - [anon_sym_do] = ACTIONS(225), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(227), - [anon_sym_DOLLARassert] = ACTIONS(229), - [anon_sym_DOLLARerror] = ACTIONS(231), - [anon_sym_DOLLARecho] = ACTIONS(233), - [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(239), - [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -31036,75 +30651,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [99] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(99), - [sym_doc_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(544), - [sym_expr_stmt] = STATE(544), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(544), - [sym_return_stmt] = STATE(544), - [sym_continue_stmt] = STATE(544), - [sym_break_stmt] = STATE(544), - [sym_defer_stmt] = STATE(544), - [sym_assert_stmt] = STATE(544), - [sym_declaration_stmt] = STATE(544), - [sym_nextcase_stmt] = STATE(544), - [sym_switch_stmt] = STATE(544), - [sym_if_stmt] = STATE(544), - [sym_for_stmt] = STATE(544), - [sym_foreach_stmt] = STATE(544), - [sym_while_stmt] = STATE(544), - [sym_do_stmt] = STATE(544), - [sym_asm_block_stmt] = STATE(544), - [sym_ct_assert_stmt] = STATE(544), - [sym_ct_echo_stmt] = STATE(544), - [sym_ct_if_stmt] = STATE(544), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(544), - [sym_ct_for_stmt] = STATE(544), - [sym_ct_foreach_stmt] = STATE(544), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [97] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(97), + [sym_doc_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(730), + [sym_expr_stmt] = STATE(730), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(730), + [sym_return_stmt] = STATE(730), + [sym_continue_stmt] = STATE(730), + [sym_break_stmt] = STATE(730), + [sym_defer_stmt] = STATE(730), + [sym_assert_stmt] = STATE(730), + [sym_declaration_stmt] = STATE(730), + [sym_nextcase_stmt] = STATE(730), + [sym_switch_stmt] = STATE(730), + [sym_if_stmt] = STATE(730), + [sym_for_stmt] = STATE(730), + [sym_foreach_stmt] = STATE(730), + [sym_while_stmt] = STATE(730), + [sym_do_stmt] = STATE(730), + [sym_asm_block_stmt] = STATE(730), + [sym_ct_assert_stmt] = STATE(730), + [sym_ct_echo_stmt] = STATE(730), + [sym_ct_if_stmt] = STATE(730), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(730), + [sym_ct_for_stmt] = STATE(730), + [sym_ct_foreach_stmt] = STATE(730), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31125,37 +30740,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1093), + [anon_sym_SEMI] = ACTIONS(1087), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_const] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_break] = ACTIONS(417), - [anon_sym_defer] = ACTIONS(419), - [anon_sym_assert] = ACTIONS(421), - [anon_sym_nextcase] = ACTIONS(423), - [anon_sym_switch] = ACTIONS(425), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_catch] = ACTIONS(1089), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_foreach] = ACTIONS(431), - [anon_sym_foreach_r] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(437), - [anon_sym_DOLLARassert] = ACTIONS(439), - [anon_sym_DOLLARerror] = ACTIONS(441), - [anon_sym_DOLLARecho] = ACTIONS(443), - [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(451), - [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -31215,75 +30832,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [100] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(100), - [sym_doc_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(513), - [sym_expr_stmt] = STATE(513), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(513), - [sym_return_stmt] = STATE(513), - [sym_continue_stmt] = STATE(513), - [sym_break_stmt] = STATE(513), - [sym_defer_stmt] = STATE(513), - [sym_assert_stmt] = STATE(513), - [sym_declaration_stmt] = STATE(513), - [sym_nextcase_stmt] = STATE(513), - [sym_switch_stmt] = STATE(513), - [sym_if_stmt] = STATE(513), - [sym_for_stmt] = STATE(513), - [sym_foreach_stmt] = STATE(513), - [sym_while_stmt] = STATE(513), - [sym_do_stmt] = STATE(513), - [sym_asm_block_stmt] = STATE(513), - [sym_ct_assert_stmt] = STATE(513), - [sym_ct_echo_stmt] = STATE(513), - [sym_ct_if_stmt] = STATE(513), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(513), - [sym_ct_for_stmt] = STATE(513), - [sym_ct_foreach_stmt] = STATE(513), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [98] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(98), + [sym_doc_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(608), + [sym_expr_stmt] = STATE(608), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(608), + [sym_return_stmt] = STATE(608), + [sym_continue_stmt] = STATE(608), + [sym_break_stmt] = STATE(608), + [sym_defer_stmt] = STATE(608), + [sym_assert_stmt] = STATE(608), + [sym_declaration_stmt] = STATE(608), + [sym_nextcase_stmt] = STATE(608), + [sym_switch_stmt] = STATE(608), + [sym_if_stmt] = STATE(608), + [sym_for_stmt] = STATE(608), + [sym_foreach_stmt] = STATE(608), + [sym_while_stmt] = STATE(608), + [sym_do_stmt] = STATE(608), + [sym_asm_block_stmt] = STATE(608), + [sym_ct_assert_stmt] = STATE(608), + [sym_ct_echo_stmt] = STATE(608), + [sym_ct_if_stmt] = STATE(608), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(608), + [sym_ct_for_stmt] = STATE(608), + [sym_ct_foreach_stmt] = STATE(608), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31304,37 +30921,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(1091), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_const] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_break] = ACTIONS(417), - [anon_sym_defer] = ACTIONS(419), - [anon_sym_assert] = ACTIONS(421), - [anon_sym_nextcase] = ACTIONS(423), - [anon_sym_switch] = ACTIONS(425), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_foreach] = ACTIONS(431), - [anon_sym_foreach_r] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(437), - [anon_sym_DOLLARassert] = ACTIONS(439), - [anon_sym_DOLLARerror] = ACTIONS(441), - [anon_sym_DOLLARecho] = ACTIONS(443), - [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(451), - [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -31394,75 +31011,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [101] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(101), - [sym_doc_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(515), - [sym_expr_stmt] = STATE(515), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(515), - [sym_return_stmt] = STATE(515), - [sym_continue_stmt] = STATE(515), - [sym_break_stmt] = STATE(515), - [sym_defer_stmt] = STATE(515), - [sym_assert_stmt] = STATE(515), - [sym_declaration_stmt] = STATE(515), - [sym_nextcase_stmt] = STATE(515), - [sym_switch_stmt] = STATE(515), - [sym_if_stmt] = STATE(515), - [sym_for_stmt] = STATE(515), - [sym_foreach_stmt] = STATE(515), - [sym_while_stmt] = STATE(515), - [sym_do_stmt] = STATE(515), - [sym_asm_block_stmt] = STATE(515), - [sym_ct_assert_stmt] = STATE(515), - [sym_ct_echo_stmt] = STATE(515), - [sym_ct_if_stmt] = STATE(515), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(515), - [sym_ct_for_stmt] = STATE(515), - [sym_ct_foreach_stmt] = STATE(515), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [99] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(99), + [sym_doc_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(351), + [sym_expr_stmt] = STATE(351), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(351), + [sym_return_stmt] = STATE(351), + [sym_continue_stmt] = STATE(351), + [sym_break_stmt] = STATE(351), + [sym_defer_stmt] = STATE(351), + [sym_assert_stmt] = STATE(351), + [sym_declaration_stmt] = STATE(351), + [sym_nextcase_stmt] = STATE(351), + [sym_switch_stmt] = STATE(351), + [sym_if_stmt] = STATE(351), + [sym_for_stmt] = STATE(351), + [sym_foreach_stmt] = STATE(351), + [sym_while_stmt] = STATE(351), + [sym_do_stmt] = STATE(351), + [sym_asm_block_stmt] = STATE(351), + [sym_ct_assert_stmt] = STATE(351), + [sym_ct_echo_stmt] = STATE(351), + [sym_ct_if_stmt] = STATE(351), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(351), + [sym_ct_for_stmt] = STATE(351), + [sym_ct_foreach_stmt] = STATE(351), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31483,37 +31100,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1093), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_const] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_break] = ACTIONS(417), - [anon_sym_defer] = ACTIONS(419), - [anon_sym_assert] = ACTIONS(421), - [anon_sym_nextcase] = ACTIONS(423), - [anon_sym_switch] = ACTIONS(425), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(427), - [anon_sym_for] = ACTIONS(429), - [anon_sym_foreach] = ACTIONS(431), - [anon_sym_foreach_r] = ACTIONS(431), - [anon_sym_while] = ACTIONS(433), - [anon_sym_do] = ACTIONS(435), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(437), - [anon_sym_DOLLARassert] = ACTIONS(439), - [anon_sym_DOLLARerror] = ACTIONS(441), - [anon_sym_DOLLARecho] = ACTIONS(443), - [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(451), - [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -31573,75 +31190,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [102] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(102), - [sym_doc_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(526), - [sym_expr_stmt] = STATE(526), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(526), - [sym_return_stmt] = STATE(526), - [sym_continue_stmt] = STATE(526), - [sym_break_stmt] = STATE(526), - [sym_defer_stmt] = STATE(526), - [sym_assert_stmt] = STATE(526), - [sym_declaration_stmt] = STATE(526), - [sym_nextcase_stmt] = STATE(526), - [sym_switch_stmt] = STATE(526), - [sym_if_stmt] = STATE(526), - [sym_for_stmt] = STATE(526), - [sym_foreach_stmt] = STATE(526), - [sym_while_stmt] = STATE(526), - [sym_do_stmt] = STATE(526), - [sym_asm_block_stmt] = STATE(526), - [sym_ct_assert_stmt] = STATE(526), - [sym_ct_echo_stmt] = STATE(526), - [sym_ct_if_stmt] = STATE(526), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(526), - [sym_ct_for_stmt] = STATE(526), - [sym_ct_foreach_stmt] = STATE(526), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [100] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(100), + [sym_doc_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(575), + [sym_expr_stmt] = STATE(575), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(575), + [sym_return_stmt] = STATE(575), + [sym_continue_stmt] = STATE(575), + [sym_break_stmt] = STATE(575), + [sym_defer_stmt] = STATE(575), + [sym_assert_stmt] = STATE(575), + [sym_declaration_stmt] = STATE(575), + [sym_nextcase_stmt] = STATE(575), + [sym_switch_stmt] = STATE(575), + [sym_if_stmt] = STATE(575), + [sym_for_stmt] = STATE(575), + [sym_foreach_stmt] = STATE(575), + [sym_while_stmt] = STATE(575), + [sym_do_stmt] = STATE(575), + [sym_asm_block_stmt] = STATE(575), + [sym_ct_assert_stmt] = STATE(575), + [sym_ct_echo_stmt] = STATE(575), + [sym_ct_if_stmt] = STATE(575), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(575), + [sym_ct_for_stmt] = STATE(575), + [sym_ct_foreach_stmt] = STATE(575), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31662,7 +31279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(1095), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(409), [anon_sym_const] = ACTIONS(411), @@ -31752,75 +31369,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [103] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(103), - [sym_doc_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(559), - [sym_expr_stmt] = STATE(559), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(559), - [sym_return_stmt] = STATE(559), - [sym_continue_stmt] = STATE(559), - [sym_break_stmt] = STATE(559), - [sym_defer_stmt] = STATE(559), - [sym_assert_stmt] = STATE(559), - [sym_declaration_stmt] = STATE(559), - [sym_nextcase_stmt] = STATE(559), - [sym_switch_stmt] = STATE(559), - [sym_if_stmt] = STATE(559), - [sym_for_stmt] = STATE(559), - [sym_foreach_stmt] = STATE(559), - [sym_while_stmt] = STATE(559), - [sym_do_stmt] = STATE(559), - [sym_asm_block_stmt] = STATE(559), - [sym_ct_assert_stmt] = STATE(559), - [sym_ct_echo_stmt] = STATE(559), - [sym_ct_if_stmt] = STATE(559), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(559), - [sym_ct_for_stmt] = STATE(559), - [sym_ct_foreach_stmt] = STATE(559), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [101] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(101), + [sym_doc_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(550), + [sym_expr_stmt] = STATE(550), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(550), + [sym_return_stmt] = STATE(550), + [sym_continue_stmt] = STATE(550), + [sym_break_stmt] = STATE(550), + [sym_defer_stmt] = STATE(550), + [sym_assert_stmt] = STATE(550), + [sym_declaration_stmt] = STATE(550), + [sym_nextcase_stmt] = STATE(550), + [sym_switch_stmt] = STATE(550), + [sym_if_stmt] = STATE(550), + [sym_for_stmt] = STATE(550), + [sym_foreach_stmt] = STATE(550), + [sym_while_stmt] = STATE(550), + [sym_do_stmt] = STATE(550), + [sym_asm_block_stmt] = STATE(550), + [sym_ct_assert_stmt] = STATE(550), + [sym_ct_echo_stmt] = STATE(550), + [sym_ct_if_stmt] = STATE(550), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(550), + [sym_ct_for_stmt] = STATE(550), + [sym_ct_foreach_stmt] = STATE(550), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31841,7 +31458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_SEMI] = ACTIONS(1097), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(409), [anon_sym_const] = ACTIONS(411), @@ -31931,75 +31548,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [104] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(104), - [sym_doc_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(560), - [sym_expr_stmt] = STATE(560), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(560), - [sym_return_stmt] = STATE(560), - [sym_continue_stmt] = STATE(560), - [sym_break_stmt] = STATE(560), - [sym_defer_stmt] = STATE(560), - [sym_assert_stmt] = STATE(560), - [sym_declaration_stmt] = STATE(560), - [sym_nextcase_stmt] = STATE(560), - [sym_switch_stmt] = STATE(560), - [sym_if_stmt] = STATE(560), - [sym_for_stmt] = STATE(560), - [sym_foreach_stmt] = STATE(560), - [sym_while_stmt] = STATE(560), - [sym_do_stmt] = STATE(560), - [sym_asm_block_stmt] = STATE(560), - [sym_ct_assert_stmt] = STATE(560), - [sym_ct_echo_stmt] = STATE(560), - [sym_ct_if_stmt] = STATE(560), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(560), - [sym_ct_for_stmt] = STATE(560), - [sym_ct_foreach_stmt] = STATE(560), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [102] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(102), + [sym_doc_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(551), + [sym_expr_stmt] = STATE(551), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(551), + [sym_return_stmt] = STATE(551), + [sym_continue_stmt] = STATE(551), + [sym_break_stmt] = STATE(551), + [sym_defer_stmt] = STATE(551), + [sym_assert_stmt] = STATE(551), + [sym_declaration_stmt] = STATE(551), + [sym_nextcase_stmt] = STATE(551), + [sym_switch_stmt] = STATE(551), + [sym_if_stmt] = STATE(551), + [sym_for_stmt] = STATE(551), + [sym_foreach_stmt] = STATE(551), + [sym_while_stmt] = STATE(551), + [sym_do_stmt] = STATE(551), + [sym_asm_block_stmt] = STATE(551), + [sym_ct_assert_stmt] = STATE(551), + [sym_ct_echo_stmt] = STATE(551), + [sym_ct_if_stmt] = STATE(551), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(551), + [sym_ct_for_stmt] = STATE(551), + [sym_ct_foreach_stmt] = STATE(551), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32020,7 +31637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(1099), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(409), [anon_sym_const] = ACTIONS(411), @@ -32110,75 +31727,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [105] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(105), - [sym_doc_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1200), - [sym_const_declaration] = STATE(535), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(562), - [sym_expr_stmt] = STATE(562), - [sym_var_decl] = STATE(2185), - [sym_var_stmt] = STATE(562), - [sym_return_stmt] = STATE(562), - [sym_continue_stmt] = STATE(562), - [sym_break_stmt] = STATE(562), - [sym_defer_stmt] = STATE(562), - [sym_assert_stmt] = STATE(562), - [sym_declaration_stmt] = STATE(562), - [sym_nextcase_stmt] = STATE(562), - [sym_switch_stmt] = STATE(562), - [sym_if_stmt] = STATE(562), - [sym_for_stmt] = STATE(562), - [sym_foreach_stmt] = STATE(562), - [sym_while_stmt] = STATE(562), - [sym_do_stmt] = STATE(562), - [sym_asm_block_stmt] = STATE(562), - [sym_ct_assert_stmt] = STATE(562), - [sym_ct_echo_stmt] = STATE(562), - [sym_ct_if_stmt] = STATE(562), - [sym__ct_switch] = STATE(1567), - [sym_ct_switch_stmt] = STATE(562), - [sym_ct_for_stmt] = STATE(562), - [sym_ct_foreach_stmt] = STATE(562), - [sym__expr] = STATE(1071), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1380), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [103] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(103), + [sym_doc_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(552), + [sym_expr_stmt] = STATE(552), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(552), + [sym_return_stmt] = STATE(552), + [sym_continue_stmt] = STATE(552), + [sym_break_stmt] = STATE(552), + [sym_defer_stmt] = STATE(552), + [sym_assert_stmt] = STATE(552), + [sym_declaration_stmt] = STATE(552), + [sym_nextcase_stmt] = STATE(552), + [sym_switch_stmt] = STATE(552), + [sym_if_stmt] = STATE(552), + [sym_for_stmt] = STATE(552), + [sym_foreach_stmt] = STATE(552), + [sym_while_stmt] = STATE(552), + [sym_do_stmt] = STATE(552), + [sym_asm_block_stmt] = STATE(552), + [sym_ct_assert_stmt] = STATE(552), + [sym_ct_echo_stmt] = STATE(552), + [sym_ct_if_stmt] = STATE(552), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(552), + [sym_ct_for_stmt] = STATE(552), + [sym_ct_foreach_stmt] = STATE(552), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32199,7 +31816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_SEMI] = ACTIONS(1101), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(409), [anon_sym_const] = ACTIONS(411), @@ -32289,75 +31906,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [106] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(106), - [sym_doc_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(604), - [sym_expr_stmt] = STATE(604), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(604), - [sym_return_stmt] = STATE(604), - [sym_continue_stmt] = STATE(604), - [sym_break_stmt] = STATE(604), - [sym_defer_stmt] = STATE(604), - [sym_assert_stmt] = STATE(604), - [sym_declaration_stmt] = STATE(604), - [sym_nextcase_stmt] = STATE(604), - [sym_switch_stmt] = STATE(604), - [sym_if_stmt] = STATE(604), - [sym_for_stmt] = STATE(604), - [sym_foreach_stmt] = STATE(604), - [sym_while_stmt] = STATE(604), - [sym_do_stmt] = STATE(604), - [sym_asm_block_stmt] = STATE(604), - [sym_ct_assert_stmt] = STATE(604), - [sym_ct_echo_stmt] = STATE(604), - [sym_ct_if_stmt] = STATE(604), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(604), - [sym_ct_for_stmt] = STATE(604), - [sym_ct_foreach_stmt] = STATE(604), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [104] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(104), + [sym_doc_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(561), + [sym_expr_stmt] = STATE(561), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(561), + [sym_return_stmt] = STATE(561), + [sym_continue_stmt] = STATE(561), + [sym_break_stmt] = STATE(561), + [sym_defer_stmt] = STATE(561), + [sym_assert_stmt] = STATE(561), + [sym_declaration_stmt] = STATE(561), + [sym_nextcase_stmt] = STATE(561), + [sym_switch_stmt] = STATE(561), + [sym_if_stmt] = STATE(561), + [sym_for_stmt] = STATE(561), + [sym_foreach_stmt] = STATE(561), + [sym_while_stmt] = STATE(561), + [sym_do_stmt] = STATE(561), + [sym_asm_block_stmt] = STATE(561), + [sym_ct_assert_stmt] = STATE(561), + [sym_ct_echo_stmt] = STATE(561), + [sym_ct_if_stmt] = STATE(561), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(561), + [sym_ct_for_stmt] = STATE(561), + [sym_ct_foreach_stmt] = STATE(561), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32378,37 +31995,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1103), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -32468,75 +32085,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [107] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(107), - [sym_doc_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(613), - [sym_expr_stmt] = STATE(613), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(613), - [sym_return_stmt] = STATE(613), - [sym_continue_stmt] = STATE(613), - [sym_break_stmt] = STATE(613), - [sym_defer_stmt] = STATE(613), - [sym_assert_stmt] = STATE(613), - [sym_declaration_stmt] = STATE(613), - [sym_nextcase_stmt] = STATE(613), - [sym_switch_stmt] = STATE(613), - [sym_if_stmt] = STATE(613), - [sym_for_stmt] = STATE(613), - [sym_foreach_stmt] = STATE(613), - [sym_while_stmt] = STATE(613), - [sym_do_stmt] = STATE(613), - [sym_asm_block_stmt] = STATE(613), - [sym_ct_assert_stmt] = STATE(613), - [sym_ct_echo_stmt] = STATE(613), - [sym_ct_if_stmt] = STATE(613), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(613), - [sym_ct_for_stmt] = STATE(613), - [sym_ct_foreach_stmt] = STATE(613), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [105] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(105), + [sym_doc_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(557), + [sym_expr_stmt] = STATE(557), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(557), + [sym_return_stmt] = STATE(557), + [sym_continue_stmt] = STATE(557), + [sym_break_stmt] = STATE(557), + [sym_defer_stmt] = STATE(557), + [sym_assert_stmt] = STATE(557), + [sym_declaration_stmt] = STATE(557), + [sym_nextcase_stmt] = STATE(557), + [sym_switch_stmt] = STATE(557), + [sym_if_stmt] = STATE(557), + [sym_for_stmt] = STATE(557), + [sym_foreach_stmt] = STATE(557), + [sym_while_stmt] = STATE(557), + [sym_do_stmt] = STATE(557), + [sym_asm_block_stmt] = STATE(557), + [sym_ct_assert_stmt] = STATE(557), + [sym_ct_echo_stmt] = STATE(557), + [sym_ct_if_stmt] = STATE(557), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(557), + [sym_ct_for_stmt] = STATE(557), + [sym_ct_foreach_stmt] = STATE(557), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32557,37 +32174,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1109), + [anon_sym_SEMI] = ACTIONS(1105), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -32647,75 +32264,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [108] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(108), - [sym_doc_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(614), - [sym_expr_stmt] = STATE(614), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(614), - [sym_return_stmt] = STATE(614), - [sym_continue_stmt] = STATE(614), - [sym_break_stmt] = STATE(614), - [sym_defer_stmt] = STATE(614), - [sym_assert_stmt] = STATE(614), - [sym_declaration_stmt] = STATE(614), - [sym_nextcase_stmt] = STATE(614), - [sym_switch_stmt] = STATE(614), - [sym_if_stmt] = STATE(614), - [sym_for_stmt] = STATE(614), - [sym_foreach_stmt] = STATE(614), - [sym_while_stmt] = STATE(614), - [sym_do_stmt] = STATE(614), - [sym_asm_block_stmt] = STATE(614), - [sym_ct_assert_stmt] = STATE(614), - [sym_ct_echo_stmt] = STATE(614), - [sym_ct_if_stmt] = STATE(614), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(614), - [sym_ct_for_stmt] = STATE(614), - [sym_ct_foreach_stmt] = STATE(614), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [106] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(106), + [sym_doc_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(504), + [sym_expr_stmt] = STATE(504), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(504), + [sym_return_stmt] = STATE(504), + [sym_continue_stmt] = STATE(504), + [sym_break_stmt] = STATE(504), + [sym_defer_stmt] = STATE(504), + [sym_assert_stmt] = STATE(504), + [sym_declaration_stmt] = STATE(504), + [sym_nextcase_stmt] = STATE(504), + [sym_switch_stmt] = STATE(504), + [sym_if_stmt] = STATE(504), + [sym_for_stmt] = STATE(504), + [sym_foreach_stmt] = STATE(504), + [sym_while_stmt] = STATE(504), + [sym_do_stmt] = STATE(504), + [sym_asm_block_stmt] = STATE(504), + [sym_ct_assert_stmt] = STATE(504), + [sym_ct_echo_stmt] = STATE(504), + [sym_ct_if_stmt] = STATE(504), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(504), + [sym_ct_for_stmt] = STATE(504), + [sym_ct_foreach_stmt] = STATE(504), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32736,37 +32353,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1107), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -32826,75 +32443,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [109] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(109), - [sym_doc_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(615), - [sym_expr_stmt] = STATE(615), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(615), - [sym_return_stmt] = STATE(615), - [sym_continue_stmt] = STATE(615), - [sym_break_stmt] = STATE(615), - [sym_defer_stmt] = STATE(615), - [sym_assert_stmt] = STATE(615), - [sym_declaration_stmt] = STATE(615), - [sym_nextcase_stmt] = STATE(615), - [sym_switch_stmt] = STATE(615), - [sym_if_stmt] = STATE(615), - [sym_for_stmt] = STATE(615), - [sym_foreach_stmt] = STATE(615), - [sym_while_stmt] = STATE(615), - [sym_do_stmt] = STATE(615), - [sym_asm_block_stmt] = STATE(615), - [sym_ct_assert_stmt] = STATE(615), - [sym_ct_echo_stmt] = STATE(615), - [sym_ct_if_stmt] = STATE(615), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(615), - [sym_ct_for_stmt] = STATE(615), - [sym_ct_foreach_stmt] = STATE(615), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [107] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(107), + [sym_doc_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(370), + [sym_expr_stmt] = STATE(370), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(370), + [sym_return_stmt] = STATE(370), + [sym_continue_stmt] = STATE(370), + [sym_break_stmt] = STATE(370), + [sym_defer_stmt] = STATE(370), + [sym_assert_stmt] = STATE(370), + [sym_declaration_stmt] = STATE(370), + [sym_nextcase_stmt] = STATE(370), + [sym_switch_stmt] = STATE(370), + [sym_if_stmt] = STATE(370), + [sym_for_stmt] = STATE(370), + [sym_foreach_stmt] = STATE(370), + [sym_while_stmt] = STATE(370), + [sym_do_stmt] = STATE(370), + [sym_asm_block_stmt] = STATE(370), + [sym_ct_assert_stmt] = STATE(370), + [sym_ct_echo_stmt] = STATE(370), + [sym_ct_if_stmt] = STATE(370), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(370), + [sym_ct_for_stmt] = STATE(370), + [sym_ct_foreach_stmt] = STATE(370), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32915,37 +32532,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1113), + [anon_sym_SEMI] = ACTIONS(1109), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -33005,75 +32622,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [110] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(110), - [sym_doc_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [108] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(108), + [sym_doc_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(371), + [sym_expr_stmt] = STATE(371), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(371), + [sym_return_stmt] = STATE(371), + [sym_continue_stmt] = STATE(371), + [sym_break_stmt] = STATE(371), + [sym_defer_stmt] = STATE(371), + [sym_assert_stmt] = STATE(371), + [sym_declaration_stmt] = STATE(371), + [sym_nextcase_stmt] = STATE(371), + [sym_switch_stmt] = STATE(371), + [sym_if_stmt] = STATE(371), + [sym_for_stmt] = STATE(371), + [sym_foreach_stmt] = STATE(371), + [sym_while_stmt] = STATE(371), + [sym_do_stmt] = STATE(371), + [sym_asm_block_stmt] = STATE(371), + [sym_ct_assert_stmt] = STATE(371), + [sym_ct_echo_stmt] = STATE(371), + [sym_ct_if_stmt] = STATE(371), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(371), + [sym_ct_for_stmt] = STATE(371), + [sym_ct_foreach_stmt] = STATE(371), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33094,7 +32711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_SEMI] = ACTIONS(1111), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), [anon_sym_const] = ACTIONS(103), @@ -33184,75 +32801,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [111] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(111), - [sym_doc_comment] = STATE(111), - [sym_block_comment] = STATE(111), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(628), - [sym_expr_stmt] = STATE(628), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(628), - [sym_return_stmt] = STATE(628), - [sym_continue_stmt] = STATE(628), - [sym_break_stmt] = STATE(628), - [sym_defer_stmt] = STATE(628), - [sym_assert_stmt] = STATE(628), - [sym_declaration_stmt] = STATE(628), - [sym_nextcase_stmt] = STATE(628), - [sym_switch_stmt] = STATE(628), - [sym_if_stmt] = STATE(628), - [sym_for_stmt] = STATE(628), - [sym_foreach_stmt] = STATE(628), - [sym_while_stmt] = STATE(628), - [sym_do_stmt] = STATE(628), - [sym_asm_block_stmt] = STATE(628), - [sym_ct_assert_stmt] = STATE(628), - [sym_ct_echo_stmt] = STATE(628), - [sym_ct_if_stmt] = STATE(628), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(628), - [sym_ct_for_stmt] = STATE(628), - [sym_ct_foreach_stmt] = STATE(628), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [109] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(109), + [sym_doc_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(372), + [sym_expr_stmt] = STATE(372), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(372), + [sym_return_stmt] = STATE(372), + [sym_continue_stmt] = STATE(372), + [sym_break_stmt] = STATE(372), + [sym_defer_stmt] = STATE(372), + [sym_assert_stmt] = STATE(372), + [sym_declaration_stmt] = STATE(372), + [sym_nextcase_stmt] = STATE(372), + [sym_switch_stmt] = STATE(372), + [sym_if_stmt] = STATE(372), + [sym_for_stmt] = STATE(372), + [sym_foreach_stmt] = STATE(372), + [sym_while_stmt] = STATE(372), + [sym_do_stmt] = STATE(372), + [sym_asm_block_stmt] = STATE(372), + [sym_ct_assert_stmt] = STATE(372), + [sym_ct_echo_stmt] = STATE(372), + [sym_ct_if_stmt] = STATE(372), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(372), + [sym_ct_for_stmt] = STATE(372), + [sym_ct_foreach_stmt] = STATE(372), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33273,37 +32890,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1117), + [anon_sym_SEMI] = ACTIONS(1113), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -33363,75 +32980,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [112] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(112), - [sym_doc_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(629), - [sym_expr_stmt] = STATE(629), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(629), - [sym_return_stmt] = STATE(629), - [sym_continue_stmt] = STATE(629), - [sym_break_stmt] = STATE(629), - [sym_defer_stmt] = STATE(629), - [sym_assert_stmt] = STATE(629), - [sym_declaration_stmt] = STATE(629), - [sym_nextcase_stmt] = STATE(629), - [sym_switch_stmt] = STATE(629), - [sym_if_stmt] = STATE(629), - [sym_for_stmt] = STATE(629), - [sym_foreach_stmt] = STATE(629), - [sym_while_stmt] = STATE(629), - [sym_do_stmt] = STATE(629), - [sym_asm_block_stmt] = STATE(629), - [sym_ct_assert_stmt] = STATE(629), - [sym_ct_echo_stmt] = STATE(629), - [sym_ct_if_stmt] = STATE(629), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(629), - [sym_ct_for_stmt] = STATE(629), - [sym_ct_foreach_stmt] = STATE(629), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [110] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(110), + [sym_doc_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(599), + [sym_expr_stmt] = STATE(599), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(599), + [sym_return_stmt] = STATE(599), + [sym_continue_stmt] = STATE(599), + [sym_break_stmt] = STATE(599), + [sym_defer_stmt] = STATE(599), + [sym_assert_stmt] = STATE(599), + [sym_declaration_stmt] = STATE(599), + [sym_nextcase_stmt] = STATE(599), + [sym_switch_stmt] = STATE(599), + [sym_if_stmt] = STATE(599), + [sym_for_stmt] = STATE(599), + [sym_foreach_stmt] = STATE(599), + [sym_while_stmt] = STATE(599), + [sym_do_stmt] = STATE(599), + [sym_asm_block_stmt] = STATE(599), + [sym_ct_assert_stmt] = STATE(599), + [sym_ct_echo_stmt] = STATE(599), + [sym_ct_if_stmt] = STATE(599), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(599), + [sym_ct_for_stmt] = STATE(599), + [sym_ct_foreach_stmt] = STATE(599), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33452,37 +33069,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(1115), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -33542,75 +33159,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [113] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(113), - [sym_doc_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1201), - [sym_const_declaration] = STATE(592), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(579), - [sym_expr_stmt] = STATE(579), - [sym_var_decl] = STATE(1967), - [sym_var_stmt] = STATE(579), - [sym_return_stmt] = STATE(579), - [sym_continue_stmt] = STATE(579), - [sym_break_stmt] = STATE(579), - [sym_defer_stmt] = STATE(579), - [sym_assert_stmt] = STATE(579), - [sym_declaration_stmt] = STATE(579), - [sym_nextcase_stmt] = STATE(579), - [sym_switch_stmt] = STATE(579), - [sym_if_stmt] = STATE(579), - [sym_for_stmt] = STATE(579), - [sym_foreach_stmt] = STATE(579), - [sym_while_stmt] = STATE(579), - [sym_do_stmt] = STATE(579), - [sym_asm_block_stmt] = STATE(579), - [sym_ct_assert_stmt] = STATE(579), - [sym_ct_echo_stmt] = STATE(579), - [sym_ct_if_stmt] = STATE(579), - [sym__ct_switch] = STATE(1579), - [sym_ct_switch_stmt] = STATE(579), - [sym_ct_for_stmt] = STATE(579), - [sym_ct_foreach_stmt] = STATE(579), - [sym__expr] = STATE(1080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1382), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [111] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(111), + [sym_doc_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(609), + [sym_expr_stmt] = STATE(609), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(609), + [sym_return_stmt] = STATE(609), + [sym_continue_stmt] = STATE(609), + [sym_break_stmt] = STATE(609), + [sym_defer_stmt] = STATE(609), + [sym_assert_stmt] = STATE(609), + [sym_declaration_stmt] = STATE(609), + [sym_nextcase_stmt] = STATE(609), + [sym_switch_stmt] = STATE(609), + [sym_if_stmt] = STATE(609), + [sym_for_stmt] = STATE(609), + [sym_foreach_stmt] = STATE(609), + [sym_while_stmt] = STATE(609), + [sym_do_stmt] = STATE(609), + [sym_asm_block_stmt] = STATE(609), + [sym_ct_assert_stmt] = STATE(609), + [sym_ct_echo_stmt] = STATE(609), + [sym_ct_if_stmt] = STATE(609), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(609), + [sym_ct_for_stmt] = STATE(609), + [sym_ct_foreach_stmt] = STATE(609), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33631,37 +33248,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1121), + [anon_sym_SEMI] = ACTIONS(1117), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_const] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_break] = ACTIONS(577), - [anon_sym_defer] = ACTIONS(579), - [anon_sym_assert] = ACTIONS(581), - [anon_sym_nextcase] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(585), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_foreach] = ACTIONS(591), - [anon_sym_foreach_r] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_DOLLARassert] = ACTIONS(599), - [anon_sym_DOLLARerror] = ACTIONS(601), - [anon_sym_DOLLARecho] = ACTIONS(603), - [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_DOLLARforeach] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -33721,75 +33338,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [114] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(114), - [sym_doc_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), + [112] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(112), + [sym_doc_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(413), - [sym_expr_stmt] = STATE(413), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(413), - [sym_return_stmt] = STATE(413), - [sym_continue_stmt] = STATE(413), - [sym_break_stmt] = STATE(413), - [sym_defer_stmt] = STATE(413), - [sym_assert_stmt] = STATE(413), - [sym_declaration_stmt] = STATE(413), - [sym_nextcase_stmt] = STATE(413), - [sym_switch_stmt] = STATE(413), - [sym_if_stmt] = STATE(413), - [sym_for_stmt] = STATE(413), - [sym_foreach_stmt] = STATE(413), - [sym_while_stmt] = STATE(413), - [sym_do_stmt] = STATE(413), - [sym_asm_block_stmt] = STATE(413), - [sym_ct_assert_stmt] = STATE(413), - [sym_ct_echo_stmt] = STATE(413), - [sym_ct_if_stmt] = STATE(413), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(413), - [sym_ct_for_stmt] = STATE(413), - [sym_ct_foreach_stmt] = STATE(413), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(610), + [sym_expr_stmt] = STATE(610), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(610), + [sym_return_stmt] = STATE(610), + [sym_continue_stmt] = STATE(610), + [sym_break_stmt] = STATE(610), + [sym_defer_stmt] = STATE(610), + [sym_assert_stmt] = STATE(610), + [sym_declaration_stmt] = STATE(610), + [sym_nextcase_stmt] = STATE(610), + [sym_switch_stmt] = STATE(610), + [sym_if_stmt] = STATE(610), + [sym_for_stmt] = STATE(610), + [sym_foreach_stmt] = STATE(610), + [sym_while_stmt] = STATE(610), + [sym_do_stmt] = STATE(610), + [sym_asm_block_stmt] = STATE(610), + [sym_ct_assert_stmt] = STATE(610), + [sym_ct_echo_stmt] = STATE(610), + [sym_ct_if_stmt] = STATE(610), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(610), + [sym_ct_for_stmt] = STATE(610), + [sym_ct_foreach_stmt] = STATE(610), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33810,37 +33427,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1123), + [anon_sym_SEMI] = ACTIONS(1119), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -33900,75 +33517,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [115] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(115), - [sym_doc_comment] = STATE(115), - [sym_block_comment] = STATE(115), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), + [113] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(113), + [sym_doc_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(414), - [sym_expr_stmt] = STATE(414), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(414), - [sym_return_stmt] = STATE(414), - [sym_continue_stmt] = STATE(414), - [sym_break_stmt] = STATE(414), - [sym_defer_stmt] = STATE(414), - [sym_assert_stmt] = STATE(414), - [sym_declaration_stmt] = STATE(414), - [sym_nextcase_stmt] = STATE(414), - [sym_switch_stmt] = STATE(414), - [sym_if_stmt] = STATE(414), - [sym_for_stmt] = STATE(414), - [sym_foreach_stmt] = STATE(414), - [sym_while_stmt] = STATE(414), - [sym_do_stmt] = STATE(414), - [sym_asm_block_stmt] = STATE(414), - [sym_ct_assert_stmt] = STATE(414), - [sym_ct_echo_stmt] = STATE(414), - [sym_ct_if_stmt] = STATE(414), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(414), - [sym_ct_for_stmt] = STATE(414), - [sym_ct_foreach_stmt] = STATE(414), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(623), + [sym_expr_stmt] = STATE(623), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(623), + [sym_return_stmt] = STATE(623), + [sym_continue_stmt] = STATE(623), + [sym_break_stmt] = STATE(623), + [sym_defer_stmt] = STATE(623), + [sym_assert_stmt] = STATE(623), + [sym_declaration_stmt] = STATE(623), + [sym_nextcase_stmt] = STATE(623), + [sym_switch_stmt] = STATE(623), + [sym_if_stmt] = STATE(623), + [sym_for_stmt] = STATE(623), + [sym_foreach_stmt] = STATE(623), + [sym_while_stmt] = STATE(623), + [sym_do_stmt] = STATE(623), + [sym_asm_block_stmt] = STATE(623), + [sym_ct_assert_stmt] = STATE(623), + [sym_ct_echo_stmt] = STATE(623), + [sym_ct_if_stmt] = STATE(623), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(623), + [sym_ct_for_stmt] = STATE(623), + [sym_ct_foreach_stmt] = STATE(623), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33989,37 +33606,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1125), + [anon_sym_SEMI] = ACTIONS(1121), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -34079,75 +33696,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [116] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(116), - [sym_doc_comment] = STATE(116), - [sym_block_comment] = STATE(116), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(674), - [sym_expr_stmt] = STATE(674), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(674), - [sym_return_stmt] = STATE(674), - [sym_continue_stmt] = STATE(674), - [sym_break_stmt] = STATE(674), - [sym_defer_stmt] = STATE(674), - [sym_assert_stmt] = STATE(674), - [sym_declaration_stmt] = STATE(674), - [sym_nextcase_stmt] = STATE(674), - [sym_switch_stmt] = STATE(674), - [sym_if_stmt] = STATE(674), - [sym_for_stmt] = STATE(674), - [sym_foreach_stmt] = STATE(674), - [sym_while_stmt] = STATE(674), - [sym_do_stmt] = STATE(674), - [sym_asm_block_stmt] = STATE(674), - [sym_ct_assert_stmt] = STATE(674), - [sym_ct_echo_stmt] = STATE(674), - [sym_ct_if_stmt] = STATE(674), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(674), - [sym_ct_for_stmt] = STATE(674), - [sym_ct_foreach_stmt] = STATE(674), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [114] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(114), + [sym_doc_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(624), + [sym_expr_stmt] = STATE(624), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(624), + [sym_return_stmt] = STATE(624), + [sym_continue_stmt] = STATE(624), + [sym_break_stmt] = STATE(624), + [sym_defer_stmt] = STATE(624), + [sym_assert_stmt] = STATE(624), + [sym_declaration_stmt] = STATE(624), + [sym_nextcase_stmt] = STATE(624), + [sym_switch_stmt] = STATE(624), + [sym_if_stmt] = STATE(624), + [sym_for_stmt] = STATE(624), + [sym_foreach_stmt] = STATE(624), + [sym_while_stmt] = STATE(624), + [sym_do_stmt] = STATE(624), + [sym_asm_block_stmt] = STATE(624), + [sym_ct_assert_stmt] = STATE(624), + [sym_ct_echo_stmt] = STATE(624), + [sym_ct_if_stmt] = STATE(624), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(624), + [sym_ct_for_stmt] = STATE(624), + [sym_ct_foreach_stmt] = STATE(624), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34168,7 +33785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1123), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_const] = ACTIONS(665), @@ -34198,7 +33815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -34258,75 +33875,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [117] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(117), - [sym_doc_comment] = STATE(117), - [sym_block_comment] = STATE(117), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(683), - [sym_expr_stmt] = STATE(683), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(683), - [sym_return_stmt] = STATE(683), - [sym_continue_stmt] = STATE(683), - [sym_break_stmt] = STATE(683), - [sym_defer_stmt] = STATE(683), - [sym_assert_stmt] = STATE(683), - [sym_declaration_stmt] = STATE(683), - [sym_nextcase_stmt] = STATE(683), - [sym_switch_stmt] = STATE(683), - [sym_if_stmt] = STATE(683), - [sym_for_stmt] = STATE(683), - [sym_foreach_stmt] = STATE(683), - [sym_while_stmt] = STATE(683), - [sym_do_stmt] = STATE(683), - [sym_asm_block_stmt] = STATE(683), - [sym_ct_assert_stmt] = STATE(683), - [sym_ct_echo_stmt] = STATE(683), - [sym_ct_if_stmt] = STATE(683), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(683), - [sym_ct_for_stmt] = STATE(683), - [sym_ct_foreach_stmt] = STATE(683), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [115] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(115), + [sym_doc_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(625), + [sym_expr_stmt] = STATE(625), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(625), + [sym_return_stmt] = STATE(625), + [sym_continue_stmt] = STATE(625), + [sym_break_stmt] = STATE(625), + [sym_defer_stmt] = STATE(625), + [sym_assert_stmt] = STATE(625), + [sym_declaration_stmt] = STATE(625), + [sym_nextcase_stmt] = STATE(625), + [sym_switch_stmt] = STATE(625), + [sym_if_stmt] = STATE(625), + [sym_for_stmt] = STATE(625), + [sym_foreach_stmt] = STATE(625), + [sym_while_stmt] = STATE(625), + [sym_do_stmt] = STATE(625), + [sym_asm_block_stmt] = STATE(625), + [sym_ct_assert_stmt] = STATE(625), + [sym_ct_echo_stmt] = STATE(625), + [sym_ct_if_stmt] = STATE(625), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(625), + [sym_ct_for_stmt] = STATE(625), + [sym_ct_foreach_stmt] = STATE(625), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34347,7 +33964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1125), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_const] = ACTIONS(665), @@ -34377,7 +33994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(699), [anon_sym_DOLLARswitch] = ACTIONS(149), [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARforeach] = ACTIONS(705), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -34437,75 +34054,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [118] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(118), - [sym_doc_comment] = STATE(118), - [sym_block_comment] = STATE(118), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(684), - [sym_expr_stmt] = STATE(684), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(684), - [sym_return_stmt] = STATE(684), - [sym_continue_stmt] = STATE(684), - [sym_break_stmt] = STATE(684), - [sym_defer_stmt] = STATE(684), - [sym_assert_stmt] = STATE(684), - [sym_declaration_stmt] = STATE(684), - [sym_nextcase_stmt] = STATE(684), - [sym_switch_stmt] = STATE(684), - [sym_if_stmt] = STATE(684), - [sym_for_stmt] = STATE(684), - [sym_foreach_stmt] = STATE(684), - [sym_while_stmt] = STATE(684), - [sym_do_stmt] = STATE(684), - [sym_asm_block_stmt] = STATE(684), - [sym_ct_assert_stmt] = STATE(684), - [sym_ct_echo_stmt] = STATE(684), - [sym_ct_if_stmt] = STATE(684), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(684), - [sym_ct_for_stmt] = STATE(684), - [sym_ct_foreach_stmt] = STATE(684), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [116] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(116), + [sym_doc_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(669), + [sym_expr_stmt] = STATE(669), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(669), + [sym_return_stmt] = STATE(669), + [sym_continue_stmt] = STATE(669), + [sym_break_stmt] = STATE(669), + [sym_defer_stmt] = STATE(669), + [sym_assert_stmt] = STATE(669), + [sym_declaration_stmt] = STATE(669), + [sym_nextcase_stmt] = STATE(669), + [sym_switch_stmt] = STATE(669), + [sym_if_stmt] = STATE(669), + [sym_for_stmt] = STATE(669), + [sym_foreach_stmt] = STATE(669), + [sym_while_stmt] = STATE(669), + [sym_do_stmt] = STATE(669), + [sym_asm_block_stmt] = STATE(669), + [sym_ct_assert_stmt] = STATE(669), + [sym_ct_echo_stmt] = STATE(669), + [sym_ct_if_stmt] = STATE(669), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(669), + [sym_ct_for_stmt] = STATE(669), + [sym_ct_foreach_stmt] = STATE(669), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34526,37 +34143,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1131), + [anon_sym_SEMI] = ACTIONS(1127), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -34616,75 +34233,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [119] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(119), - [sym_doc_comment] = STATE(119), - [sym_block_comment] = STATE(119), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(685), - [sym_expr_stmt] = STATE(685), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(685), - [sym_return_stmt] = STATE(685), - [sym_continue_stmt] = STATE(685), - [sym_break_stmt] = STATE(685), - [sym_defer_stmt] = STATE(685), - [sym_assert_stmt] = STATE(685), - [sym_declaration_stmt] = STATE(685), - [sym_nextcase_stmt] = STATE(685), - [sym_switch_stmt] = STATE(685), - [sym_if_stmt] = STATE(685), - [sym_for_stmt] = STATE(685), - [sym_foreach_stmt] = STATE(685), - [sym_while_stmt] = STATE(685), - [sym_do_stmt] = STATE(685), - [sym_asm_block_stmt] = STATE(685), - [sym_ct_assert_stmt] = STATE(685), - [sym_ct_echo_stmt] = STATE(685), - [sym_ct_if_stmt] = STATE(685), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(685), - [sym_ct_for_stmt] = STATE(685), - [sym_ct_foreach_stmt] = STATE(685), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [117] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(117), + [sym_doc_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(352), + [sym_expr_stmt] = STATE(352), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(352), + [sym_return_stmt] = STATE(352), + [sym_continue_stmt] = STATE(352), + [sym_break_stmt] = STATE(352), + [sym_defer_stmt] = STATE(352), + [sym_assert_stmt] = STATE(352), + [sym_declaration_stmt] = STATE(352), + [sym_nextcase_stmt] = STATE(352), + [sym_switch_stmt] = STATE(352), + [sym_if_stmt] = STATE(352), + [sym_for_stmt] = STATE(352), + [sym_foreach_stmt] = STATE(352), + [sym_while_stmt] = STATE(352), + [sym_do_stmt] = STATE(352), + [sym_asm_block_stmt] = STATE(352), + [sym_ct_assert_stmt] = STATE(352), + [sym_ct_echo_stmt] = STATE(352), + [sym_ct_if_stmt] = STATE(352), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(352), + [sym_ct_for_stmt] = STATE(352), + [sym_ct_foreach_stmt] = STATE(352), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34705,37 +34322,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1129), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -34795,75 +34412,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [120] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(120), - [sym_doc_comment] = STATE(120), - [sym_block_comment] = STATE(120), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(699), - [sym_expr_stmt] = STATE(699), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(699), - [sym_return_stmt] = STATE(699), - [sym_continue_stmt] = STATE(699), - [sym_break_stmt] = STATE(699), - [sym_defer_stmt] = STATE(699), - [sym_assert_stmt] = STATE(699), - [sym_declaration_stmt] = STATE(699), - [sym_nextcase_stmt] = STATE(699), - [sym_switch_stmt] = STATE(699), - [sym_if_stmt] = STATE(699), - [sym_for_stmt] = STATE(699), - [sym_foreach_stmt] = STATE(699), - [sym_while_stmt] = STATE(699), - [sym_do_stmt] = STATE(699), - [sym_asm_block_stmt] = STATE(699), - [sym_ct_assert_stmt] = STATE(699), - [sym_ct_echo_stmt] = STATE(699), - [sym_ct_if_stmt] = STATE(699), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(699), - [sym_ct_for_stmt] = STATE(699), - [sym_ct_foreach_stmt] = STATE(699), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [118] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(118), + [sym_doc_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(679), + [sym_expr_stmt] = STATE(679), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(679), + [sym_return_stmt] = STATE(679), + [sym_continue_stmt] = STATE(679), + [sym_break_stmt] = STATE(679), + [sym_defer_stmt] = STATE(679), + [sym_assert_stmt] = STATE(679), + [sym_declaration_stmt] = STATE(679), + [sym_nextcase_stmt] = STATE(679), + [sym_switch_stmt] = STATE(679), + [sym_if_stmt] = STATE(679), + [sym_for_stmt] = STATE(679), + [sym_foreach_stmt] = STATE(679), + [sym_while_stmt] = STATE(679), + [sym_do_stmt] = STATE(679), + [sym_asm_block_stmt] = STATE(679), + [sym_ct_assert_stmt] = STATE(679), + [sym_ct_echo_stmt] = STATE(679), + [sym_ct_if_stmt] = STATE(679), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(679), + [sym_ct_for_stmt] = STATE(679), + [sym_ct_foreach_stmt] = STATE(679), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34884,37 +34501,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(1131), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -34974,75 +34591,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [121] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(121), - [sym_doc_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(701), - [sym_expr_stmt] = STATE(701), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(701), - [sym_return_stmt] = STATE(701), - [sym_continue_stmt] = STATE(701), - [sym_break_stmt] = STATE(701), - [sym_defer_stmt] = STATE(701), - [sym_assert_stmt] = STATE(701), - [sym_declaration_stmt] = STATE(701), - [sym_nextcase_stmt] = STATE(701), - [sym_switch_stmt] = STATE(701), - [sym_if_stmt] = STATE(701), - [sym_for_stmt] = STATE(701), - [sym_foreach_stmt] = STATE(701), - [sym_while_stmt] = STATE(701), - [sym_do_stmt] = STATE(701), - [sym_asm_block_stmt] = STATE(701), - [sym_ct_assert_stmt] = STATE(701), - [sym_ct_echo_stmt] = STATE(701), - [sym_ct_if_stmt] = STATE(701), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(701), - [sym_ct_for_stmt] = STATE(701), - [sym_ct_foreach_stmt] = STATE(701), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [119] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(119), + [sym_doc_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(680), + [sym_expr_stmt] = STATE(680), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(680), + [sym_return_stmt] = STATE(680), + [sym_continue_stmt] = STATE(680), + [sym_break_stmt] = STATE(680), + [sym_defer_stmt] = STATE(680), + [sym_assert_stmt] = STATE(680), + [sym_declaration_stmt] = STATE(680), + [sym_nextcase_stmt] = STATE(680), + [sym_switch_stmt] = STATE(680), + [sym_if_stmt] = STATE(680), + [sym_for_stmt] = STATE(680), + [sym_foreach_stmt] = STATE(680), + [sym_while_stmt] = STATE(680), + [sym_do_stmt] = STATE(680), + [sym_asm_block_stmt] = STATE(680), + [sym_ct_assert_stmt] = STATE(680), + [sym_ct_echo_stmt] = STATE(680), + [sym_ct_if_stmt] = STATE(680), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(680), + [sym_ct_for_stmt] = STATE(680), + [sym_ct_foreach_stmt] = STATE(680), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35063,37 +34680,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1133), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -35153,75 +34770,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [122] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(122), - [sym_doc_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(746), - [sym_expr_stmt] = STATE(746), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(746), - [sym_return_stmt] = STATE(746), - [sym_continue_stmt] = STATE(746), - [sym_break_stmt] = STATE(746), - [sym_defer_stmt] = STATE(746), - [sym_assert_stmt] = STATE(746), - [sym_declaration_stmt] = STATE(746), - [sym_nextcase_stmt] = STATE(746), - [sym_switch_stmt] = STATE(746), - [sym_if_stmt] = STATE(746), - [sym_for_stmt] = STATE(746), - [sym_foreach_stmt] = STATE(746), - [sym_while_stmt] = STATE(746), - [sym_do_stmt] = STATE(746), - [sym_asm_block_stmt] = STATE(746), - [sym_ct_assert_stmt] = STATE(746), - [sym_ct_echo_stmt] = STATE(746), - [sym_ct_if_stmt] = STATE(746), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(746), - [sym_ct_for_stmt] = STATE(746), - [sym_ct_foreach_stmt] = STATE(746), - [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [120] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(120), + [sym_doc_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(695), + [sym_expr_stmt] = STATE(695), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(695), + [sym_return_stmt] = STATE(695), + [sym_continue_stmt] = STATE(695), + [sym_break_stmt] = STATE(695), + [sym_defer_stmt] = STATE(695), + [sym_assert_stmt] = STATE(695), + [sym_declaration_stmt] = STATE(695), + [sym_nextcase_stmt] = STATE(695), + [sym_switch_stmt] = STATE(695), + [sym_if_stmt] = STATE(695), + [sym_for_stmt] = STATE(695), + [sym_foreach_stmt] = STATE(695), + [sym_while_stmt] = STATE(695), + [sym_do_stmt] = STATE(695), + [sym_asm_block_stmt] = STATE(695), + [sym_ct_assert_stmt] = STATE(695), + [sym_ct_echo_stmt] = STATE(695), + [sym_ct_if_stmt] = STATE(695), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(695), + [sym_ct_for_stmt] = STATE(695), + [sym_ct_foreach_stmt] = STATE(695), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35242,37 +34859,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(1135), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_const] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_break] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(625), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_nextcase] = ACTIONS(629), - [anon_sym_switch] = ACTIONS(631), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_foreach] = ACTIONS(637), - [anon_sym_foreach_r] = ACTIONS(637), - [anon_sym_while] = ACTIONS(639), - [anon_sym_do] = ACTIONS(641), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(643), - [anon_sym_DOLLARassert] = ACTIONS(645), - [anon_sym_DOLLARerror] = ACTIONS(647), - [anon_sym_DOLLARecho] = ACTIONS(649), - [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(655), - [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -35332,75 +34949,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [123] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(123), - [sym_doc_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(755), - [sym_expr_stmt] = STATE(755), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(755), - [sym_return_stmt] = STATE(755), - [sym_continue_stmt] = STATE(755), - [sym_break_stmt] = STATE(755), - [sym_defer_stmt] = STATE(755), - [sym_assert_stmt] = STATE(755), - [sym_declaration_stmt] = STATE(755), - [sym_nextcase_stmt] = STATE(755), - [sym_switch_stmt] = STATE(755), - [sym_if_stmt] = STATE(755), - [sym_for_stmt] = STATE(755), - [sym_foreach_stmt] = STATE(755), - [sym_while_stmt] = STATE(755), - [sym_do_stmt] = STATE(755), - [sym_asm_block_stmt] = STATE(755), - [sym_ct_assert_stmt] = STATE(755), - [sym_ct_echo_stmt] = STATE(755), - [sym_ct_if_stmt] = STATE(755), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(755), - [sym_ct_for_stmt] = STATE(755), - [sym_ct_foreach_stmt] = STATE(755), - [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [121] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(121), + [sym_doc_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(696), + [sym_expr_stmt] = STATE(696), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(696), + [sym_return_stmt] = STATE(696), + [sym_continue_stmt] = STATE(696), + [sym_break_stmt] = STATE(696), + [sym_defer_stmt] = STATE(696), + [sym_assert_stmt] = STATE(696), + [sym_declaration_stmt] = STATE(696), + [sym_nextcase_stmt] = STATE(696), + [sym_switch_stmt] = STATE(696), + [sym_if_stmt] = STATE(696), + [sym_for_stmt] = STATE(696), + [sym_foreach_stmt] = STATE(696), + [sym_while_stmt] = STATE(696), + [sym_do_stmt] = STATE(696), + [sym_asm_block_stmt] = STATE(696), + [sym_ct_assert_stmt] = STATE(696), + [sym_ct_echo_stmt] = STATE(696), + [sym_ct_if_stmt] = STATE(696), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(696), + [sym_ct_for_stmt] = STATE(696), + [sym_ct_foreach_stmt] = STATE(696), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35421,37 +35038,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1141), + [anon_sym_SEMI] = ACTIONS(1137), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_const] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_break] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(625), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_nextcase] = ACTIONS(629), - [anon_sym_switch] = ACTIONS(631), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_foreach] = ACTIONS(637), - [anon_sym_foreach_r] = ACTIONS(637), - [anon_sym_while] = ACTIONS(639), - [anon_sym_do] = ACTIONS(641), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(643), - [anon_sym_DOLLARassert] = ACTIONS(645), - [anon_sym_DOLLARerror] = ACTIONS(647), - [anon_sym_DOLLARecho] = ACTIONS(649), - [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(655), - [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -35511,75 +35128,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [124] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(124), - [sym_doc_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(756), - [sym_expr_stmt] = STATE(756), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(756), - [sym_return_stmt] = STATE(756), - [sym_continue_stmt] = STATE(756), - [sym_break_stmt] = STATE(756), - [sym_defer_stmt] = STATE(756), - [sym_assert_stmt] = STATE(756), - [sym_declaration_stmt] = STATE(756), - [sym_nextcase_stmt] = STATE(756), - [sym_switch_stmt] = STATE(756), - [sym_if_stmt] = STATE(756), - [sym_for_stmt] = STATE(756), - [sym_foreach_stmt] = STATE(756), - [sym_while_stmt] = STATE(756), - [sym_do_stmt] = STATE(756), - [sym_asm_block_stmt] = STATE(756), - [sym_ct_assert_stmt] = STATE(756), - [sym_ct_echo_stmt] = STATE(756), - [sym_ct_if_stmt] = STATE(756), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(756), - [sym_ct_for_stmt] = STATE(756), - [sym_ct_foreach_stmt] = STATE(756), - [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [122] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(122), + [sym_doc_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(697), + [sym_expr_stmt] = STATE(697), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(697), + [sym_return_stmt] = STATE(697), + [sym_continue_stmt] = STATE(697), + [sym_break_stmt] = STATE(697), + [sym_defer_stmt] = STATE(697), + [sym_assert_stmt] = STATE(697), + [sym_declaration_stmt] = STATE(697), + [sym_nextcase_stmt] = STATE(697), + [sym_switch_stmt] = STATE(697), + [sym_if_stmt] = STATE(697), + [sym_for_stmt] = STATE(697), + [sym_foreach_stmt] = STATE(697), + [sym_while_stmt] = STATE(697), + [sym_do_stmt] = STATE(697), + [sym_asm_block_stmt] = STATE(697), + [sym_ct_assert_stmt] = STATE(697), + [sym_ct_echo_stmt] = STATE(697), + [sym_ct_if_stmt] = STATE(697), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(697), + [sym_ct_for_stmt] = STATE(697), + [sym_ct_foreach_stmt] = STATE(697), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35600,37 +35217,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1143), + [anon_sym_SEMI] = ACTIONS(1139), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_const] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_break] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(625), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_nextcase] = ACTIONS(629), - [anon_sym_switch] = ACTIONS(631), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(633), - [anon_sym_for] = ACTIONS(635), - [anon_sym_foreach] = ACTIONS(637), - [anon_sym_foreach_r] = ACTIONS(637), - [anon_sym_while] = ACTIONS(639), - [anon_sym_do] = ACTIONS(641), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(643), - [anon_sym_DOLLARassert] = ACTIONS(645), - [anon_sym_DOLLARerror] = ACTIONS(647), - [anon_sym_DOLLARecho] = ACTIONS(649), - [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(655), - [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -35690,75 +35307,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [125] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(125), - [sym_doc_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(757), - [sym_expr_stmt] = STATE(757), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(757), - [sym_return_stmt] = STATE(757), - [sym_continue_stmt] = STATE(757), - [sym_break_stmt] = STATE(757), - [sym_defer_stmt] = STATE(757), - [sym_assert_stmt] = STATE(757), - [sym_declaration_stmt] = STATE(757), - [sym_nextcase_stmt] = STATE(757), - [sym_switch_stmt] = STATE(757), - [sym_if_stmt] = STATE(757), - [sym_for_stmt] = STATE(757), - [sym_foreach_stmt] = STATE(757), - [sym_while_stmt] = STATE(757), - [sym_do_stmt] = STATE(757), - [sym_asm_block_stmt] = STATE(757), - [sym_ct_assert_stmt] = STATE(757), - [sym_ct_echo_stmt] = STATE(757), - [sym_ct_if_stmt] = STATE(757), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(757), - [sym_ct_for_stmt] = STATE(757), - [sym_ct_foreach_stmt] = STATE(757), + [123] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(123), + [sym_doc_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(742), + [sym_expr_stmt] = STATE(742), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(742), + [sym_return_stmt] = STATE(742), + [sym_continue_stmt] = STATE(742), + [sym_break_stmt] = STATE(742), + [sym_defer_stmt] = STATE(742), + [sym_assert_stmt] = STATE(742), + [sym_declaration_stmt] = STATE(742), + [sym_nextcase_stmt] = STATE(742), + [sym_switch_stmt] = STATE(742), + [sym_if_stmt] = STATE(742), + [sym_for_stmt] = STATE(742), + [sym_foreach_stmt] = STATE(742), + [sym_while_stmt] = STATE(742), + [sym_do_stmt] = STATE(742), + [sym_asm_block_stmt] = STATE(742), + [sym_ct_assert_stmt] = STATE(742), + [sym_ct_echo_stmt] = STATE(742), + [sym_ct_if_stmt] = STATE(742), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(742), + [sym_ct_for_stmt] = STATE(742), + [sym_ct_foreach_stmt] = STATE(742), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35779,7 +35396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1141), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(615), [anon_sym_const] = ACTIONS(617), @@ -35869,75 +35486,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [126] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(126), - [sym_doc_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(772), - [sym_expr_stmt] = STATE(772), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(772), - [sym_return_stmt] = STATE(772), - [sym_continue_stmt] = STATE(772), - [sym_break_stmt] = STATE(772), - [sym_defer_stmt] = STATE(772), - [sym_assert_stmt] = STATE(772), - [sym_declaration_stmt] = STATE(772), - [sym_nextcase_stmt] = STATE(772), - [sym_switch_stmt] = STATE(772), - [sym_if_stmt] = STATE(772), - [sym_for_stmt] = STATE(772), - [sym_foreach_stmt] = STATE(772), - [sym_while_stmt] = STATE(772), - [sym_do_stmt] = STATE(772), - [sym_asm_block_stmt] = STATE(772), - [sym_ct_assert_stmt] = STATE(772), - [sym_ct_echo_stmt] = STATE(772), - [sym_ct_if_stmt] = STATE(772), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(772), - [sym_ct_for_stmt] = STATE(772), - [sym_ct_foreach_stmt] = STATE(772), + [124] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(124), + [sym_doc_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(751), + [sym_expr_stmt] = STATE(751), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(751), + [sym_return_stmt] = STATE(751), + [sym_continue_stmt] = STATE(751), + [sym_break_stmt] = STATE(751), + [sym_defer_stmt] = STATE(751), + [sym_assert_stmt] = STATE(751), + [sym_declaration_stmt] = STATE(751), + [sym_nextcase_stmt] = STATE(751), + [sym_switch_stmt] = STATE(751), + [sym_if_stmt] = STATE(751), + [sym_for_stmt] = STATE(751), + [sym_foreach_stmt] = STATE(751), + [sym_while_stmt] = STATE(751), + [sym_do_stmt] = STATE(751), + [sym_asm_block_stmt] = STATE(751), + [sym_ct_assert_stmt] = STATE(751), + [sym_ct_echo_stmt] = STATE(751), + [sym_ct_if_stmt] = STATE(751), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(751), + [sym_ct_for_stmt] = STATE(751), + [sym_ct_foreach_stmt] = STATE(751), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35958,7 +35575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(615), [anon_sym_const] = ACTIONS(617), @@ -36048,75 +35665,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [127] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(127), - [sym_doc_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(773), - [sym_expr_stmt] = STATE(773), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(773), - [sym_return_stmt] = STATE(773), - [sym_continue_stmt] = STATE(773), - [sym_break_stmt] = STATE(773), - [sym_defer_stmt] = STATE(773), - [sym_assert_stmt] = STATE(773), - [sym_declaration_stmt] = STATE(773), - [sym_nextcase_stmt] = STATE(773), - [sym_switch_stmt] = STATE(773), - [sym_if_stmt] = STATE(773), - [sym_for_stmt] = STATE(773), - [sym_foreach_stmt] = STATE(773), - [sym_while_stmt] = STATE(773), - [sym_do_stmt] = STATE(773), - [sym_asm_block_stmt] = STATE(773), - [sym_ct_assert_stmt] = STATE(773), - [sym_ct_echo_stmt] = STATE(773), - [sym_ct_if_stmt] = STATE(773), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(773), - [sym_ct_for_stmt] = STATE(773), - [sym_ct_foreach_stmt] = STATE(773), + [125] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(125), + [sym_doc_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(752), + [sym_expr_stmt] = STATE(752), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(752), + [sym_return_stmt] = STATE(752), + [sym_continue_stmt] = STATE(752), + [sym_break_stmt] = STATE(752), + [sym_defer_stmt] = STATE(752), + [sym_assert_stmt] = STATE(752), + [sym_declaration_stmt] = STATE(752), + [sym_nextcase_stmt] = STATE(752), + [sym_switch_stmt] = STATE(752), + [sym_if_stmt] = STATE(752), + [sym_for_stmt] = STATE(752), + [sym_foreach_stmt] = STATE(752), + [sym_while_stmt] = STATE(752), + [sym_do_stmt] = STATE(752), + [sym_asm_block_stmt] = STATE(752), + [sym_ct_assert_stmt] = STATE(752), + [sym_ct_echo_stmt] = STATE(752), + [sym_ct_if_stmt] = STATE(752), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(752), + [sym_ct_for_stmt] = STATE(752), + [sym_ct_foreach_stmt] = STATE(752), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36137,7 +35754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1145), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(615), [anon_sym_const] = ACTIONS(617), @@ -36227,75 +35844,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [128] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(128), - [sym_doc_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1203), - [sym_const_declaration] = STATE(724), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(774), - [sym_expr_stmt] = STATE(774), - [sym_var_decl] = STATE(2262), - [sym_var_stmt] = STATE(774), - [sym_return_stmt] = STATE(774), - [sym_continue_stmt] = STATE(774), - [sym_break_stmt] = STATE(774), - [sym_defer_stmt] = STATE(774), - [sym_assert_stmt] = STATE(774), - [sym_declaration_stmt] = STATE(774), - [sym_nextcase_stmt] = STATE(774), - [sym_switch_stmt] = STATE(774), - [sym_if_stmt] = STATE(774), - [sym_for_stmt] = STATE(774), - [sym_foreach_stmt] = STATE(774), - [sym_while_stmt] = STATE(774), - [sym_do_stmt] = STATE(774), - [sym_asm_block_stmt] = STATE(774), - [sym_ct_assert_stmt] = STATE(774), - [sym_ct_echo_stmt] = STATE(774), - [sym_ct_if_stmt] = STATE(774), - [sym__ct_switch] = STATE(1603), - [sym_ct_switch_stmt] = STATE(774), - [sym_ct_for_stmt] = STATE(774), - [sym_ct_foreach_stmt] = STATE(774), + [126] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(126), + [sym_doc_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(753), + [sym_expr_stmt] = STATE(753), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(753), + [sym_return_stmt] = STATE(753), + [sym_continue_stmt] = STATE(753), + [sym_break_stmt] = STATE(753), + [sym_defer_stmt] = STATE(753), + [sym_assert_stmt] = STATE(753), + [sym_declaration_stmt] = STATE(753), + [sym_nextcase_stmt] = STATE(753), + [sym_switch_stmt] = STATE(753), + [sym_if_stmt] = STATE(753), + [sym_for_stmt] = STATE(753), + [sym_foreach_stmt] = STATE(753), + [sym_while_stmt] = STATE(753), + [sym_do_stmt] = STATE(753), + [sym_asm_block_stmt] = STATE(753), + [sym_ct_assert_stmt] = STATE(753), + [sym_ct_echo_stmt] = STATE(753), + [sym_ct_if_stmt] = STATE(753), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(753), + [sym_ct_for_stmt] = STATE(753), + [sym_ct_foreach_stmt] = STATE(753), [sym__expr] = STATE(1094), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1384), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36316,7 +35933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1151), + [anon_sym_SEMI] = ACTIONS(1147), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(615), [anon_sym_const] = ACTIONS(617), @@ -36406,75 +36023,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [129] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(129), - [sym_doc_comment] = STATE(129), - [sym_block_comment] = STATE(129), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(498), - [sym_expr_stmt] = STATE(498), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(498), - [sym_return_stmt] = STATE(498), - [sym_continue_stmt] = STATE(498), - [sym_break_stmt] = STATE(498), - [sym_defer_stmt] = STATE(498), - [sym_assert_stmt] = STATE(498), - [sym_declaration_stmt] = STATE(498), - [sym_nextcase_stmt] = STATE(498), - [sym_switch_stmt] = STATE(498), - [sym_if_stmt] = STATE(498), - [sym_for_stmt] = STATE(498), - [sym_foreach_stmt] = STATE(498), - [sym_while_stmt] = STATE(498), - [sym_do_stmt] = STATE(498), - [sym_asm_block_stmt] = STATE(498), - [sym_ct_assert_stmt] = STATE(498), - [sym_ct_echo_stmt] = STATE(498), - [sym_ct_if_stmt] = STATE(498), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(498), - [sym_ct_for_stmt] = STATE(498), - [sym_ct_foreach_stmt] = STATE(498), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [127] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(127), + [sym_doc_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(768), + [sym_expr_stmt] = STATE(768), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(768), + [sym_return_stmt] = STATE(768), + [sym_continue_stmt] = STATE(768), + [sym_break_stmt] = STATE(768), + [sym_defer_stmt] = STATE(768), + [sym_assert_stmt] = STATE(768), + [sym_declaration_stmt] = STATE(768), + [sym_nextcase_stmt] = STATE(768), + [sym_switch_stmt] = STATE(768), + [sym_if_stmt] = STATE(768), + [sym_for_stmt] = STATE(768), + [sym_foreach_stmt] = STATE(768), + [sym_while_stmt] = STATE(768), + [sym_do_stmt] = STATE(768), + [sym_asm_block_stmt] = STATE(768), + [sym_ct_assert_stmt] = STATE(768), + [sym_ct_echo_stmt] = STATE(768), + [sym_ct_if_stmt] = STATE(768), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(768), + [sym_ct_for_stmt] = STATE(768), + [sym_ct_foreach_stmt] = STATE(768), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36495,37 +36112,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_SEMI] = ACTIONS(1149), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(199), - [anon_sym_const] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(203), - [anon_sym_continue] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_defer] = ACTIONS(209), - [anon_sym_assert] = ACTIONS(211), - [anon_sym_nextcase] = ACTIONS(213), - [anon_sym_switch] = ACTIONS(215), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_foreach] = ACTIONS(221), - [anon_sym_foreach_r] = ACTIONS(221), - [anon_sym_while] = ACTIONS(223), - [anon_sym_do] = ACTIONS(225), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(227), - [anon_sym_DOLLARassert] = ACTIONS(229), - [anon_sym_DOLLARerror] = ACTIONS(231), - [anon_sym_DOLLARecho] = ACTIONS(233), - [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(239), - [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -36585,75 +36202,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [130] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(130), - [sym_doc_comment] = STATE(130), - [sym_block_comment] = STATE(130), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(383), - [sym_expr_stmt] = STATE(383), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(383), - [sym_return_stmt] = STATE(383), - [sym_continue_stmt] = STATE(383), - [sym_break_stmt] = STATE(383), - [sym_defer_stmt] = STATE(383), - [sym_assert_stmt] = STATE(383), - [sym_declaration_stmt] = STATE(383), - [sym_nextcase_stmt] = STATE(383), - [sym_switch_stmt] = STATE(383), - [sym_if_stmt] = STATE(383), - [sym_for_stmt] = STATE(383), - [sym_foreach_stmt] = STATE(383), - [sym_while_stmt] = STATE(383), - [sym_do_stmt] = STATE(383), - [sym_asm_block_stmt] = STATE(383), - [sym_ct_assert_stmt] = STATE(383), - [sym_ct_echo_stmt] = STATE(383), - [sym_ct_if_stmt] = STATE(383), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(383), - [sym_ct_for_stmt] = STATE(383), - [sym_ct_foreach_stmt] = STATE(383), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [128] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(128), + [sym_doc_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(769), + [sym_expr_stmt] = STATE(769), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(769), + [sym_return_stmt] = STATE(769), + [sym_continue_stmt] = STATE(769), + [sym_break_stmt] = STATE(769), + [sym_defer_stmt] = STATE(769), + [sym_assert_stmt] = STATE(769), + [sym_declaration_stmt] = STATE(769), + [sym_nextcase_stmt] = STATE(769), + [sym_switch_stmt] = STATE(769), + [sym_if_stmt] = STATE(769), + [sym_for_stmt] = STATE(769), + [sym_foreach_stmt] = STATE(769), + [sym_while_stmt] = STATE(769), + [sym_do_stmt] = STATE(769), + [sym_asm_block_stmt] = STATE(769), + [sym_ct_assert_stmt] = STATE(769), + [sym_ct_echo_stmt] = STATE(769), + [sym_ct_if_stmt] = STATE(769), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(769), + [sym_ct_for_stmt] = STATE(769), + [sym_ct_foreach_stmt] = STATE(769), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36674,37 +36291,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_SEMI] = ACTIONS(1151), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), + [sym_real_literal] = ACTIONS(63), + }, + [129] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(129), + [sym_doc_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(770), + [sym_expr_stmt] = STATE(770), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(770), + [sym_return_stmt] = STATE(770), + [sym_continue_stmt] = STATE(770), + [sym_break_stmt] = STATE(770), + [sym_defer_stmt] = STATE(770), + [sym_assert_stmt] = STATE(770), + [sym_declaration_stmt] = STATE(770), + [sym_nextcase_stmt] = STATE(770), + [sym_switch_stmt] = STATE(770), + [sym_if_stmt] = STATE(770), + [sym_for_stmt] = STATE(770), + [sym_foreach_stmt] = STATE(770), + [sym_while_stmt] = STATE(770), + [sym_do_stmt] = STATE(770), + [sym_asm_block_stmt] = STATE(770), + [sym_ct_assert_stmt] = STATE(770), + [sym_ct_echo_stmt] = STATE(770), + [sym_ct_if_stmt] = STATE(770), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(770), + [sym_ct_for_stmt] = STATE(770), + [sym_ct_foreach_stmt] = STATE(770), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(79), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_static] = ACTIONS(93), + [anon_sym_tlocal] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), + [sym_real_literal] = ACTIONS(63), + }, + [130] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(130), + [sym_doc_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(395), + [sym_expr_stmt] = STATE(395), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(395), + [sym_return_stmt] = STATE(395), + [sym_continue_stmt] = STATE(395), + [sym_break_stmt] = STATE(395), + [sym_defer_stmt] = STATE(395), + [sym_assert_stmt] = STATE(395), + [sym_declaration_stmt] = STATE(395), + [sym_nextcase_stmt] = STATE(395), + [sym_switch_stmt] = STATE(395), + [sym_if_stmt] = STATE(395), + [sym_for_stmt] = STATE(395), + [sym_foreach_stmt] = STATE(395), + [sym_while_stmt] = STATE(395), + [sym_do_stmt] = STATE(395), + [sym_asm_block_stmt] = STATE(395), + [sym_ct_assert_stmt] = STATE(395), + [sym_ct_echo_stmt] = STATE(395), + [sym_ct_if_stmt] = STATE(395), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(395), + [sym_ct_for_stmt] = STATE(395), + [sym_ct_foreach_stmt] = STATE(395), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(79), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_static] = ACTIONS(93), + [anon_sym_tlocal] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -36765,74 +36740,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [131] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(131), [sym_doc_comment] = STATE(131), [sym_block_comment] = STATE(131), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(448), - [sym_expr_stmt] = STATE(448), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(448), - [sym_return_stmt] = STATE(448), - [sym_continue_stmt] = STATE(448), - [sym_break_stmt] = STATE(448), - [sym_defer_stmt] = STATE(448), - [sym_assert_stmt] = STATE(448), - [sym_declaration_stmt] = STATE(448), - [sym_nextcase_stmt] = STATE(448), - [sym_switch_stmt] = STATE(448), - [sym_if_stmt] = STATE(448), - [sym_for_stmt] = STATE(448), - [sym_foreach_stmt] = STATE(448), - [sym_while_stmt] = STATE(448), - [sym_do_stmt] = STATE(448), - [sym_asm_block_stmt] = STATE(448), - [sym_ct_assert_stmt] = STATE(448), - [sym_ct_echo_stmt] = STATE(448), - [sym_ct_if_stmt] = STATE(448), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(448), - [sym_ct_for_stmt] = STATE(448), - [sym_ct_foreach_stmt] = STATE(448), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(458), + [sym_expr_stmt] = STATE(458), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(458), + [sym_return_stmt] = STATE(458), + [sym_continue_stmt] = STATE(458), + [sym_break_stmt] = STATE(458), + [sym_defer_stmt] = STATE(458), + [sym_assert_stmt] = STATE(458), + [sym_declaration_stmt] = STATE(458), + [sym_nextcase_stmt] = STATE(458), + [sym_switch_stmt] = STATE(458), + [sym_if_stmt] = STATE(458), + [sym_for_stmt] = STATE(458), + [sym_foreach_stmt] = STATE(458), + [sym_while_stmt] = STATE(458), + [sym_do_stmt] = STATE(458), + [sym_asm_block_stmt] = STATE(458), + [sym_ct_assert_stmt] = STATE(458), + [sym_ct_echo_stmt] = STATE(458), + [sym_ct_if_stmt] = STATE(458), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(458), + [sym_ct_for_stmt] = STATE(458), + [sym_ct_foreach_stmt] = STATE(458), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36944,74 +36919,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [132] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(132), [sym_doc_comment] = STATE(132), [sym_block_comment] = STATE(132), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(449), - [sym_expr_stmt] = STATE(449), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(449), - [sym_return_stmt] = STATE(449), - [sym_continue_stmt] = STATE(449), - [sym_break_stmt] = STATE(449), - [sym_defer_stmt] = STATE(449), - [sym_assert_stmt] = STATE(449), - [sym_declaration_stmt] = STATE(449), - [sym_nextcase_stmt] = STATE(449), - [sym_switch_stmt] = STATE(449), - [sym_if_stmt] = STATE(449), - [sym_for_stmt] = STATE(449), - [sym_foreach_stmt] = STATE(449), - [sym_while_stmt] = STATE(449), - [sym_do_stmt] = STATE(449), - [sym_asm_block_stmt] = STATE(449), - [sym_ct_assert_stmt] = STATE(449), - [sym_ct_echo_stmt] = STATE(449), - [sym_ct_if_stmt] = STATE(449), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(449), - [sym_ct_for_stmt] = STATE(449), - [sym_ct_foreach_stmt] = STATE(449), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(477), + [sym_expr_stmt] = STATE(477), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(477), + [sym_return_stmt] = STATE(477), + [sym_continue_stmt] = STATE(477), + [sym_break_stmt] = STATE(477), + [sym_defer_stmt] = STATE(477), + [sym_assert_stmt] = STATE(477), + [sym_declaration_stmt] = STATE(477), + [sym_nextcase_stmt] = STATE(477), + [sym_switch_stmt] = STATE(477), + [sym_if_stmt] = STATE(477), + [sym_for_stmt] = STATE(477), + [sym_foreach_stmt] = STATE(477), + [sym_while_stmt] = STATE(477), + [sym_do_stmt] = STATE(477), + [sym_asm_block_stmt] = STATE(477), + [sym_ct_assert_stmt] = STATE(477), + [sym_ct_echo_stmt] = STATE(477), + [sym_ct_if_stmt] = STATE(477), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(477), + [sym_ct_for_stmt] = STATE(477), + [sym_ct_foreach_stmt] = STATE(477), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37123,74 +37098,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [133] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(133), [sym_doc_comment] = STATE(133), [sym_block_comment] = STATE(133), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(450), - [sym_expr_stmt] = STATE(450), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(450), - [sym_return_stmt] = STATE(450), - [sym_continue_stmt] = STATE(450), - [sym_break_stmt] = STATE(450), - [sym_defer_stmt] = STATE(450), - [sym_assert_stmt] = STATE(450), - [sym_declaration_stmt] = STATE(450), - [sym_nextcase_stmt] = STATE(450), - [sym_switch_stmt] = STATE(450), - [sym_if_stmt] = STATE(450), - [sym_for_stmt] = STATE(450), - [sym_foreach_stmt] = STATE(450), - [sym_while_stmt] = STATE(450), - [sym_do_stmt] = STATE(450), - [sym_asm_block_stmt] = STATE(450), - [sym_ct_assert_stmt] = STATE(450), - [sym_ct_echo_stmt] = STATE(450), - [sym_ct_if_stmt] = STATE(450), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(450), - [sym_ct_for_stmt] = STATE(450), - [sym_ct_foreach_stmt] = STATE(450), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(479), + [sym_expr_stmt] = STATE(479), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(479), + [sym_return_stmt] = STATE(479), + [sym_continue_stmt] = STATE(479), + [sym_break_stmt] = STATE(479), + [sym_defer_stmt] = STATE(479), + [sym_assert_stmt] = STATE(479), + [sym_declaration_stmt] = STATE(479), + [sym_nextcase_stmt] = STATE(479), + [sym_switch_stmt] = STATE(479), + [sym_if_stmt] = STATE(479), + [sym_for_stmt] = STATE(479), + [sym_foreach_stmt] = STATE(479), + [sym_while_stmt] = STATE(479), + [sym_do_stmt] = STATE(479), + [sym_asm_block_stmt] = STATE(479), + [sym_ct_assert_stmt] = STATE(479), + [sym_ct_echo_stmt] = STATE(479), + [sym_ct_if_stmt] = STATE(479), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(479), + [sym_ct_for_stmt] = STATE(479), + [sym_ct_foreach_stmt] = STATE(479), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37302,74 +37277,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [134] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(134), [sym_doc_comment] = STATE(134), [sym_block_comment] = STATE(134), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(386), - [sym_expr_stmt] = STATE(386), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(386), - [sym_return_stmt] = STATE(386), - [sym_continue_stmt] = STATE(386), - [sym_break_stmt] = STATE(386), - [sym_defer_stmt] = STATE(386), - [sym_assert_stmt] = STATE(386), - [sym_declaration_stmt] = STATE(386), - [sym_nextcase_stmt] = STATE(386), - [sym_switch_stmt] = STATE(386), - [sym_if_stmt] = STATE(386), - [sym_for_stmt] = STATE(386), - [sym_foreach_stmt] = STATE(386), - [sym_while_stmt] = STATE(386), - [sym_do_stmt] = STATE(386), - [sym_asm_block_stmt] = STATE(386), - [sym_ct_assert_stmt] = STATE(386), - [sym_ct_echo_stmt] = STATE(386), - [sym_ct_if_stmt] = STATE(386), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(386), - [sym_ct_for_stmt] = STATE(386), - [sym_ct_foreach_stmt] = STATE(386), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(480), + [sym_expr_stmt] = STATE(480), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(480), + [sym_return_stmt] = STATE(480), + [sym_continue_stmt] = STATE(480), + [sym_break_stmt] = STATE(480), + [sym_defer_stmt] = STATE(480), + [sym_assert_stmt] = STATE(480), + [sym_declaration_stmt] = STATE(480), + [sym_nextcase_stmt] = STATE(480), + [sym_switch_stmt] = STATE(480), + [sym_if_stmt] = STATE(480), + [sym_for_stmt] = STATE(480), + [sym_foreach_stmt] = STATE(480), + [sym_while_stmt] = STATE(480), + [sym_do_stmt] = STATE(480), + [sym_asm_block_stmt] = STATE(480), + [sym_ct_assert_stmt] = STATE(480), + [sym_ct_echo_stmt] = STATE(480), + [sym_ct_if_stmt] = STATE(480), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(480), + [sym_ct_for_stmt] = STATE(480), + [sym_ct_foreach_stmt] = STATE(480), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37392,35 +37367,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1163), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -37481,74 +37456,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [135] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(135), [sym_doc_comment] = STATE(135), [sym_block_comment] = STATE(135), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(388), - [sym_expr_stmt] = STATE(388), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(388), - [sym_return_stmt] = STATE(388), - [sym_continue_stmt] = STATE(388), - [sym_break_stmt] = STATE(388), - [sym_defer_stmt] = STATE(388), - [sym_assert_stmt] = STATE(388), - [sym_declaration_stmt] = STATE(388), - [sym_nextcase_stmt] = STATE(388), - [sym_switch_stmt] = STATE(388), - [sym_if_stmt] = STATE(388), - [sym_for_stmt] = STATE(388), - [sym_foreach_stmt] = STATE(388), - [sym_while_stmt] = STATE(388), - [sym_do_stmt] = STATE(388), - [sym_asm_block_stmt] = STATE(388), - [sym_ct_assert_stmt] = STATE(388), - [sym_ct_echo_stmt] = STATE(388), - [sym_ct_if_stmt] = STATE(388), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(388), - [sym_ct_for_stmt] = STATE(388), - [sym_ct_foreach_stmt] = STATE(388), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(350), + [sym_expr_stmt] = STATE(350), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(350), + [sym_return_stmt] = STATE(350), + [sym_continue_stmt] = STATE(350), + [sym_break_stmt] = STATE(350), + [sym_defer_stmt] = STATE(350), + [sym_assert_stmt] = STATE(350), + [sym_declaration_stmt] = STATE(350), + [sym_nextcase_stmt] = STATE(350), + [sym_switch_stmt] = STATE(350), + [sym_if_stmt] = STATE(350), + [sym_for_stmt] = STATE(350), + [sym_foreach_stmt] = STATE(350), + [sym_while_stmt] = STATE(350), + [sym_do_stmt] = STATE(350), + [sym_asm_block_stmt] = STATE(350), + [sym_ct_assert_stmt] = STATE(350), + [sym_ct_echo_stmt] = STATE(350), + [sym_ct_if_stmt] = STATE(350), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(350), + [sym_ct_for_stmt] = STATE(350), + [sym_ct_foreach_stmt] = STATE(350), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37660,74 +37635,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [136] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(136), [sym_doc_comment] = STATE(136), [sym_block_comment] = STATE(136), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(463), - [sym_expr_stmt] = STATE(463), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(463), - [sym_return_stmt] = STATE(463), - [sym_continue_stmt] = STATE(463), - [sym_break_stmt] = STATE(463), - [sym_defer_stmt] = STATE(463), - [sym_assert_stmt] = STATE(463), - [sym_declaration_stmt] = STATE(463), - [sym_nextcase_stmt] = STATE(463), - [sym_switch_stmt] = STATE(463), - [sym_if_stmt] = STATE(463), - [sym_for_stmt] = STATE(463), - [sym_foreach_stmt] = STATE(463), - [sym_while_stmt] = STATE(463), - [sym_do_stmt] = STATE(463), - [sym_asm_block_stmt] = STATE(463), - [sym_ct_assert_stmt] = STATE(463), - [sym_ct_echo_stmt] = STATE(463), - [sym_ct_if_stmt] = STATE(463), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(463), - [sym_ct_for_stmt] = STATE(463), - [sym_ct_foreach_stmt] = STATE(463), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(430), + [sym_expr_stmt] = STATE(430), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(430), + [sym_return_stmt] = STATE(430), + [sym_continue_stmt] = STATE(430), + [sym_break_stmt] = STATE(430), + [sym_defer_stmt] = STATE(430), + [sym_assert_stmt] = STATE(430), + [sym_declaration_stmt] = STATE(430), + [sym_nextcase_stmt] = STATE(430), + [sym_switch_stmt] = STATE(430), + [sym_if_stmt] = STATE(430), + [sym_for_stmt] = STATE(430), + [sym_foreach_stmt] = STATE(430), + [sym_while_stmt] = STATE(430), + [sym_do_stmt] = STATE(430), + [sym_asm_block_stmt] = STATE(430), + [sym_ct_assert_stmt] = STATE(430), + [sym_ct_echo_stmt] = STATE(430), + [sym_ct_if_stmt] = STATE(430), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(430), + [sym_ct_for_stmt] = STATE(430), + [sym_ct_foreach_stmt] = STATE(430), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37839,74 +37814,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [137] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(137), [sym_doc_comment] = STATE(137), [sym_block_comment] = STATE(137), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1204), - [sym_const_declaration] = STATE(428), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(465), - [sym_expr_stmt] = STATE(465), - [sym_var_decl] = STATE(2016), - [sym_var_stmt] = STATE(465), - [sym_return_stmt] = STATE(465), - [sym_continue_stmt] = STATE(465), - [sym_break_stmt] = STATE(465), - [sym_defer_stmt] = STATE(465), - [sym_assert_stmt] = STATE(465), - [sym_declaration_stmt] = STATE(465), - [sym_nextcase_stmt] = STATE(465), - [sym_switch_stmt] = STATE(465), - [sym_if_stmt] = STATE(465), - [sym_for_stmt] = STATE(465), - [sym_foreach_stmt] = STATE(465), - [sym_while_stmt] = STATE(465), - [sym_do_stmt] = STATE(465), - [sym_asm_block_stmt] = STATE(465), - [sym_ct_assert_stmt] = STATE(465), - [sym_ct_echo_stmt] = STATE(465), - [sym_ct_if_stmt] = STATE(465), - [sym__ct_switch] = STATE(1614), - [sym_ct_switch_stmt] = STATE(465), - [sym_ct_for_stmt] = STATE(465), - [sym_ct_foreach_stmt] = STATE(465), - [sym__expr] = STATE(1104), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1386), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(432), + [sym_expr_stmt] = STATE(432), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(432), + [sym_return_stmt] = STATE(432), + [sym_continue_stmt] = STATE(432), + [sym_break_stmt] = STATE(432), + [sym_defer_stmt] = STATE(432), + [sym_assert_stmt] = STATE(432), + [sym_declaration_stmt] = STATE(432), + [sym_nextcase_stmt] = STATE(432), + [sym_switch_stmt] = STATE(432), + [sym_if_stmt] = STATE(432), + [sym_for_stmt] = STATE(432), + [sym_foreach_stmt] = STATE(432), + [sym_while_stmt] = STATE(432), + [sym_do_stmt] = STATE(432), + [sym_asm_block_stmt] = STATE(432), + [sym_ct_assert_stmt] = STATE(432), + [sym_ct_echo_stmt] = STATE(432), + [sym_ct_if_stmt] = STATE(432), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(432), + [sym_ct_for_stmt] = STATE(432), + [sym_ct_foreach_stmt] = STATE(432), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -38018,74 +37993,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [138] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(138), [sym_doc_comment] = STATE(138), [sym_block_comment] = STATE(138), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1191), - [sym_const_declaration] = STATE(377), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(407), - [sym_expr_stmt] = STATE(407), - [sym_var_decl] = STATE(2251), - [sym_var_stmt] = STATE(407), - [sym_return_stmt] = STATE(407), - [sym_continue_stmt] = STATE(407), - [sym_break_stmt] = STATE(407), - [sym_defer_stmt] = STATE(407), - [sym_assert_stmt] = STATE(407), - [sym_declaration_stmt] = STATE(407), - [sym_nextcase_stmt] = STATE(407), - [sym_switch_stmt] = STATE(407), - [sym_if_stmt] = STATE(407), - [sym_for_stmt] = STATE(407), - [sym_foreach_stmt] = STATE(407), - [sym_while_stmt] = STATE(407), - [sym_do_stmt] = STATE(407), - [sym_asm_block_stmt] = STATE(407), - [sym_ct_assert_stmt] = STATE(407), - [sym_ct_echo_stmt] = STATE(407), - [sym_ct_if_stmt] = STATE(407), - [sym__ct_switch] = STATE(1618), - [sym_ct_switch_stmt] = STATE(407), - [sym_ct_for_stmt] = STATE(407), - [sym_ct_foreach_stmt] = STATE(407), - [sym__expr] = STATE(1078), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1369), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(433), + [sym_expr_stmt] = STATE(433), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(433), + [sym_return_stmt] = STATE(433), + [sym_continue_stmt] = STATE(433), + [sym_break_stmt] = STATE(433), + [sym_defer_stmt] = STATE(433), + [sym_assert_stmt] = STATE(433), + [sym_declaration_stmt] = STATE(433), + [sym_nextcase_stmt] = STATE(433), + [sym_switch_stmt] = STATE(433), + [sym_if_stmt] = STATE(433), + [sym_for_stmt] = STATE(433), + [sym_foreach_stmt] = STATE(433), + [sym_while_stmt] = STATE(433), + [sym_do_stmt] = STATE(433), + [sym_asm_block_stmt] = STATE(433), + [sym_ct_assert_stmt] = STATE(433), + [sym_ct_echo_stmt] = STATE(433), + [sym_ct_if_stmt] = STATE(433), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(433), + [sym_ct_for_stmt] = STATE(433), + [sym_ct_foreach_stmt] = STATE(433), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -38108,35 +38083,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1171), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(107), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_break] = ACTIONS(111), - [anon_sym_defer] = ACTIONS(113), - [anon_sym_assert] = ACTIONS(115), - [anon_sym_nextcase] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_for] = ACTIONS(129), - [anon_sym_foreach] = ACTIONS(131), - [anon_sym_foreach_r] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(139), - [anon_sym_DOLLARassert] = ACTIONS(141), - [anon_sym_DOLLARerror] = ACTIONS(143), - [anon_sym_DOLLARecho] = ACTIONS(145), - [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(151), - [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -38197,74 +38172,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [139] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(139), [sym_doc_comment] = STATE(139), [sym_block_comment] = STATE(139), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_local_decl_storage] = STATE(1202), - [sym_const_declaration] = STATE(652), - [sym_lambda_declaration] = STATE(1553), - [sym_compound_stmt] = STATE(700), - [sym_expr_stmt] = STATE(700), - [sym_var_decl] = STATE(2138), - [sym_var_stmt] = STATE(700), - [sym_return_stmt] = STATE(700), - [sym_continue_stmt] = STATE(700), - [sym_break_stmt] = STATE(700), - [sym_defer_stmt] = STATE(700), - [sym_assert_stmt] = STATE(700), - [sym_declaration_stmt] = STATE(700), - [sym_nextcase_stmt] = STATE(700), - [sym_switch_stmt] = STATE(700), - [sym_if_stmt] = STATE(700), - [sym_for_stmt] = STATE(700), - [sym_foreach_stmt] = STATE(700), - [sym_while_stmt] = STATE(700), - [sym_do_stmt] = STATE(700), - [sym_asm_block_stmt] = STATE(700), - [sym_ct_assert_stmt] = STATE(700), - [sym_ct_echo_stmt] = STATE(700), - [sym_ct_if_stmt] = STATE(700), - [sym__ct_switch] = STATE(1590), - [sym_ct_switch_stmt] = STATE(700), - [sym_ct_for_stmt] = STATE(700), - [sym_ct_foreach_stmt] = STATE(700), - [sym__expr] = STATE(1088), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1383), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(678), + [sym_expr_stmt] = STATE(678), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(678), + [sym_return_stmt] = STATE(678), + [sym_continue_stmt] = STATE(678), + [sym_break_stmt] = STATE(678), + [sym_defer_stmt] = STATE(678), + [sym_assert_stmt] = STATE(678), + [sym_declaration_stmt] = STATE(678), + [sym_nextcase_stmt] = STATE(678), + [sym_switch_stmt] = STATE(678), + [sym_if_stmt] = STATE(678), + [sym_for_stmt] = STATE(678), + [sym_foreach_stmt] = STATE(678), + [sym_while_stmt] = STATE(678), + [sym_do_stmt] = STATE(678), + [sym_asm_block_stmt] = STATE(678), + [sym_ct_assert_stmt] = STATE(678), + [sym_ct_echo_stmt] = STATE(678), + [sym_ct_if_stmt] = STATE(678), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(678), + [sym_ct_for_stmt] = STATE(678), + [sym_ct_foreach_stmt] = STATE(678), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -38287,35 +38262,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1173), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_const] = ACTIONS(665), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), [anon_sym_var] = ACTIONS(105), - [anon_sym_return] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_break] = ACTIONS(671), - [anon_sym_defer] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_nextcase] = ACTIONS(677), - [anon_sym_switch] = ACTIONS(679), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_if] = ACTIONS(681), - [anon_sym_for] = ACTIONS(683), - [anon_sym_foreach] = ACTIONS(685), - [anon_sym_foreach_r] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(689), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), - [anon_sym_asm] = ACTIONS(691), - [anon_sym_DOLLARassert] = ACTIONS(693), - [anon_sym_DOLLARerror] = ACTIONS(695), - [anon_sym_DOLLARecho] = ACTIONS(697), - [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), [anon_sym_DOLLARswitch] = ACTIONS(149), - [anon_sym_DOLLARfor] = ACTIONS(701), - [anon_sym_DOLLARforeach] = ACTIONS(703), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -38376,47 +38351,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [140] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(140), [sym_doc_comment] = STATE(140), [sym_block_comment] = STATE(140), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1116), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1091), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -39044,7 +39019,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1189), [anon_sym_AMP_AMP] = ACTIONS(1189), [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), [anon_sym_for] = ACTIONS(1189), [anon_sym_foreach] = ACTIONS(1189), [anon_sym_foreach_r] = ACTIONS(1189), @@ -39061,9 +39035,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1189), [anon_sym_DOLLARecho] = ACTIONS(1189), [anon_sym_DOLLARif] = ACTIONS(1189), - [anon_sym_DOLLARendif] = ACTIONS(1189), - [anon_sym_DOLLARelse] = ACTIONS(1189), + [anon_sym_DOLLARcase] = ACTIONS(1189), + [anon_sym_DOLLARdefault] = ACTIONS(1189), [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARendswitch] = ACTIONS(1189), [anon_sym_DOLLARfor] = ACTIONS(1189), [anon_sym_DOLLARforeach] = ACTIONS(1189), [anon_sym_DOLLARalignof] = ACTIONS(1189), @@ -39195,6 +39170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1189), [anon_sym_AMP_AMP] = ACTIONS(1189), [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), [anon_sym_for] = ACTIONS(1189), [anon_sym_foreach] = ACTIONS(1189), [anon_sym_foreach_r] = ACTIONS(1189), @@ -39211,10 +39187,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1189), [anon_sym_DOLLARecho] = ACTIONS(1189), [anon_sym_DOLLARif] = ACTIONS(1189), - [anon_sym_DOLLARcase] = ACTIONS(1189), - [anon_sym_DOLLARdefault] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARelse] = ACTIONS(1189), [anon_sym_DOLLARswitch] = ACTIONS(1189), - [anon_sym_DOLLARendswitch] = ACTIONS(1189), [anon_sym_DOLLARfor] = ACTIONS(1189), [anon_sym_DOLLARforeach] = ACTIONS(1189), [anon_sym_DOLLARalignof] = ACTIONS(1189), @@ -39496,6 +39471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1189), [anon_sym_AMP_AMP] = ACTIONS(1189), [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), [anon_sym_for] = ACTIONS(1189), [anon_sym_foreach] = ACTIONS(1189), [anon_sym_foreach_r] = ACTIONS(1189), @@ -39513,7 +39489,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARecho] = ACTIONS(1189), [anon_sym_DOLLARif] = ACTIONS(1189), [anon_sym_DOLLARendif] = ACTIONS(1189), - [anon_sym_DOLLARelse] = ACTIONS(1189), [anon_sym_DOLLARswitch] = ACTIONS(1189), [anon_sym_DOLLARfor] = ACTIONS(1189), [anon_sym_DOLLARforeach] = ACTIONS(1189), @@ -39646,7 +39621,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1189), [anon_sym_AMP_AMP] = ACTIONS(1189), [anon_sym_if] = ACTIONS(1189), - [anon_sym_else] = ACTIONS(1189), [anon_sym_for] = ACTIONS(1189), [anon_sym_foreach] = ACTIONS(1189), [anon_sym_foreach_r] = ACTIONS(1189), @@ -39664,6 +39638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARecho] = ACTIONS(1189), [anon_sym_DOLLARif] = ACTIONS(1189), [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARelse] = ACTIONS(1189), [anon_sym_DOLLARswitch] = ACTIONS(1189), [anon_sym_DOLLARfor] = ACTIONS(1189), [anon_sym_DOLLARforeach] = ACTIONS(1189), @@ -39962,10 +39937,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1189), [anon_sym_DOLLARecho] = ACTIONS(1189), [anon_sym_DOLLARif] = ACTIONS(1189), - [anon_sym_DOLLARendif] = ACTIONS(1189), [anon_sym_DOLLARswitch] = ACTIONS(1189), [anon_sym_DOLLARfor] = ACTIONS(1189), [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARendforeach] = ACTIONS(1189), [anon_sym_DOLLARalignof] = ACTIONS(1189), [anon_sym_DOLLARextnameof] = ACTIONS(1189), [anon_sym_DOLLARnameof] = ACTIONS(1189), @@ -40113,8 +40088,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(1189), [anon_sym_DOLLARswitch] = ACTIONS(1189), [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARendfor] = ACTIONS(1189), [anon_sym_DOLLARforeach] = ACTIONS(1189), - [anon_sym_DOLLARendforeach] = ACTIONS(1189), [anon_sym_DOLLARalignof] = ACTIONS(1189), [anon_sym_DOLLARextnameof] = ACTIONS(1189), [anon_sym_DOLLARnameof] = ACTIONS(1189), @@ -40260,9 +40235,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1189), [anon_sym_DOLLARecho] = ACTIONS(1189), [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), [anon_sym_DOLLARswitch] = ACTIONS(1189), [anon_sym_DOLLARfor] = ACTIONS(1189), - [anon_sym_DOLLARendfor] = ACTIONS(1189), [anon_sym_DOLLARforeach] = ACTIONS(1189), [anon_sym_DOLLARalignof] = ACTIONS(1189), [anon_sym_DOLLARextnameof] = ACTIONS(1189), @@ -40352,53 +40327,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(1191), }, [153] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(153), [sym_doc_comment] = STATE(153), [sym_block_comment] = STATE(153), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym__cond] = STATE(1981), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym_catch_unwrap] = STATE(1792), - [sym_try_unwrap] = STATE(1539), - [sym__try_unwrap_chain] = STATE(1795), - [sym__decl_or_expr] = STATE(1540), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2040), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40488,53 +40463,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [154] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(154), [sym_doc_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym__cond] = STATE(2220), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym_catch_unwrap] = STATE(1792), - [sym_try_unwrap] = STATE(1539), - [sym__try_unwrap_chain] = STATE(1795), - [sym__decl_or_expr] = STATE(1540), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2119), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40624,53 +40599,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [155] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(155), [sym_doc_comment] = STATE(155), [sym_block_comment] = STATE(155), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym__cond] = STATE(2128), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym_catch_unwrap] = STATE(1792), - [sym_try_unwrap] = STATE(1539), - [sym__try_unwrap_chain] = STATE(1795), - [sym__decl_or_expr] = STATE(1540), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2090), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40760,53 +40735,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [156] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(156), [sym_doc_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym__cond] = STATE(2125), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym_catch_unwrap] = STATE(1792), - [sym_try_unwrap] = STATE(1539), - [sym__try_unwrap_chain] = STATE(1795), - [sym__decl_or_expr] = STATE(1540), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2116), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40896,53 +40871,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [157] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(157), [sym_doc_comment] = STATE(157), [sym_block_comment] = STATE(157), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym__cond] = STATE(1982), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym_catch_unwrap] = STATE(1792), - [sym_try_unwrap] = STATE(1539), - [sym__try_unwrap_chain] = STATE(1795), - [sym__decl_or_expr] = STATE(1540), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2046), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41031,53 +41006,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [158] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(158), [sym_doc_comment] = STATE(158), [sym_block_comment] = STATE(158), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym__cond] = STATE(2121), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym_catch_unwrap] = STATE(1792), - [sym_try_unwrap] = STATE(1539), - [sym__try_unwrap_chain] = STATE(1795), - [sym__decl_or_expr] = STATE(1540), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(1951), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41166,52 +41141,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [159] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(159), [sym_doc_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym_catch_unwrap] = STATE(1885), - [sym_try_unwrap] = STATE(1539), - [sym__try_unwrap_chain] = STATE(1891), - [sym__decl_or_expr] = STATE(1730), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1866), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1879), + [sym__decl_or_expr] = STATE(1636), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41300,52 +41275,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [160] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(160), [sym_doc_comment] = STATE(160), [sym_block_comment] = STATE(160), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym_catch_unwrap] = STATE(1772), - [sym_try_unwrap] = STATE(1539), - [sym__try_unwrap_chain] = STATE(1775), - [sym__decl_or_expr] = STATE(1730), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1909), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1750), + [sym__decl_or_expr] = STATE(1636), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41434,52 +41409,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [161] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(161), [sym_doc_comment] = STATE(161), [sym_block_comment] = STATE(161), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1062), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1691), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), - [sym_ident] = ACTIONS(61), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1040), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_arg] = STATE(1499), + [sym__call_arg_list] = STATE(1964), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1398), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1209), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), @@ -41488,20 +41461,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), + [sym_ct_ident] = ACTIONS(1211), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(1213), [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1217), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1219), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1209), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -41536,6 +41510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(1221), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -41567,51 +41542,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [162] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(162), [sym_doc_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1062), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1758), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1057), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1827), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41634,7 +41609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_RBRACE] = ACTIONS(1223), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -41700,51 +41675,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [163] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(163), [sym_doc_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1062), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1758), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1057), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41767,7 +41742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1225), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -41833,51 +41808,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [164] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(164), [sym_doc_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1062), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1758), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1057), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1827), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41900,7 +41875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_RBRACE] = ACTIONS(1227), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -41966,51 +41941,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [165] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(165), [sym_doc_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1062), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1715), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1902), + [sym_range_expr] = STATE(2206), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -42027,13 +42000,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1229), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_COLON] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1233), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -42068,6 +42041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -42099,50 +42073,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [166] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(166), [sym_doc_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1045), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_arg] = STATE(1497), - [sym__call_arg_list] = STATE(2190), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1443), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(1217), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1040), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_arg] = STATE(1735), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1398), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1209), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), @@ -42151,19 +42124,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1219), + [sym_ct_ident] = ACTIONS(1211), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1213), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1217), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1239), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -42200,7 +42173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_DOLLARvasplat] = ACTIONS(1229), + [anon_sym_DOLLARvasplat] = ACTIONS(1221), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -42232,51 +42205,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [167] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(167), [sym_doc_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1062), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1758), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1057), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1827), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -42299,7 +42272,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1231), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -42365,49 +42337,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [168] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(168), [sym_doc_comment] = STATE(168), [sym_block_comment] = STATE(168), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1045), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_arg] = STATE(1692), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1443), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(1217), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1040), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_arg] = STATE(1735), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1398), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1209), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), @@ -42416,19 +42388,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1219), + [sym_ct_ident] = ACTIONS(1211), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1213), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1217), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1243), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -42465,7 +42437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_DOLLARvasplat] = ACTIONS(1229), + [anon_sym_DOLLARvasplat] = ACTIONS(1221), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -42497,181 +42469,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [169] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(169), [sym_doc_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1062), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1811), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1185), - [anon_sym_DOLLARtypefrom] = ACTIONS(1185), - [anon_sym_DOLLARevaltype] = ACTIONS(1185), - [anon_sym_DOLLARvatype] = ACTIONS(1187), - [sym_real_literal] = ACTIONS(63), - }, - [170] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(170), - [sym_doc_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1033), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym__range_loc] = STATE(1769), - [sym_range_expr] = STATE(1960), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2140), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -42684,19 +42525,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1245), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_COLON] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_var] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(45), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), @@ -42729,81 +42569,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_typeid] = ACTIONS(45), + [anon_sym_typeid] = ACTIONS(137), [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1185), - [anon_sym_DOLLARtypefrom] = ACTIONS(1185), - [anon_sym_DOLLARevaltype] = ACTIONS(1185), - [anon_sym_DOLLARvatype] = ACTIONS(1187), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [171] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(171), - [sym_doc_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1045), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_arg] = STATE(1692), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1443), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(1217), + [170] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(170), + [sym_doc_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2146), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), @@ -42812,23 +42653,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1219), + [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(1221), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_RPAREN] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1225), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1249), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(45), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), @@ -42861,83 +42700,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_DOLLARvasplat] = ACTIONS(1229), - [anon_sym_typeid] = ACTIONS(45), + [anon_sym_typeid] = ACTIONS(137), [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1185), - [anon_sym_DOLLARtypefrom] = ACTIONS(1185), - [anon_sym_DOLLARevaltype] = ACTIONS(1185), - [anon_sym_DOLLARvatype] = ACTIONS(1187), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [172] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(172), - [sym_doc_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1062), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_param_path_element] = STATE(1451), - [sym_param_path] = STATE(1690), - [sym_arg] = STATE(1758), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [aux_sym_param_path_repeat1] = STATE(1377), + [171] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(171), + [sym_doc_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(1942), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -42950,18 +42787,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(85), [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1249), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(45), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), @@ -42994,81 +42831,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(45), + [anon_sym_typeid] = ACTIONS(137), [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1185), - [anon_sym_DOLLARtypefrom] = ACTIONS(1185), - [anon_sym_DOLLARevaltype] = ACTIONS(1185), - [anon_sym_DOLLARvatype] = ACTIONS(1187), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [173] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(173), - [sym_doc_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2187), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [172] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(172), + [sym_doc_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2019), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43155,51 +42992,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, + [173] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(173), + [sym_doc_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1659), + [sym_range_expr] = STATE(2049), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), + [sym_real_literal] = ACTIONS(63), + }, [174] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(174), [sym_doc_comment] = STATE(174), [sym_block_comment] = STATE(174), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2253), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1902), + [sym_range_expr] = STATE(2211), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43212,18 +43179,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), + [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1253), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(105), + [anon_sym_COLON] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1233), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(137), + [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), @@ -43256,81 +43223,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(137), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(137), - [anon_sym_bool] = ACTIONS(137), - [anon_sym_char] = ACTIONS(137), - [anon_sym_ichar] = ACTIONS(137), - [anon_sym_short] = ACTIONS(137), - [anon_sym_ushort] = ACTIONS(137), - [anon_sym_uint] = ACTIONS(137), - [anon_sym_long] = ACTIONS(137), - [anon_sym_ulong] = ACTIONS(137), - [anon_sym_int128] = ACTIONS(137), - [anon_sym_uint128] = ACTIONS(137), - [anon_sym_float] = ACTIONS(137), - [anon_sym_double] = ACTIONS(137), - [anon_sym_float16] = ACTIONS(137), - [anon_sym_bfloat16] = ACTIONS(137), - [anon_sym_float128] = ACTIONS(137), - [anon_sym_iptr] = ACTIONS(137), - [anon_sym_uptr] = ACTIONS(137), - [anon_sym_isz] = ACTIONS(137), - [anon_sym_usz] = ACTIONS(137), - [anon_sym_anyfault] = ACTIONS(137), - [anon_sym_any] = ACTIONS(137), - [anon_sym_DOLLARtypeof] = ACTIONS(171), - [anon_sym_DOLLARtypefrom] = ACTIONS(171), - [anon_sym_DOLLARevaltype] = ACTIONS(171), - [anon_sym_DOLLARvatype] = ACTIONS(173), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [175] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(175), [sym_doc_comment] = STATE(175), [sym_block_comment] = STATE(175), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2050), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2218), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43348,8 +43316,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1253), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1255), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_var] = ACTIONS(105), @@ -43418,50 +43386,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [176] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(176), [sym_doc_comment] = STATE(176), [sym_block_comment] = STATE(176), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2166), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2003), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43479,8 +43447,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1257), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1255), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_var] = ACTIONS(105), @@ -43549,50 +43517,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [177] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(177), [sym_doc_comment] = STATE(177), [sym_block_comment] = STATE(177), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2227), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2214), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43610,7 +43578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1257), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), @@ -43680,50 +43648,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [178] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(178), [sym_doc_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2203), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2229), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43741,7 +43709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1259), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), @@ -43811,181 +43779,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [179] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), [sym_line_comment] = STATE(179), [sym_doc_comment] = STATE(179), [sym_block_comment] = STATE(179), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2246), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(137), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(137), - [anon_sym_bool] = ACTIONS(137), - [anon_sym_char] = ACTIONS(137), - [anon_sym_ichar] = ACTIONS(137), - [anon_sym_short] = ACTIONS(137), - [anon_sym_ushort] = ACTIONS(137), - [anon_sym_uint] = ACTIONS(137), - [anon_sym_long] = ACTIONS(137), - [anon_sym_ulong] = ACTIONS(137), - [anon_sym_int128] = ACTIONS(137), - [anon_sym_uint128] = ACTIONS(137), - [anon_sym_float] = ACTIONS(137), - [anon_sym_double] = ACTIONS(137), - [anon_sym_float16] = ACTIONS(137), - [anon_sym_bfloat16] = ACTIONS(137), - [anon_sym_float128] = ACTIONS(137), - [anon_sym_iptr] = ACTIONS(137), - [anon_sym_uptr] = ACTIONS(137), - [anon_sym_isz] = ACTIONS(137), - [anon_sym_usz] = ACTIONS(137), - [anon_sym_anyfault] = ACTIONS(137), - [anon_sym_any] = ACTIONS(137), - [anon_sym_DOLLARtypeof] = ACTIONS(171), - [anon_sym_DOLLARtypefrom] = ACTIONS(171), - [anon_sym_DOLLARevaltype] = ACTIONS(171), - [anon_sym_DOLLARvatype] = ACTIONS(173), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_LPAREN_LT] = ACTIONS(1267), + [anon_sym_GT_RPAREN] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1265), + [anon_sym_GT_GT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1267), + [anon_sym_DASH_EQ] = ACTIONS(1267), + [anon_sym_STAR_EQ] = ACTIONS(1267), + [anon_sym_SLASH_EQ] = ACTIONS(1267), + [anon_sym_PERCENT_EQ] = ACTIONS(1267), + [anon_sym_LT_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_GT_EQ] = ACTIONS(1267), + [anon_sym_AMP_EQ] = ACTIONS(1267), + [anon_sym_CARET_EQ] = ACTIONS(1267), + [anon_sym_PIPE_EQ] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_QMARK_COLON] = ACTIONS(1267), + [anon_sym_QMARK_QMARK] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_PERCENT] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1267), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_BANG_BANG] = ACTIONS(1267), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [anon_sym_GT_RBRACK] = ACTIONS(1267), + [sym_real_literal] = ACTIONS(1263), }, [180] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(180), [sym_doc_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2162), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2193), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44003,7 +43971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1269), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), @@ -44073,181 +44041,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [181] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(181), [sym_doc_comment] = STATE(181), [sym_block_comment] = STATE(181), - [sym_ident] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_bytes_literal] = ACTIONS(1269), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1267), - [sym_at_ident] = ACTIONS(1269), - [sym_hash_ident] = ACTIONS(1269), - [sym_type_ident] = ACTIONS(1269), - [sym_ct_type_ident] = ACTIONS(1269), - [sym_const_ident] = ACTIONS(1267), - [sym_builtin] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1271), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_LPAREN_LT] = ACTIONS(1273), - [anon_sym_GT_RPAREN] = ACTIONS(1273), - [anon_sym_EQ] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_RPAREN] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_RBRACK] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_COLON] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(1271), - [anon_sym_int] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_LT_LT] = ACTIONS(1271), - [anon_sym_GT_GT] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_DOLLARalignof] = ACTIONS(1267), - [anon_sym_DOLLARextnameof] = ACTIONS(1267), - [anon_sym_DOLLARnameof] = ACTIONS(1267), - [anon_sym_DOLLARoffsetof] = ACTIONS(1267), - [anon_sym_DOLLARqnameof] = ACTIONS(1267), - [anon_sym_DOLLARvaconst] = ACTIONS(1267), - [anon_sym_DOLLARvaarg] = ACTIONS(1267), - [anon_sym_DOLLARvaref] = ACTIONS(1267), - [anon_sym_DOLLARvaexpr] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_null] = ACTIONS(1267), - [anon_sym_DOLLARvacount] = ACTIONS(1267), - [anon_sym_DOLLAReval] = ACTIONS(1267), - [anon_sym_DOLLARis_const] = ACTIONS(1267), - [anon_sym_DOLLARsizeof] = ACTIONS(1267), - [anon_sym_DOLLARstringify] = ACTIONS(1267), - [anon_sym_DOLLARappend] = ACTIONS(1267), - [anon_sym_DOLLARconcat] = ACTIONS(1267), - [anon_sym_DOLLARdefined] = ACTIONS(1267), - [anon_sym_DOLLARembed] = ACTIONS(1267), - [anon_sym_DOLLARand] = ACTIONS(1267), - [anon_sym_DOLLARor] = ACTIONS(1267), - [anon_sym_DOLLARfeature] = ACTIONS(1267), - [anon_sym_DOLLARassignable] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(1273), - [anon_sym_DASH_EQ] = ACTIONS(1273), - [anon_sym_STAR_EQ] = ACTIONS(1273), - [anon_sym_SLASH_EQ] = ACTIONS(1273), - [anon_sym_PERCENT_EQ] = ACTIONS(1273), - [anon_sym_LT_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_GT_EQ] = ACTIONS(1273), - [anon_sym_AMP_EQ] = ACTIONS(1273), - [anon_sym_CARET_EQ] = ACTIONS(1273), - [anon_sym_PIPE_EQ] = ACTIONS(1273), - [anon_sym_QMARK] = ACTIONS(1271), - [anon_sym_QMARK_COLON] = ACTIONS(1273), - [anon_sym_QMARK_QMARK] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1271), - [anon_sym_PERCENT] = ACTIONS(1271), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_GT] = ACTIONS(1271), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1271), - [anon_sym_PIPE_PIPE] = ACTIONS(1271), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1273), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_BANG_BANG] = ACTIONS(1273), - [anon_sym_typeid] = ACTIONS(1267), - [anon_sym_LBRACE_PIPE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_ichar] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_ushort] = ACTIONS(1267), - [anon_sym_uint] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_ulong] = ACTIONS(1267), - [anon_sym_int128] = ACTIONS(1267), - [anon_sym_uint128] = ACTIONS(1267), - [anon_sym_float] = ACTIONS(1267), - [anon_sym_double] = ACTIONS(1267), - [anon_sym_float16] = ACTIONS(1267), - [anon_sym_bfloat16] = ACTIONS(1267), - [anon_sym_float128] = ACTIONS(1267), - [anon_sym_iptr] = ACTIONS(1267), - [anon_sym_uptr] = ACTIONS(1267), - [anon_sym_isz] = ACTIONS(1267), - [anon_sym_usz] = ACTIONS(1267), - [anon_sym_anyfault] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_DOLLARtypeof] = ACTIONS(1267), - [anon_sym_DOLLARtypefrom] = ACTIONS(1267), - [anon_sym_DOLLARevaltype] = ACTIONS(1267), - [anon_sym_DOLLARvatype] = ACTIONS(1267), - [anon_sym_GT_RBRACK] = ACTIONS(1273), - [sym_real_literal] = ACTIONS(1269), - }, - [182] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(182), - [sym_doc_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2259), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2251), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44266,7 +44103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1271), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_var] = ACTIONS(105), @@ -44334,50 +44171,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [183] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(183), - [sym_doc_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1033), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym__range_loc] = STATE(1769), - [sym_range_expr] = STATE(1963), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [182] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(182), + [sym_doc_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44395,11 +44231,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1273), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_COLON] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -44434,7 +44270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_CARET] = ACTIONS(1235), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -44465,50 +44301,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [184] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(184), - [sym_doc_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1033), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym__range_loc] = STATE(1746), - [sym_range_expr] = STATE(1976), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [183] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(183), + [sym_doc_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1767), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44526,11 +44361,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1275), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1275), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_COLON] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -44565,7 +44400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_CARET] = ACTIONS(1235), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -44596,51 +44431,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [185] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(185), - [sym_doc_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1552), - [sym_comma_decl_or_expr] = STATE(2247), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [184] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(184), + [sym_doc_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1914), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44653,143 +44486,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(137), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(137), - [anon_sym_bool] = ACTIONS(137), - [anon_sym_char] = ACTIONS(137), - [anon_sym_ichar] = ACTIONS(137), - [anon_sym_short] = ACTIONS(137), - [anon_sym_ushort] = ACTIONS(137), - [anon_sym_uint] = ACTIONS(137), - [anon_sym_long] = ACTIONS(137), - [anon_sym_ulong] = ACTIONS(137), - [anon_sym_int128] = ACTIONS(137), - [anon_sym_uint128] = ACTIONS(137), - [anon_sym_float] = ACTIONS(137), - [anon_sym_double] = ACTIONS(137), - [anon_sym_float16] = ACTIONS(137), - [anon_sym_bfloat16] = ACTIONS(137), - [anon_sym_float128] = ACTIONS(137), - [anon_sym_iptr] = ACTIONS(137), - [anon_sym_uptr] = ACTIONS(137), - [anon_sym_isz] = ACTIONS(137), - [anon_sym_usz] = ACTIONS(137), - [anon_sym_anyfault] = ACTIONS(137), - [anon_sym_any] = ACTIONS(137), - [anon_sym_DOLLARtypeof] = ACTIONS(171), - [anon_sym_DOLLARtypefrom] = ACTIONS(171), - [anon_sym_DOLLARevaltype] = ACTIONS(171), - [anon_sym_DOLLARvatype] = ACTIONS(173), - [sym_real_literal] = ACTIONS(63), - }, - [186] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(186), - [sym_doc_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1045), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_arg] = STATE(1692), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1443), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(1217), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1219), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(1221), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1273), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -44826,7 +44530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_DOLLARvasplat] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1235), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -44857,49 +44561,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [187] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(187), - [sym_doc_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1033), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym__range_loc] = STATE(1788), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [185] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(185), + [sym_doc_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__attribute_operator_expr] = STATE(1851), + [sym_attr_param] = STATE(1809), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1789), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44917,9 +44623,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1279), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -44956,7 +44661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(1245), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -44987,50 +44691,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [188] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(188), - [sym_doc_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1033), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym__range_loc] = STATE(1785), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), + [186] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(186), + [sym_doc_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1040), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_arg] = STATE(1735), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1398), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1209), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), @@ -45039,17 +44743,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), + [sym_ct_ident] = ACTIONS(1211), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), + [anon_sym_DOT] = ACTIONS(1213), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1217), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1279), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -45086,7 +44790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_DOLLARvasplat] = ACTIONS(1221), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -45117,51 +44821,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [189] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(189), - [sym_doc_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym__attribute_operator_expr] = STATE(1923), - [sym_attr_param] = STATE(1941), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1935), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [187] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(187), + [sym_doc_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__attribute_operator_expr] = STATE(1851), + [sym_attr_param] = STATE(1684), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1789), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45179,8 +44883,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1279), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -45247,51 +44951,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [190] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(190), - [sym_doc_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym__attribute_operator_expr] = STATE(1923), - [sym_attr_param] = STATE(1741), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1935), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [188] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(188), + [sym_doc_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2268), + [sym__expr] = STATE(1102), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1521), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45306,13 +45008,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1283), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), + [sym_real_literal] = ACTIONS(63), + }, + [189] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(189), + [sym_doc_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1636), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(79), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), + [sym_real_literal] = ACTIONS(63), + }, + [190] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(190), + [sym_doc_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2156), + [sym__expr] = STATE(1065), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1595), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(1281), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1289), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -45378,48 +45339,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [191] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(191), [sym_doc_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1033), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym__range_loc] = STATE(1925), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2256), + [sym__expr] = STATE(1078), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1506), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45434,14 +45395,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1285), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1291), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1293), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -45476,7 +45437,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(1245), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -45508,48 +45468,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [192] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(192), [sym_doc_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_label_target] = STATE(2264), - [sym__expr] = STATE(1086), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1559), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2260), + [sym__expr] = STATE(1088), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1565), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45564,14 +45524,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1287), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1295), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1297), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -45637,48 +45597,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [193] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(193), [sym_doc_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_label_target] = STATE(2131), - [sym__expr] = STATE(1119), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1526), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2264), + [sym__expr] = STATE(1096), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1496), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45693,14 +45653,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1287), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1299), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1295), + [anon_sym_default] = ACTIONS(1301), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -45766,49 +45726,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [194] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(194), [sym_doc_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1374), - [sym_lambda_declaration] = STATE(1553), - [sym_var_decl] = STATE(1695), - [sym__decl_or_expr] = STATE(1730), - [sym__expr] = STATE(1037), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1229), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1237), - [sym_base_type] = STATE(1226), - [sym_type] = STATE(1431), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2248), + [sym__expr] = STATE(1114), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1507), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45821,17 +45780,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), + [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1303), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(105), + [anon_sym_default] = ACTIONS(1305), [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(137), + [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), [anon_sym_STAR] = ACTIONS(125), @@ -45864,79 +45824,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(137), + [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(137), - [anon_sym_bool] = ACTIONS(137), - [anon_sym_char] = ACTIONS(137), - [anon_sym_ichar] = ACTIONS(137), - [anon_sym_short] = ACTIONS(137), - [anon_sym_ushort] = ACTIONS(137), - [anon_sym_uint] = ACTIONS(137), - [anon_sym_long] = ACTIONS(137), - [anon_sym_ulong] = ACTIONS(137), - [anon_sym_int128] = ACTIONS(137), - [anon_sym_uint128] = ACTIONS(137), - [anon_sym_float] = ACTIONS(137), - [anon_sym_double] = ACTIONS(137), - [anon_sym_float16] = ACTIONS(137), - [anon_sym_bfloat16] = ACTIONS(137), - [anon_sym_float128] = ACTIONS(137), - [anon_sym_iptr] = ACTIONS(137), - [anon_sym_uptr] = ACTIONS(137), - [anon_sym_isz] = ACTIONS(137), - [anon_sym_usz] = ACTIONS(137), - [anon_sym_anyfault] = ACTIONS(137), - [anon_sym_any] = ACTIONS(137), - [anon_sym_DOLLARtypeof] = ACTIONS(171), - [anon_sym_DOLLARtypefrom] = ACTIONS(171), - [anon_sym_DOLLARevaltype] = ACTIONS(171), - [anon_sym_DOLLARvatype] = ACTIONS(173), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [195] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(195), [sym_doc_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_label_target] = STATE(2256), - [sym__expr] = STATE(1077), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1498), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(18), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45951,14 +45912,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1287), + [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1297), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1299), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -46024,48 +45983,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [196] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(196), [sym_doc_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_label_target] = STATE(2276), - [sym__expr] = STATE(1107), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1490), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1706), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46080,14 +46039,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1287), + [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1307), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1301), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1303), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -46153,48 +46111,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [197] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(197), [sym_doc_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_label_target] = STATE(2268), - [sym__expr] = STATE(1090), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1504), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1904), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46209,14 +46167,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1287), + [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1305), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1307), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -46251,6 +46207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -46282,48 +46239,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [198] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(198), [sym_doc_comment] = STATE(198), [sym_block_comment] = STATE(198), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_label_target] = STATE(2272), - [sym__expr] = STATE(1096), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1525), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_try_unwrap] = STATE(1634), + [sym__expr] = STATE(1058), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46338,14 +46295,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1287), + [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1309), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1311), + [anon_sym_try] = ACTIONS(1199), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -46411,48 +46367,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [199] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(199), [sym_doc_comment] = STATE(199), [sym_block_comment] = STATE(199), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_try_unwrap] = STATE(1725), - [sym__expr] = STATE(1063), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(27), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46473,7 +46430,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_try] = ACTIONS(1199), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -46539,48 +46495,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [200] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(200), [sym_doc_comment] = STATE(200), [sym_block_comment] = STATE(200), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1702), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(26), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46598,7 +46555,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1313), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), @@ -46667,49 +46623,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [201] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(201), [sym_doc_comment] = STATE(201), [sym_block_comment] = STATE(201), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_ct_if_cond] = STATE(18), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2266), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(28), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46795,48 +46751,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [202] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(202), [sym_doc_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1033), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym__range_loc] = STATE(1924), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(29), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46891,7 +46848,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(125), [anon_sym_PLUS_PLUS] = ACTIONS(125), [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(1245), [anon_sym_typeid] = ACTIONS(45), [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), @@ -46923,49 +46879,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [203] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(203), [sym_doc_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_ct_if_cond] = STATE(26), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2266), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(31), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47051,49 +47007,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [204] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(204), [sym_doc_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_ct_if_cond] = STATE(29), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2266), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1996), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47179,49 +47134,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [205] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(205), [sym_doc_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_ct_if_cond] = STATE(27), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2266), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_catch_unwrap_list] = STATE(1855), + [sym__expr] = STATE(1032), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47307,49 +47261,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [206] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(206), [sym_doc_comment] = STATE(206), [sym_block_comment] = STATE(206), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_ct_if_cond] = STATE(30), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2266), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1095), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47368,6 +47320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1309), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -47435,49 +47388,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [207] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(207), [sym_doc_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_ct_if_cond] = STATE(31), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2266), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2079), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47563,48 +47515,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [208] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(208), [sym_doc_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2243), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_flat_path] = STATE(2005), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1115), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47690,48 +47642,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [209] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(209), [sym_doc_comment] = STATE(209), [sym_block_comment] = STATE(209), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1965), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1956), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47817,47 +47769,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [210] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(210), [sym_doc_comment] = STATE(210), [sym_block_comment] = STATE(210), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1047), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2191), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1544), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47875,7 +47828,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(1315), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), @@ -47944,47 +47896,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [211] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(211), [sym_doc_comment] = STATE(211), [sym_block_comment] = STATE(211), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1113), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1836), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48003,7 +47956,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1317), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -48071,48 +48023,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [212] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(212), [sym_doc_comment] = STATE(212), [sym_block_comment] = STATE(212), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2097), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__generic_arg_list] = STATE(2083), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1035), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1433), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48198,48 +48150,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [213] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(213), [sym_doc_comment] = STATE(213), [sym_block_comment] = STATE(213), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2014), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1079), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1530), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48260,6 +48211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1311), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -48325,48 +48277,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [214] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(214), [sym_doc_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2130), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1572), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2118), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1596), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48452,48 +48404,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [215] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(215), [sym_doc_comment] = STATE(215), [sym_block_comment] = STATE(215), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2040), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48512,13 +48463,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1313), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(1315), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -48579,48 +48531,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [216] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(216), [sym_doc_comment] = STATE(216), [sym_block_comment] = STATE(216), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2148), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1582), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1111), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48639,6 +48590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1317), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -48706,49 +48658,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [217] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(217), [sym_doc_comment] = STATE(217), [sym_block_comment] = STATE(217), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1936), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_catch_unwrap_list] = STATE(1798), + [sym__expr] = STATE(1032), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1539), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1319), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), @@ -48833,47 +48785,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [218] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(218), [sym_doc_comment] = STATE(218), [sym_block_comment] = STATE(218), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1117), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1075), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48892,14 +48844,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1321), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1323), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -48960,48 +48912,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [219] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(219), [sym_doc_comment] = STATE(219), [sym_block_comment] = STATE(219), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1804), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1760), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49087,47 +49039,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [220] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(220), [sym_doc_comment] = STATE(220), [sym_block_comment] = STATE(220), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1074), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_case_range] = STATE(2047), + [sym__expr] = STATE(1051), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1546), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49146,14 +49099,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1323), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(125), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -49214,47 +49166,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [221] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(221), [sym_doc_comment] = STATE(221), [sym_block_comment] = STATE(221), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1076), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49273,7 +49226,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1327), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -49341,47 +49293,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [222] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(222), [sym_doc_comment] = STATE(222), [sym_block_comment] = STATE(222), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1100), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1606), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1873), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49402,7 +49355,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1329), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -49468,49 +49420,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [223] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(223), [sym_doc_comment] = STATE(223), [sym_block_comment] = STATE(223), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_catch_unwrap_list] = STATE(1839), - [sym__expr] = STATE(1034), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1530), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(1331), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2261), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), @@ -49595,48 +49547,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [224] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(224), [sym_doc_comment] = STATE(224), [sym_block_comment] = STATE(224), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_case_range] = STATE(2122), - [sym__expr] = STATE(1055), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1511), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1938), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49722,47 +49674,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [225] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(225), [sym_doc_comment] = STATE(225), [sym_block_comment] = STATE(225), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1083), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__generic_arg_list] = STATE(1974), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1035), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1433), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49781,14 +49734,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1333), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(125), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -49849,47 +49801,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [226] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(226), [sym_doc_comment] = STATE(226), [sym_block_comment] = STATE(226), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1085), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2236), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49908,7 +49861,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1337), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -49976,48 +49928,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [227] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(227), [sym_doc_comment] = STATE(227), [sym_block_comment] = STATE(227), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym__generic_arg_list] = STATE(2153), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1036), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1394), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2039), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50103,47 +50055,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [228] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(228), [sym_doc_comment] = STATE(228), [sym_block_comment] = STATE(228), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1089), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1077), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50162,7 +50114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1325), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -50230,47 +50182,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [229] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(229), [sym_doc_comment] = STATE(229), [sym_block_comment] = STATE(229), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1095), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1066), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1583), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50289,9 +50241,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1341), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1327), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -50357,48 +50309,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [230] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(230), [sym_doc_comment] = STATE(230), [sym_block_comment] = STATE(230), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2165), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_catch_unwrap_list] = STATE(1762), + [sym__expr] = STATE(1032), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50484,47 +50436,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [231] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(231), [sym_doc_comment] = STATE(231), [sym_block_comment] = STATE(231), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1106), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1090), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50543,14 +50495,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_RBRACK] = ACTIONS(1329), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(1331), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -50611,48 +50563,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [232] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(232), [sym_doc_comment] = STATE(232), [sym_block_comment] = STATE(232), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_catch_unwrap_list] = STATE(1768), - [sym__expr] = STATE(1034), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1086), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50671,6 +50622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1333), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -50738,48 +50690,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [233] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(233), [sym_doc_comment] = STATE(233), [sym_block_comment] = STATE(233), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_flat_path] = STATE(2218), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1105), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2238), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50865,48 +50817,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [234] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(234), [sym_doc_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1880), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2245), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50992,48 +50944,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [235] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(235), [sym_doc_comment] = STATE(235), [sym_block_comment] = STATE(235), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1770), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__generic_arg_list] = STATE(2249), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1035), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1433), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51119,48 +51071,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [236] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(236), [sym_doc_comment] = STATE(236), [sym_block_comment] = STATE(236), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2214), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1112), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51179,6 +51130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1335), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -51246,48 +51198,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [237] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(237), [sym_doc_comment] = STATE(237), [sym_block_comment] = STATE(237), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2023), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2033), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51373,48 +51325,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [238] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(238), [sym_doc_comment] = STATE(238), [sym_block_comment] = STATE(238), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym__generic_arg_list] = STATE(2033), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1036), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1394), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1084), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1537), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51435,6 +51386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1337), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -51500,48 +51452,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [239] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(239), [sym_doc_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2106), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1870), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51627,47 +51579,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [240] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(240), [sym_doc_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1079), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1522), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2107), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51688,7 +51641,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1345), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -51754,48 +51706,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [241] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(241), [sym_doc_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym_catch_unwrap_list] = STATE(1854), - [sym__expr] = STATE(1034), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2113), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51881,48 +51833,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [242] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(242), [sym_doc_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1765), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1867), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52008,48 +51960,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [243] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(243), [sym_doc_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2267), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2180), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52135,48 +52087,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [244] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(244), [sym_doc_comment] = STATE(244), [sym_block_comment] = STATE(244), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1944), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1487), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52197,6 +52148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1339), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -52262,48 +52214,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [245] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(245), [sym_doc_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym__generic_arg_list] = STATE(1951), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1036), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1394), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1753), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52389,48 +52341,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [246] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(246), [sym_doc_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2051), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2230), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52516,47 +52468,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [247] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(247), [sym_doc_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1087), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1495), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2232), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52577,7 +52530,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1347), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -52643,48 +52595,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [248] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(248), [sym_doc_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1852), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52703,6 +52654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1341), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), [anon_sym_AMP_AMP] = ACTIONS(125), @@ -52770,48 +52722,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [249] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(249), [sym_doc_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2116), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1960), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52897,48 +52849,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [250] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(250), [sym_doc_comment] = STATE(250), [sym_block_comment] = STATE(250), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2118), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1097), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1513), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52959,6 +52910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1343), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -53024,48 +52976,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [251] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(251), [sym_doc_comment] = STATE(251), [sym_block_comment] = STATE(251), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2182), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1787), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53151,47 +53103,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [252] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(252), [sym_doc_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1093), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1517), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1995), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53212,7 +53165,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1349), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -53278,48 +53230,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [253] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(253), [sym_doc_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1756), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2026), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53405,48 +53357,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [254] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(254), [sym_doc_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2242), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1993), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53532,48 +53484,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [255] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(255), [sym_doc_comment] = STATE(255), [sym_block_comment] = STATE(255), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2244), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2036), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53659,48 +53611,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [256] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(256), [sym_doc_comment] = STATE(256), [sym_block_comment] = STATE(256), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1969), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1106), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1535), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53721,6 +53672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1345), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -53786,47 +53738,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [257] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(257), [sym_doc_comment] = STATE(257), [sym_block_comment] = STATE(257), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1101), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1536), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1822), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53847,7 +53800,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1351), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -53913,48 +53865,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [258] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(258), [sym_doc_comment] = STATE(258), [sym_block_comment] = STATE(258), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1793), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54040,48 +53992,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [259] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(259), [sym_doc_comment] = STATE(259), [sym_block_comment] = STATE(259), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2004), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2071), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54167,48 +54119,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [260] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(260), [sym_doc_comment] = STATE(260), [sym_block_comment] = STATE(260), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2005), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2080), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54294,48 +54246,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [261] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(261), [sym_doc_comment] = STATE(261), [sym_block_comment] = STATE(261), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2044), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1037), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54353,6 +54304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1347), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), @@ -54421,47 +54373,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [262] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(262), [sym_doc_comment] = STATE(262), [sym_block_comment] = STATE(262), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1111), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1555), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2114), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54482,7 +54435,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1353), [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), @@ -54548,48 +54500,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [263] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(263), [sym_doc_comment] = STATE(263), [sym_block_comment] = STATE(263), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1828), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2150), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54675,48 +54627,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [264] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(264), [sym_doc_comment] = STATE(264), [sym_block_comment] = STATE(264), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2079), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2179), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54802,48 +54754,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [265] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(265), [sym_doc_comment] = STATE(265), [sym_block_comment] = STATE(265), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2080), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2208), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54929,48 +54881,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [266] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(266), [sym_doc_comment] = STATE(266), [sym_block_comment] = STATE(266), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2089), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1765), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55056,48 +55008,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [267] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(267), [sym_doc_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2123), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(857), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55183,48 +55134,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [268] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(268), [sym_doc_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2157), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(862), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55310,48 +55260,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [269] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(269), [sym_doc_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2186), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(863), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55437,48 +55386,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [270] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(270), [sym_doc_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(2018), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1056), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(1057), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1059), - [sym_lambda_expr] = STATE(1059), - [sym_elvis_orelse_expr] = STATE(1059), - [sym_optional_expr] = STATE(1059), - [sym_cast_expr] = STATE(1059), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1059), - [sym_binary_expr] = STATE(1059), - [sym_call_expr] = STATE(1059), - [sym_update_expr] = STATE(1059), - [sym_rethrow_expr] = STATE(1059), - [sym_trailing_generic_expr] = STATE(1059), - [sym_subscript_expr] = STATE(1059), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1049), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55564,47 +55512,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [271] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(271), [sym_doc_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(846), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1069), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55690,47 +55638,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [272] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(272), [sym_doc_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1099), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(864), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55755,7 +55703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(125), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -55816,47 +55764,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [273] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(273), [sym_doc_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1070), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1038), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55942,47 +55890,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [274] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(274), [sym_doc_comment] = STATE(274), [sym_block_comment] = STATE(274), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(841), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(865), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56068,48 +56016,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [275] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(275), [sym_doc_comment] = STATE(275), [sym_block_comment] = STATE(275), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(842), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1056), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1534), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1349), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), @@ -56194,47 +56142,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [276] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(276), [sym_doc_comment] = STATE(276), [sym_block_comment] = STATE(276), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(843), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(835), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56320,47 +56268,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [277] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(277), [sym_doc_comment] = STATE(277), [sym_block_comment] = STATE(277), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(838), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(867), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56446,47 +56394,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [278] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(278), [sym_doc_comment] = STATE(278), [sym_block_comment] = STATE(278), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(845), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1151), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56572,47 +56520,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [279] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(279), [sym_doc_comment] = STATE(279), [sym_block_comment] = STATE(279), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(849), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(836), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56698,47 +56646,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [280] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(280), [sym_doc_comment] = STATE(280), [sym_block_comment] = STATE(280), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1110), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(837), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56824,47 +56772,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [281] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(281), [sym_doc_comment] = STATE(281), [sym_block_comment] = STATE(281), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(852), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(838), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56950,47 +56898,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [282] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(282), [sym_doc_comment] = STATE(282), [sym_block_comment] = STATE(282), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1114), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(839), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57076,47 +57024,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [283] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(283), [sym_doc_comment] = STATE(283), [sym_block_comment] = STATE(283), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1042), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1446), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(840), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57202,47 +57150,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [284] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(284), [sym_doc_comment] = STATE(284), [sym_block_comment] = STATE(284), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(853), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(841), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57328,47 +57276,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [285] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(285), [sym_doc_comment] = STATE(285), [sym_block_comment] = STATE(285), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(854), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(842), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57454,47 +57402,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [286] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(286), [sym_doc_comment] = STATE(286), [sym_block_comment] = STATE(286), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(855), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(844), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57580,47 +57528,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [287] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(287), [sym_doc_comment] = STATE(287), [sym_block_comment] = STATE(287), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(844), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1082), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57706,47 +57654,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [288] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(288), [sym_doc_comment] = STATE(288), [sym_block_comment] = STATE(288), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(859), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(845), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57832,47 +57780,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [289] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(289), [sym_doc_comment] = STATE(289), [sym_block_comment] = STATE(289), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(867), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57958,47 +57906,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [290] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(290), [sym_doc_comment] = STATE(290), [sym_block_comment] = STATE(290), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(869), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1036), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1444), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58084,47 +58032,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [291] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(291), [sym_doc_comment] = STATE(291), [sym_block_comment] = STATE(291), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(839), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(846), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58210,47 +58158,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [292] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(292), [sym_doc_comment] = STATE(292), [sym_block_comment] = STATE(292), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(847), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1055), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1469), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58336,47 +58284,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [293] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(293), [sym_doc_comment] = STATE(293), [sym_block_comment] = STATE(293), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), [sym__expr] = STATE(848), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58462,47 +58410,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [294] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(294), [sym_doc_comment] = STATE(294), [sym_block_comment] = STATE(294), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(850), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1053), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58588,173 +58536,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(63), }, [295] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(295), [sym_doc_comment] = STATE(295), [sym_block_comment] = STATE(295), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(851), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1185), - [anon_sym_DOLLARtypefrom] = ACTIONS(1185), - [anon_sym_DOLLARevaltype] = ACTIONS(1185), - [anon_sym_DOLLARvatype] = ACTIONS(1187), - [sym_real_literal] = ACTIONS(63), - }, - [296] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(296), - [sym_doc_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), [sym__expr] = STATE(860), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58839,48 +58661,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [297] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(297), - [sym_doc_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(856), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [296] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(296), + [sym_doc_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1089), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58965,48 +58787,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [298] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(298), - [sym_doc_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1120), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [297] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(297), + [sym_doc_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1067), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1523), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59091,48 +58913,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [299] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(299), - [sym_doc_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1068), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [298] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(298), + [sym_doc_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1119), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59157,7 +58979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(1351), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -59217,48 +59039,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [300] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(300), - [sym_doc_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(858), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [299] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(299), + [sym_doc_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(854), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59343,48 +59165,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [301] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(301), - [sym_doc_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1118), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [300] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(300), + [sym_doc_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1107), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59469,48 +59291,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [302] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(302), - [sym_doc_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(865), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [301] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(301), + [sym_doc_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1067), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59595,48 +59417,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [303] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(303), - [sym_doc_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1041), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1388), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [302] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(302), + [sym_doc_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1039), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59721,48 +59543,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [304] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(304), - [sym_doc_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1061), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1486), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [303] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(303), + [sym_doc_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59847,48 +59669,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [305] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(305), - [sym_doc_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1068), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1499), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [304] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(304), + [sym_doc_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1148), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59973,48 +59795,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [306] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(306), - [sym_doc_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1060), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [305] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(305), + [sym_doc_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1045), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1397), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60099,48 +59921,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [307] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(307), - [sym_doc_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1092), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [306] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(306), + [sym_doc_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1059), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60225,48 +60047,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [308] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(308), - [sym_doc_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(857), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [307] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(307), + [sym_doc_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1052), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60351,48 +60173,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [309] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(309), - [sym_doc_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1050), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [308] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(308), + [sym_doc_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1041), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60477,48 +60299,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [310] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(310), - [sym_doc_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1139), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [309] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(309), + [sym_doc_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(849), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60603,48 +60425,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [311] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(311), - [sym_doc_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1103), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [310] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(310), + [sym_doc_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1113), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60729,48 +60551,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [312] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(312), - [sym_doc_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1064), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [311] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(311), + [sym_doc_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1071), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60855,48 +60677,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [313] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(313), - [sym_doc_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(868), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [312] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(312), + [sym_doc_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(851), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60981,48 +60803,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [314] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(314), - [sym_doc_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1072), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [313] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(313), + [sym_doc_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1074), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61107,48 +60929,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [315] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(315), - [sym_doc_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1073), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [314] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(314), + [sym_doc_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(852), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61233,174 +61055,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [316] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(316), - [sym_doc_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1075), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1185), - [anon_sym_DOLLARtypefrom] = ACTIONS(1185), - [anon_sym_DOLLARevaltype] = ACTIONS(1185), - [anon_sym_DOLLARvatype] = ACTIONS(1187), - [sym_real_literal] = ACTIONS(63), - }, - [317] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(317), - [sym_doc_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1054), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [315] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(315), + [sym_doc_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(853), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61485,48 +61181,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [318] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(318), - [sym_doc_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1039), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [316] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(316), + [sym_doc_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1064), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61611,48 +61307,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [319] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(319), - [sym_doc_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1049), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [317] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(317), + [sym_doc_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(855), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61737,48 +61433,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [320] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(320), - [sym_doc_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1091), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [318] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(318), + [sym_doc_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(856), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61863,48 +61559,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [321] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(321), - [sym_doc_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1035), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [319] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(319), + [sym_doc_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1117), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61989,48 +61685,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [322] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(322), - [sym_doc_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1081), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [320] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(320), + [sym_doc_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1118), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62115,48 +61811,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [323] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(323), - [sym_doc_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1082), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [321] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(321), + [sym_doc_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62241,48 +61937,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [324] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(324), - [sym_doc_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1084), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [322] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(322), + [sym_doc_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1034), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62307,7 +62003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(125), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -62367,48 +62063,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [325] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(325), - [sym_doc_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1067), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [323] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(323), + [sym_doc_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1103), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62493,48 +62189,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [326] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(326), - [sym_doc_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(863), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [324] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(324), + [sym_doc_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1104), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62619,48 +62315,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [327] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(327), - [sym_doc_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1108), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [325] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(325), + [sym_doc_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1110), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62685,7 +62381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(1353), [anon_sym_DOLLARalignof] = ACTIONS(155), [anon_sym_DOLLARextnameof] = ACTIONS(155), [anon_sym_DOLLARnameof] = ACTIONS(155), @@ -62745,48 +62441,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [328] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(328), - [sym_doc_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1098), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [326] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(326), + [sym_doc_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(858), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62871,48 +62567,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [329] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(329), - [sym_doc_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1109), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [327] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(327), + [sym_doc_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1072), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62997,48 +62693,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [330] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(330), - [sym_doc_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1051), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [328] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(328), + [sym_doc_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1073), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63123,48 +62819,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [331] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(331), - [sym_doc_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1128), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(1155), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [329] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(329), + [sym_doc_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1076), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), + [sym_real_literal] = ACTIONS(63), + }, + [330] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(330), + [sym_doc_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1105), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63249,48 +63071,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [332] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(332), - [sym_doc_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(866), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [331] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(331), + [sym_doc_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1031), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63375,48 +63197,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [333] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(333), - [sym_doc_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1040), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [332] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(332), + [sym_doc_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1043), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63501,48 +63323,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [334] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(334), - [sym_doc_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1121), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [333] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(333), + [sym_doc_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1044), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63627,48 +63449,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [335] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(335), - [sym_doc_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1038), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [334] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(334), + [sym_doc_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(861), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63753,48 +63575,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [336] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(336), - [sym_doc_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1046), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [335] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(335), + [sym_doc_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1033), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63879,49 +63701,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [337] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(337), - [sym_doc_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1058), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1591), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(1361), + [336] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(336), + [sym_doc_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1046), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), @@ -64005,48 +63827,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, - [338] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(338), - [sym_doc_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1044), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), + [337] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(337), + [sym_doc_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1108), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -64131,263 +63953,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, + [338] = { + [sym_line_comment] = STATE(338), + [sym_doc_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_else_part] = STATE(366), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_PIPE_RBRACE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, [339] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), [sym_line_comment] = STATE(339), [sym_doc_comment] = STATE(339), [sym_block_comment] = STATE(339), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1048), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1185), - [anon_sym_DOLLARtypefrom] = ACTIONS(1185), - [anon_sym_DOLLARevaltype] = ACTIONS(1185), - [anon_sym_DOLLARvatype] = ACTIONS(1187), - [sym_real_literal] = ACTIONS(63), - }, - [340] = { - [sym_char_literal] = STATE(970), - [sym_string_literal] = STATE(879), - [sym_raw_string_literal] = STATE(879), - [sym_line_comment] = STATE(340), - [sym_doc_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1373), - [sym_lambda_declaration] = STATE(1553), - [sym__expr] = STATE(1053), - [sym__ident_expr] = STATE(970), - [sym__local_ident_expr] = STATE(970), - [sym_string_expr] = STATE(970), - [sym_bytes_expr] = STATE(970), - [sym_paren_expr] = STATE(970), - [sym__base_expr] = STATE(907), - [sym_module_ident_expr] = STATE(970), - [sym_module_type_ident] = STATE(1052), - [sym_initializer_list] = STATE(908), - [sym_assignment_expr] = STATE(1002), - [sym_ternary_expr] = STATE(1002), - [sym_lambda_expr] = STATE(1002), - [sym_elvis_orelse_expr] = STATE(1002), - [sym_optional_expr] = STATE(1002), - [sym_cast_expr] = STATE(1002), - [sym__unary_op] = STATE(313), - [sym_unary_expr] = STATE(1002), - [sym_binary_expr] = STATE(1002), - [sym_call_expr] = STATE(1002), - [sym_update_expr] = STATE(1002), - [sym_rethrow_expr] = STATE(1002), - [sym_trailing_generic_expr] = STATE(1002), - [sym_subscript_expr] = STATE(1002), - [sym_field_expr] = STATE(970), - [sym_type_access_expr] = STATE(970), - [sym_expr_block] = STATE(970), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1689), - [aux_sym_string_expr_repeat1] = STATE(834), - [aux_sym_bytes_expr_repeat1] = STATE(877), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(125), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_DOLLARalignof] = ACTIONS(155), - [anon_sym_DOLLARextnameof] = ACTIONS(155), - [anon_sym_DOLLARnameof] = ACTIONS(155), - [anon_sym_DOLLARoffsetof] = ACTIONS(155), - [anon_sym_DOLLARqnameof] = ACTIONS(155), - [anon_sym_DOLLARvaconst] = ACTIONS(157), - [anon_sym_DOLLARvaarg] = ACTIONS(157), - [anon_sym_DOLLARvaref] = ACTIONS(157), - [anon_sym_DOLLARvaexpr] = ACTIONS(157), - [anon_sym_true] = ACTIONS(159), - [anon_sym_false] = ACTIONS(159), - [anon_sym_null] = ACTIONS(159), - [anon_sym_DOLLARvacount] = ACTIONS(159), - [anon_sym_DOLLAReval] = ACTIONS(161), - [anon_sym_DOLLARis_const] = ACTIONS(161), - [anon_sym_DOLLARsizeof] = ACTIONS(161), - [anon_sym_DOLLARstringify] = ACTIONS(161), - [anon_sym_DOLLARappend] = ACTIONS(163), - [anon_sym_DOLLARconcat] = ACTIONS(163), - [anon_sym_DOLLARdefined] = ACTIONS(163), - [anon_sym_DOLLARembed] = ACTIONS(163), - [anon_sym_DOLLARand] = ACTIONS(163), - [anon_sym_DOLLARor] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_PLUS_PLUS] = ACTIONS(125), - [anon_sym_DASH_DASH] = ACTIONS(125), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(169), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1185), - [anon_sym_DOLLARtypefrom] = ACTIONS(1185), - [anon_sym_DOLLARevaltype] = ACTIONS(1185), - [anon_sym_DOLLARvatype] = ACTIONS(1187), - [sym_real_literal] = ACTIONS(63), - }, - [341] = { - [sym_line_comment] = STATE(341), - [sym_doc_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_else_part] = STATE(376), [sym_ident] = ACTIONS(1363), [sym_integer_literal] = ACTIONS(1365), [anon_sym_SQUOTE] = ACTIONS(1365), @@ -64425,7 +64114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1363), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_if] = ACTIONS(1363), - [anon_sym_else] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1363), [anon_sym_for] = ACTIONS(1363), [anon_sym_foreach] = ACTIONS(1363), [anon_sym_foreach_r] = ACTIONS(1363), @@ -64503,129 +64192,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1363), [sym_real_literal] = ACTIONS(1365), }, + [340] = { + [sym_line_comment] = STATE(340), + [sym_doc_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1367), + [anon_sym_default] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_PIPE_RBRACE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), + }, + [341] = { + [sym_line_comment] = STATE(341), + [sym_doc_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_else_part] = STATE(428), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARcase] = ACTIONS(1357), + [anon_sym_DOLLARdefault] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARendswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, [342] = { [sym_line_comment] = STATE(342), [sym_doc_comment] = STATE(342), [sym_block_comment] = STATE(342), - [sym_ident] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1371), - [sym_bytes_literal] = ACTIONS(1371), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1369), - [sym_at_ident] = ACTIONS(1371), - [sym_hash_ident] = ACTIONS(1371), - [sym_type_ident] = ACTIONS(1371), - [sym_ct_type_ident] = ACTIONS(1371), - [sym_const_ident] = ACTIONS(1369), - [sym_builtin] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_tlocal] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_fn] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_var] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_assert] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_nextcase] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_foreach] = ACTIONS(1369), - [anon_sym_foreach_r] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym_DOLLARassert] = ACTIONS(1369), - [anon_sym_DOLLARerror] = ACTIONS(1369), - [anon_sym_DOLLARecho] = ACTIONS(1369), - [anon_sym_DOLLARif] = ACTIONS(1369), - [anon_sym_DOLLARswitch] = ACTIONS(1369), - [anon_sym_DOLLARfor] = ACTIONS(1369), - [anon_sym_DOLLARforeach] = ACTIONS(1369), - [anon_sym_DOLLARalignof] = ACTIONS(1369), - [anon_sym_DOLLARextnameof] = ACTIONS(1369), - [anon_sym_DOLLARnameof] = ACTIONS(1369), - [anon_sym_DOLLARoffsetof] = ACTIONS(1369), - [anon_sym_DOLLARqnameof] = ACTIONS(1369), - [anon_sym_DOLLARvaconst] = ACTIONS(1369), - [anon_sym_DOLLARvaarg] = ACTIONS(1369), - [anon_sym_DOLLARvaref] = ACTIONS(1369), - [anon_sym_DOLLARvaexpr] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_DOLLARvacount] = ACTIONS(1369), - [anon_sym_DOLLAReval] = ACTIONS(1369), - [anon_sym_DOLLARis_const] = ACTIONS(1369), - [anon_sym_DOLLARsizeof] = ACTIONS(1369), - [anon_sym_DOLLARstringify] = ACTIONS(1369), - [anon_sym_DOLLARappend] = ACTIONS(1369), - [anon_sym_DOLLARconcat] = ACTIONS(1369), - [anon_sym_DOLLARdefined] = ACTIONS(1369), - [anon_sym_DOLLARembed] = ACTIONS(1369), - [anon_sym_DOLLARand] = ACTIONS(1369), - [anon_sym_DOLLARor] = ACTIONS(1369), - [anon_sym_DOLLARfeature] = ACTIONS(1369), - [anon_sym_DOLLARassignable] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_typeid] = ACTIONS(1369), - [anon_sym_LBRACE_PIPE] = ACTIONS(1371), - [anon_sym_PIPE_RBRACE] = ACTIONS(1371), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_ichar] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_ushort] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_ulong] = ACTIONS(1369), - [anon_sym_int128] = ACTIONS(1369), - [anon_sym_uint128] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_double] = ACTIONS(1369), - [anon_sym_float16] = ACTIONS(1369), - [anon_sym_bfloat16] = ACTIONS(1369), - [anon_sym_float128] = ACTIONS(1369), - [anon_sym_iptr] = ACTIONS(1369), - [anon_sym_uptr] = ACTIONS(1369), - [anon_sym_isz] = ACTIONS(1369), - [anon_sym_usz] = ACTIONS(1369), - [anon_sym_anyfault] = ACTIONS(1369), - [anon_sym_any] = ACTIONS(1369), - [anon_sym_DOLLARtypeof] = ACTIONS(1369), - [anon_sym_DOLLARtypefrom] = ACTIONS(1369), - [anon_sym_DOLLARevaltype] = ACTIONS(1369), - [anon_sym_DOLLARvatype] = ACTIONS(1369), - [sym_real_literal] = ACTIONS(1371), - }, - [343] = { - [sym_line_comment] = STATE(343), - [sym_doc_comment] = STATE(343), - [sym_block_comment] = STATE(343), [sym_ident] = ACTIONS(1373), [sym_integer_literal] = ACTIONS(1375), [anon_sym_SQUOTE] = ACTIONS(1375), @@ -64663,7 +64471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1373), [anon_sym_AMP_AMP] = ACTIONS(1375), [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), [anon_sym_for] = ACTIONS(1373), [anon_sym_foreach] = ACTIONS(1373), [anon_sym_foreach_r] = ACTIONS(1373), @@ -64741,11 +64548,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1373), [sym_real_literal] = ACTIONS(1375), }, + [343] = { + [sym_line_comment] = STATE(343), + [sym_doc_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_case] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_PIPE_RBRACE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), + }, [344] = { [sym_line_comment] = STATE(344), [sym_doc_comment] = STATE(344), [sym_block_comment] = STATE(344), - [sym_else_part] = STATE(461), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARcase] = ACTIONS(1367), + [anon_sym_DOLLARdefault] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARendswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), + }, + [345] = { + [sym_line_comment] = STATE(345), + [sym_doc_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_case] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_PIPE_RBRACE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), + }, + [346] = { + [sym_line_comment] = STATE(346), + [sym_doc_comment] = STATE(346), + [sym_block_comment] = STATE(346), [sym_ident] = ACTIONS(1363), [sym_integer_literal] = ACTIONS(1365), [anon_sym_SQUOTE] = ACTIONS(1365), @@ -64780,7 +64940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1363), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_if] = ACTIONS(1363), - [anon_sym_else] = ACTIONS(1377), + [anon_sym_else] = ACTIONS(1363), [anon_sym_for] = ACTIONS(1363), [anon_sym_foreach] = ACTIONS(1363), [anon_sym_foreach_r] = ACTIONS(1363), @@ -64860,4140 +65020,3786 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1363), [sym_real_literal] = ACTIONS(1365), }, - [345] = { - [sym_line_comment] = STATE(345), - [sym_doc_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_ident] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_BQUOTE] = ACTIONS(1381), - [sym_bytes_literal] = ACTIONS(1381), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1379), - [sym_at_ident] = ACTIONS(1381), - [sym_hash_ident] = ACTIONS(1381), - [sym_type_ident] = ACTIONS(1381), - [sym_ct_type_ident] = ACTIONS(1381), - [sym_const_ident] = ACTIONS(1379), - [sym_builtin] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_tlocal] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_fn] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_var] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_defer] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_case] = ACTIONS(1379), - [anon_sym_default] = ACTIONS(1379), - [anon_sym_nextcase] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_foreach] = ACTIONS(1379), - [anon_sym_foreach_r] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_int] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym_DOLLARassert] = ACTIONS(1379), - [anon_sym_DOLLARerror] = ACTIONS(1379), - [anon_sym_DOLLARecho] = ACTIONS(1379), - [anon_sym_DOLLARif] = ACTIONS(1379), - [anon_sym_DOLLARswitch] = ACTIONS(1379), - [anon_sym_DOLLARfor] = ACTIONS(1379), - [anon_sym_DOLLARforeach] = ACTIONS(1379), - [anon_sym_DOLLARalignof] = ACTIONS(1379), - [anon_sym_DOLLARextnameof] = ACTIONS(1379), - [anon_sym_DOLLARnameof] = ACTIONS(1379), - [anon_sym_DOLLARoffsetof] = ACTIONS(1379), - [anon_sym_DOLLARqnameof] = ACTIONS(1379), - [anon_sym_DOLLARvaconst] = ACTIONS(1379), - [anon_sym_DOLLARvaarg] = ACTIONS(1379), - [anon_sym_DOLLARvaref] = ACTIONS(1379), - [anon_sym_DOLLARvaexpr] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1379), - [anon_sym_false] = ACTIONS(1379), - [anon_sym_null] = ACTIONS(1379), - [anon_sym_DOLLARvacount] = ACTIONS(1379), - [anon_sym_DOLLAReval] = ACTIONS(1379), - [anon_sym_DOLLARis_const] = ACTIONS(1379), - [anon_sym_DOLLARsizeof] = ACTIONS(1379), - [anon_sym_DOLLARstringify] = ACTIONS(1379), - [anon_sym_DOLLARappend] = ACTIONS(1379), - [anon_sym_DOLLARconcat] = ACTIONS(1379), - [anon_sym_DOLLARdefined] = ACTIONS(1379), - [anon_sym_DOLLARembed] = ACTIONS(1379), - [anon_sym_DOLLARand] = ACTIONS(1379), - [anon_sym_DOLLARor] = ACTIONS(1379), - [anon_sym_DOLLARfeature] = ACTIONS(1379), - [anon_sym_DOLLARassignable] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_typeid] = ACTIONS(1379), - [anon_sym_LBRACE_PIPE] = ACTIONS(1381), - [anon_sym_PIPE_RBRACE] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1379), - [anon_sym_bool] = ACTIONS(1379), - [anon_sym_char] = ACTIONS(1379), - [anon_sym_ichar] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_ushort] = ACTIONS(1379), - [anon_sym_uint] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_ulong] = ACTIONS(1379), - [anon_sym_int128] = ACTIONS(1379), - [anon_sym_uint128] = ACTIONS(1379), - [anon_sym_float] = ACTIONS(1379), - [anon_sym_double] = ACTIONS(1379), - [anon_sym_float16] = ACTIONS(1379), - [anon_sym_bfloat16] = ACTIONS(1379), - [anon_sym_float128] = ACTIONS(1379), - [anon_sym_iptr] = ACTIONS(1379), - [anon_sym_uptr] = ACTIONS(1379), - [anon_sym_isz] = ACTIONS(1379), - [anon_sym_usz] = ACTIONS(1379), - [anon_sym_anyfault] = ACTIONS(1379), - [anon_sym_any] = ACTIONS(1379), - [anon_sym_DOLLARtypeof] = ACTIONS(1379), - [anon_sym_DOLLARtypefrom] = ACTIONS(1379), - [anon_sym_DOLLARevaltype] = ACTIONS(1379), - [anon_sym_DOLLARvatype] = ACTIONS(1379), - [sym_real_literal] = ACTIONS(1381), - }, - [346] = { - [sym_line_comment] = STATE(346), - [sym_doc_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_ident] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [sym_bytes_literal] = ACTIONS(1385), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1383), - [sym_at_ident] = ACTIONS(1385), - [sym_hash_ident] = ACTIONS(1385), - [sym_type_ident] = ACTIONS(1385), - [sym_ct_type_ident] = ACTIONS(1385), - [sym_const_ident] = ACTIONS(1383), - [sym_builtin] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_tlocal] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_var] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_defer] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_case] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_nextcase] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_AMP_AMP] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_foreach] = ACTIONS(1383), - [anon_sym_foreach_r] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_int] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym_DOLLARassert] = ACTIONS(1383), - [anon_sym_DOLLARerror] = ACTIONS(1383), - [anon_sym_DOLLARecho] = ACTIONS(1383), - [anon_sym_DOLLARif] = ACTIONS(1383), - [anon_sym_DOLLARswitch] = ACTIONS(1383), - [anon_sym_DOLLARfor] = ACTIONS(1383), - [anon_sym_DOLLARforeach] = ACTIONS(1383), - [anon_sym_DOLLARalignof] = ACTIONS(1383), - [anon_sym_DOLLARextnameof] = ACTIONS(1383), - [anon_sym_DOLLARnameof] = ACTIONS(1383), - [anon_sym_DOLLARoffsetof] = ACTIONS(1383), - [anon_sym_DOLLARqnameof] = ACTIONS(1383), - [anon_sym_DOLLARvaconst] = ACTIONS(1383), - [anon_sym_DOLLARvaarg] = ACTIONS(1383), - [anon_sym_DOLLARvaref] = ACTIONS(1383), - [anon_sym_DOLLARvaexpr] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1383), - [anon_sym_DOLLARvacount] = ACTIONS(1383), - [anon_sym_DOLLAReval] = ACTIONS(1383), - [anon_sym_DOLLARis_const] = ACTIONS(1383), - [anon_sym_DOLLARsizeof] = ACTIONS(1383), - [anon_sym_DOLLARstringify] = ACTIONS(1383), - [anon_sym_DOLLARappend] = ACTIONS(1383), - [anon_sym_DOLLARconcat] = ACTIONS(1383), - [anon_sym_DOLLARdefined] = ACTIONS(1383), - [anon_sym_DOLLARembed] = ACTIONS(1383), - [anon_sym_DOLLARand] = ACTIONS(1383), - [anon_sym_DOLLARor] = ACTIONS(1383), - [anon_sym_DOLLARfeature] = ACTIONS(1383), - [anon_sym_DOLLARassignable] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_typeid] = ACTIONS(1383), - [anon_sym_LBRACE_PIPE] = ACTIONS(1385), - [anon_sym_PIPE_RBRACE] = ACTIONS(1385), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_bool] = ACTIONS(1383), - [anon_sym_char] = ACTIONS(1383), - [anon_sym_ichar] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_ushort] = ACTIONS(1383), - [anon_sym_uint] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_ulong] = ACTIONS(1383), - [anon_sym_int128] = ACTIONS(1383), - [anon_sym_uint128] = ACTIONS(1383), - [anon_sym_float] = ACTIONS(1383), - [anon_sym_double] = ACTIONS(1383), - [anon_sym_float16] = ACTIONS(1383), - [anon_sym_bfloat16] = ACTIONS(1383), - [anon_sym_float128] = ACTIONS(1383), - [anon_sym_iptr] = ACTIONS(1383), - [anon_sym_uptr] = ACTIONS(1383), - [anon_sym_isz] = ACTIONS(1383), - [anon_sym_usz] = ACTIONS(1383), - [anon_sym_anyfault] = ACTIONS(1383), - [anon_sym_any] = ACTIONS(1383), - [anon_sym_DOLLARtypeof] = ACTIONS(1383), - [anon_sym_DOLLARtypefrom] = ACTIONS(1383), - [anon_sym_DOLLARevaltype] = ACTIONS(1383), - [anon_sym_DOLLARvatype] = ACTIONS(1383), - [sym_real_literal] = ACTIONS(1385), - }, [347] = { [sym_line_comment] = STATE(347), [sym_doc_comment] = STATE(347), [sym_block_comment] = STATE(347), - [sym_ident] = ACTIONS(1387), - [sym_integer_literal] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [anon_sym_BQUOTE] = ACTIONS(1389), - [sym_bytes_literal] = ACTIONS(1389), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1387), - [sym_at_ident] = ACTIONS(1389), - [sym_hash_ident] = ACTIONS(1389), - [sym_type_ident] = ACTIONS(1389), - [sym_ct_type_ident] = ACTIONS(1389), - [sym_const_ident] = ACTIONS(1387), - [sym_builtin] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_tlocal] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_var] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_defer] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1387), - [anon_sym_nextcase] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_foreach] = ACTIONS(1387), - [anon_sym_foreach_r] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_int] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym_DOLLARassert] = ACTIONS(1387), - [anon_sym_DOLLARerror] = ACTIONS(1387), - [anon_sym_DOLLARecho] = ACTIONS(1387), - [anon_sym_DOLLARif] = ACTIONS(1387), - [anon_sym_DOLLARswitch] = ACTIONS(1387), - [anon_sym_DOLLARfor] = ACTIONS(1387), - [anon_sym_DOLLARforeach] = ACTIONS(1387), - [anon_sym_DOLLARalignof] = ACTIONS(1387), - [anon_sym_DOLLARextnameof] = ACTIONS(1387), - [anon_sym_DOLLARnameof] = ACTIONS(1387), - [anon_sym_DOLLARoffsetof] = ACTIONS(1387), - [anon_sym_DOLLARqnameof] = ACTIONS(1387), - [anon_sym_DOLLARvaconst] = ACTIONS(1387), - [anon_sym_DOLLARvaarg] = ACTIONS(1387), - [anon_sym_DOLLARvaref] = ACTIONS(1387), - [anon_sym_DOLLARvaexpr] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_null] = ACTIONS(1387), - [anon_sym_DOLLARvacount] = ACTIONS(1387), - [anon_sym_DOLLAReval] = ACTIONS(1387), - [anon_sym_DOLLARis_const] = ACTIONS(1387), - [anon_sym_DOLLARsizeof] = ACTIONS(1387), - [anon_sym_DOLLARstringify] = ACTIONS(1387), - [anon_sym_DOLLARappend] = ACTIONS(1387), - [anon_sym_DOLLARconcat] = ACTIONS(1387), - [anon_sym_DOLLARdefined] = ACTIONS(1387), - [anon_sym_DOLLARembed] = ACTIONS(1387), - [anon_sym_DOLLARand] = ACTIONS(1387), - [anon_sym_DOLLARor] = ACTIONS(1387), - [anon_sym_DOLLARfeature] = ACTIONS(1387), - [anon_sym_DOLLARassignable] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_typeid] = ACTIONS(1387), - [anon_sym_LBRACE_PIPE] = ACTIONS(1389), - [anon_sym_PIPE_RBRACE] = ACTIONS(1389), - [anon_sym_void] = ACTIONS(1387), - [anon_sym_bool] = ACTIONS(1387), - [anon_sym_char] = ACTIONS(1387), - [anon_sym_ichar] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_ushort] = ACTIONS(1387), - [anon_sym_uint] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_ulong] = ACTIONS(1387), - [anon_sym_int128] = ACTIONS(1387), - [anon_sym_uint128] = ACTIONS(1387), - [anon_sym_float] = ACTIONS(1387), - [anon_sym_double] = ACTIONS(1387), - [anon_sym_float16] = ACTIONS(1387), - [anon_sym_bfloat16] = ACTIONS(1387), - [anon_sym_float128] = ACTIONS(1387), - [anon_sym_iptr] = ACTIONS(1387), - [anon_sym_uptr] = ACTIONS(1387), - [anon_sym_isz] = ACTIONS(1387), - [anon_sym_usz] = ACTIONS(1387), - [anon_sym_anyfault] = ACTIONS(1387), - [anon_sym_any] = ACTIONS(1387), - [anon_sym_DOLLARtypeof] = ACTIONS(1387), - [anon_sym_DOLLARtypefrom] = ACTIONS(1387), - [anon_sym_DOLLARevaltype] = ACTIONS(1387), - [anon_sym_DOLLARvatype] = ACTIONS(1387), - [sym_real_literal] = ACTIONS(1389), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_case] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_PIPE_RBRACE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), }, [348] = { [sym_line_comment] = STATE(348), [sym_doc_comment] = STATE(348), [sym_block_comment] = STATE(348), - [sym_ident] = ACTIONS(1391), - [sym_integer_literal] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [anon_sym_BQUOTE] = ACTIONS(1393), - [sym_bytes_literal] = ACTIONS(1393), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1391), - [sym_at_ident] = ACTIONS(1393), - [sym_hash_ident] = ACTIONS(1393), - [sym_type_ident] = ACTIONS(1393), - [sym_ct_type_ident] = ACTIONS(1393), - [sym_const_ident] = ACTIONS(1391), - [sym_builtin] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_tlocal] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_var] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_defer] = ACTIONS(1391), - [anon_sym_assert] = ACTIONS(1391), - [anon_sym_case] = ACTIONS(1391), - [anon_sym_default] = ACTIONS(1391), - [anon_sym_nextcase] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_foreach] = ACTIONS(1391), - [anon_sym_foreach_r] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_int] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1391), - [anon_sym_DOLLARassert] = ACTIONS(1391), - [anon_sym_DOLLARerror] = ACTIONS(1391), - [anon_sym_DOLLARecho] = ACTIONS(1391), - [anon_sym_DOLLARif] = ACTIONS(1391), - [anon_sym_DOLLARswitch] = ACTIONS(1391), - [anon_sym_DOLLARfor] = ACTIONS(1391), - [anon_sym_DOLLARforeach] = ACTIONS(1391), - [anon_sym_DOLLARalignof] = ACTIONS(1391), - [anon_sym_DOLLARextnameof] = ACTIONS(1391), - [anon_sym_DOLLARnameof] = ACTIONS(1391), - [anon_sym_DOLLARoffsetof] = ACTIONS(1391), - [anon_sym_DOLLARqnameof] = ACTIONS(1391), - [anon_sym_DOLLARvaconst] = ACTIONS(1391), - [anon_sym_DOLLARvaarg] = ACTIONS(1391), - [anon_sym_DOLLARvaref] = ACTIONS(1391), - [anon_sym_DOLLARvaexpr] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1391), - [anon_sym_false] = ACTIONS(1391), - [anon_sym_null] = ACTIONS(1391), - [anon_sym_DOLLARvacount] = ACTIONS(1391), - [anon_sym_DOLLAReval] = ACTIONS(1391), - [anon_sym_DOLLARis_const] = ACTIONS(1391), - [anon_sym_DOLLARsizeof] = ACTIONS(1391), - [anon_sym_DOLLARstringify] = ACTIONS(1391), - [anon_sym_DOLLARappend] = ACTIONS(1391), - [anon_sym_DOLLARconcat] = ACTIONS(1391), - [anon_sym_DOLLARdefined] = ACTIONS(1391), - [anon_sym_DOLLARembed] = ACTIONS(1391), - [anon_sym_DOLLARand] = ACTIONS(1391), - [anon_sym_DOLLARor] = ACTIONS(1391), - [anon_sym_DOLLARfeature] = ACTIONS(1391), - [anon_sym_DOLLARassignable] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_typeid] = ACTIONS(1391), - [anon_sym_LBRACE_PIPE] = ACTIONS(1393), - [anon_sym_PIPE_RBRACE] = ACTIONS(1393), - [anon_sym_void] = ACTIONS(1391), - [anon_sym_bool] = ACTIONS(1391), - [anon_sym_char] = ACTIONS(1391), - [anon_sym_ichar] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_ushort] = ACTIONS(1391), - [anon_sym_uint] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_ulong] = ACTIONS(1391), - [anon_sym_int128] = ACTIONS(1391), - [anon_sym_uint128] = ACTIONS(1391), - [anon_sym_float] = ACTIONS(1391), - [anon_sym_double] = ACTIONS(1391), - [anon_sym_float16] = ACTIONS(1391), - [anon_sym_bfloat16] = ACTIONS(1391), - [anon_sym_float128] = ACTIONS(1391), - [anon_sym_iptr] = ACTIONS(1391), - [anon_sym_uptr] = ACTIONS(1391), - [anon_sym_isz] = ACTIONS(1391), - [anon_sym_usz] = ACTIONS(1391), - [anon_sym_anyfault] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_DOLLARtypeof] = ACTIONS(1391), - [anon_sym_DOLLARtypefrom] = ACTIONS(1391), - [anon_sym_DOLLARevaltype] = ACTIONS(1391), - [anon_sym_DOLLARvatype] = ACTIONS(1391), - [sym_real_literal] = ACTIONS(1393), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_PIPE_RBRACE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, [349] = { [sym_line_comment] = STATE(349), [sym_doc_comment] = STATE(349), [sym_block_comment] = STATE(349), - [sym_ident] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [anon_sym_BQUOTE] = ACTIONS(1397), - [sym_bytes_literal] = ACTIONS(1397), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1395), - [sym_at_ident] = ACTIONS(1397), - [sym_hash_ident] = ACTIONS(1397), - [sym_type_ident] = ACTIONS(1397), - [sym_ct_type_ident] = ACTIONS(1397), - [sym_const_ident] = ACTIONS(1395), - [sym_builtin] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_tlocal] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_var] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_defer] = ACTIONS(1395), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_case] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_nextcase] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_foreach] = ACTIONS(1395), - [anon_sym_foreach_r] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_int] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_asm] = ACTIONS(1395), - [anon_sym_DOLLARassert] = ACTIONS(1395), - [anon_sym_DOLLARerror] = ACTIONS(1395), - [anon_sym_DOLLARecho] = ACTIONS(1395), - [anon_sym_DOLLARif] = ACTIONS(1395), - [anon_sym_DOLLARswitch] = ACTIONS(1395), - [anon_sym_DOLLARfor] = ACTIONS(1395), - [anon_sym_DOLLARforeach] = ACTIONS(1395), - [anon_sym_DOLLARalignof] = ACTIONS(1395), - [anon_sym_DOLLARextnameof] = ACTIONS(1395), - [anon_sym_DOLLARnameof] = ACTIONS(1395), - [anon_sym_DOLLARoffsetof] = ACTIONS(1395), - [anon_sym_DOLLARqnameof] = ACTIONS(1395), - [anon_sym_DOLLARvaconst] = ACTIONS(1395), - [anon_sym_DOLLARvaarg] = ACTIONS(1395), - [anon_sym_DOLLARvaref] = ACTIONS(1395), - [anon_sym_DOLLARvaexpr] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_DOLLARvacount] = ACTIONS(1395), - [anon_sym_DOLLAReval] = ACTIONS(1395), - [anon_sym_DOLLARis_const] = ACTIONS(1395), - [anon_sym_DOLLARsizeof] = ACTIONS(1395), - [anon_sym_DOLLARstringify] = ACTIONS(1395), - [anon_sym_DOLLARappend] = ACTIONS(1395), - [anon_sym_DOLLARconcat] = ACTIONS(1395), - [anon_sym_DOLLARdefined] = ACTIONS(1395), - [anon_sym_DOLLARembed] = ACTIONS(1395), - [anon_sym_DOLLARand] = ACTIONS(1395), - [anon_sym_DOLLARor] = ACTIONS(1395), - [anon_sym_DOLLARfeature] = ACTIONS(1395), - [anon_sym_DOLLARassignable] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_typeid] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [anon_sym_PIPE_RBRACE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_ichar] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [anon_sym_ushort] = ACTIONS(1395), - [anon_sym_uint] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_ulong] = ACTIONS(1395), - [anon_sym_int128] = ACTIONS(1395), - [anon_sym_uint128] = ACTIONS(1395), - [anon_sym_float] = ACTIONS(1395), - [anon_sym_double] = ACTIONS(1395), - [anon_sym_float16] = ACTIONS(1395), - [anon_sym_bfloat16] = ACTIONS(1395), - [anon_sym_float128] = ACTIONS(1395), - [anon_sym_iptr] = ACTIONS(1395), - [anon_sym_uptr] = ACTIONS(1395), - [anon_sym_isz] = ACTIONS(1395), - [anon_sym_usz] = ACTIONS(1395), - [anon_sym_anyfault] = ACTIONS(1395), - [anon_sym_any] = ACTIONS(1395), - [anon_sym_DOLLARtypeof] = ACTIONS(1395), - [anon_sym_DOLLARtypefrom] = ACTIONS(1395), - [anon_sym_DOLLARevaltype] = ACTIONS(1395), - [anon_sym_DOLLARvatype] = ACTIONS(1395), - [sym_real_literal] = ACTIONS(1397), + [sym_ident] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [sym_bytes_literal] = ACTIONS(1391), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1389), + [sym_at_ident] = ACTIONS(1391), + [sym_hash_ident] = ACTIONS(1391), + [sym_type_ident] = ACTIONS(1391), + [sym_ct_type_ident] = ACTIONS(1391), + [sym_const_ident] = ACTIONS(1389), + [sym_builtin] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_tlocal] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_var] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_defer] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1389), + [anon_sym_case] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_nextcase] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_foreach] = ACTIONS(1389), + [anon_sym_foreach_r] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_int] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_DOLLARassert] = ACTIONS(1389), + [anon_sym_DOLLARerror] = ACTIONS(1389), + [anon_sym_DOLLARecho] = ACTIONS(1389), + [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARswitch] = ACTIONS(1389), + [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARforeach] = ACTIONS(1389), + [anon_sym_DOLLARalignof] = ACTIONS(1389), + [anon_sym_DOLLARextnameof] = ACTIONS(1389), + [anon_sym_DOLLARnameof] = ACTIONS(1389), + [anon_sym_DOLLARoffsetof] = ACTIONS(1389), + [anon_sym_DOLLARqnameof] = ACTIONS(1389), + [anon_sym_DOLLARvaconst] = ACTIONS(1389), + [anon_sym_DOLLARvaarg] = ACTIONS(1389), + [anon_sym_DOLLARvaref] = ACTIONS(1389), + [anon_sym_DOLLARvaexpr] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_DOLLARvacount] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), + [anon_sym_DOLLARand] = ACTIONS(1389), + [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLARassignable] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_typeid] = ACTIONS(1389), + [anon_sym_LBRACE_PIPE] = ACTIONS(1391), + [anon_sym_PIPE_RBRACE] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_ichar] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_ushort] = ACTIONS(1389), + [anon_sym_uint] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_ulong] = ACTIONS(1389), + [anon_sym_int128] = ACTIONS(1389), + [anon_sym_uint128] = ACTIONS(1389), + [anon_sym_float] = ACTIONS(1389), + [anon_sym_double] = ACTIONS(1389), + [anon_sym_float16] = ACTIONS(1389), + [anon_sym_bfloat16] = ACTIONS(1389), + [anon_sym_float128] = ACTIONS(1389), + [anon_sym_iptr] = ACTIONS(1389), + [anon_sym_uptr] = ACTIONS(1389), + [anon_sym_isz] = ACTIONS(1389), + [anon_sym_usz] = ACTIONS(1389), + [anon_sym_anyfault] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_DOLLARtypeof] = ACTIONS(1389), + [anon_sym_DOLLARtypefrom] = ACTIONS(1389), + [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), + [sym_real_literal] = ACTIONS(1391), }, [350] = { [sym_line_comment] = STATE(350), [sym_doc_comment] = STATE(350), [sym_block_comment] = STATE(350), - [sym_ident] = ACTIONS(1399), - [sym_integer_literal] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_BQUOTE] = ACTIONS(1401), - [sym_bytes_literal] = ACTIONS(1401), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1399), - [sym_at_ident] = ACTIONS(1401), - [sym_hash_ident] = ACTIONS(1401), - [sym_type_ident] = ACTIONS(1401), - [sym_ct_type_ident] = ACTIONS(1401), - [sym_const_ident] = ACTIONS(1399), - [sym_builtin] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_static] = ACTIONS(1399), - [anon_sym_tlocal] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_var] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_defer] = ACTIONS(1399), - [anon_sym_assert] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1399), - [anon_sym_nextcase] = ACTIONS(1399), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_foreach] = ACTIONS(1399), - [anon_sym_foreach_r] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_int] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_asm] = ACTIONS(1399), - [anon_sym_DOLLARassert] = ACTIONS(1399), - [anon_sym_DOLLARerror] = ACTIONS(1399), - [anon_sym_DOLLARecho] = ACTIONS(1399), - [anon_sym_DOLLARif] = ACTIONS(1399), - [anon_sym_DOLLARswitch] = ACTIONS(1399), - [anon_sym_DOLLARfor] = ACTIONS(1399), - [anon_sym_DOLLARforeach] = ACTIONS(1399), - [anon_sym_DOLLARalignof] = ACTIONS(1399), - [anon_sym_DOLLARextnameof] = ACTIONS(1399), - [anon_sym_DOLLARnameof] = ACTIONS(1399), - [anon_sym_DOLLARoffsetof] = ACTIONS(1399), - [anon_sym_DOLLARqnameof] = ACTIONS(1399), - [anon_sym_DOLLARvaconst] = ACTIONS(1399), - [anon_sym_DOLLARvaarg] = ACTIONS(1399), - [anon_sym_DOLLARvaref] = ACTIONS(1399), - [anon_sym_DOLLARvaexpr] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_DOLLARvacount] = ACTIONS(1399), - [anon_sym_DOLLAReval] = ACTIONS(1399), - [anon_sym_DOLLARis_const] = ACTIONS(1399), - [anon_sym_DOLLARsizeof] = ACTIONS(1399), - [anon_sym_DOLLARstringify] = ACTIONS(1399), - [anon_sym_DOLLARappend] = ACTIONS(1399), - [anon_sym_DOLLARconcat] = ACTIONS(1399), - [anon_sym_DOLLARdefined] = ACTIONS(1399), - [anon_sym_DOLLARembed] = ACTIONS(1399), - [anon_sym_DOLLARand] = ACTIONS(1399), - [anon_sym_DOLLARor] = ACTIONS(1399), - [anon_sym_DOLLARfeature] = ACTIONS(1399), - [anon_sym_DOLLARassignable] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_typeid] = ACTIONS(1399), - [anon_sym_LBRACE_PIPE] = ACTIONS(1401), - [anon_sym_PIPE_RBRACE] = ACTIONS(1401), - [anon_sym_void] = ACTIONS(1399), - [anon_sym_bool] = ACTIONS(1399), - [anon_sym_char] = ACTIONS(1399), - [anon_sym_ichar] = ACTIONS(1399), - [anon_sym_short] = ACTIONS(1399), - [anon_sym_ushort] = ACTIONS(1399), - [anon_sym_uint] = ACTIONS(1399), - [anon_sym_long] = ACTIONS(1399), - [anon_sym_ulong] = ACTIONS(1399), - [anon_sym_int128] = ACTIONS(1399), - [anon_sym_uint128] = ACTIONS(1399), - [anon_sym_float] = ACTIONS(1399), - [anon_sym_double] = ACTIONS(1399), - [anon_sym_float16] = ACTIONS(1399), - [anon_sym_bfloat16] = ACTIONS(1399), - [anon_sym_float128] = ACTIONS(1399), - [anon_sym_iptr] = ACTIONS(1399), - [anon_sym_uptr] = ACTIONS(1399), - [anon_sym_isz] = ACTIONS(1399), - [anon_sym_usz] = ACTIONS(1399), - [anon_sym_anyfault] = ACTIONS(1399), - [anon_sym_any] = ACTIONS(1399), - [anon_sym_DOLLARtypeof] = ACTIONS(1399), - [anon_sym_DOLLARtypefrom] = ACTIONS(1399), - [anon_sym_DOLLARevaltype] = ACTIONS(1399), - [anon_sym_DOLLARvatype] = ACTIONS(1399), - [sym_real_literal] = ACTIONS(1401), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_PIPE_RBRACE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), }, [351] = { [sym_line_comment] = STATE(351), [sym_doc_comment] = STATE(351), [sym_block_comment] = STATE(351), - [sym_ident] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [sym_bytes_literal] = ACTIONS(1365), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1363), - [sym_at_ident] = ACTIONS(1365), - [sym_hash_ident] = ACTIONS(1365), - [sym_type_ident] = ACTIONS(1365), - [sym_ct_type_ident] = ACTIONS(1365), - [sym_const_ident] = ACTIONS(1363), - [sym_builtin] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_tlocal] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_var] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_defer] = ACTIONS(1363), - [anon_sym_assert] = ACTIONS(1363), - [anon_sym_case] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_nextcase] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_foreach] = ACTIONS(1363), - [anon_sym_foreach_r] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_int] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym_DOLLARassert] = ACTIONS(1363), - [anon_sym_DOLLARerror] = ACTIONS(1363), - [anon_sym_DOLLARecho] = ACTIONS(1363), - [anon_sym_DOLLARif] = ACTIONS(1363), - [anon_sym_DOLLARswitch] = ACTIONS(1363), - [anon_sym_DOLLARfor] = ACTIONS(1363), - [anon_sym_DOLLARforeach] = ACTIONS(1363), - [anon_sym_DOLLARalignof] = ACTIONS(1363), - [anon_sym_DOLLARextnameof] = ACTIONS(1363), - [anon_sym_DOLLARnameof] = ACTIONS(1363), - [anon_sym_DOLLARoffsetof] = ACTIONS(1363), - [anon_sym_DOLLARqnameof] = ACTIONS(1363), - [anon_sym_DOLLARvaconst] = ACTIONS(1363), - [anon_sym_DOLLARvaarg] = ACTIONS(1363), - [anon_sym_DOLLARvaref] = ACTIONS(1363), - [anon_sym_DOLLARvaexpr] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_null] = ACTIONS(1363), - [anon_sym_DOLLARvacount] = ACTIONS(1363), - [anon_sym_DOLLAReval] = ACTIONS(1363), - [anon_sym_DOLLARis_const] = ACTIONS(1363), - [anon_sym_DOLLARsizeof] = ACTIONS(1363), - [anon_sym_DOLLARstringify] = ACTIONS(1363), - [anon_sym_DOLLARappend] = ACTIONS(1363), - [anon_sym_DOLLARconcat] = ACTIONS(1363), - [anon_sym_DOLLARdefined] = ACTIONS(1363), - [anon_sym_DOLLARembed] = ACTIONS(1363), - [anon_sym_DOLLARand] = ACTIONS(1363), - [anon_sym_DOLLARor] = ACTIONS(1363), - [anon_sym_DOLLARfeature] = ACTIONS(1363), - [anon_sym_DOLLARassignable] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_typeid] = ACTIONS(1363), - [anon_sym_LBRACE_PIPE] = ACTIONS(1365), - [anon_sym_PIPE_RBRACE] = ACTIONS(1365), - [anon_sym_void] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_ichar] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_ushort] = ACTIONS(1363), - [anon_sym_uint] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_ulong] = ACTIONS(1363), - [anon_sym_int128] = ACTIONS(1363), - [anon_sym_uint128] = ACTIONS(1363), - [anon_sym_float] = ACTIONS(1363), - [anon_sym_double] = ACTIONS(1363), - [anon_sym_float16] = ACTIONS(1363), - [anon_sym_bfloat16] = ACTIONS(1363), - [anon_sym_float128] = ACTIONS(1363), - [anon_sym_iptr] = ACTIONS(1363), - [anon_sym_uptr] = ACTIONS(1363), - [anon_sym_isz] = ACTIONS(1363), - [anon_sym_usz] = ACTIONS(1363), - [anon_sym_anyfault] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1363), - [anon_sym_DOLLARtypeof] = ACTIONS(1363), - [anon_sym_DOLLARtypefrom] = ACTIONS(1363), - [anon_sym_DOLLARevaltype] = ACTIONS(1363), - [anon_sym_DOLLARvatype] = ACTIONS(1363), - [sym_real_literal] = ACTIONS(1365), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_PIPE_RBRACE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), }, [352] = { [sym_line_comment] = STATE(352), [sym_doc_comment] = STATE(352), [sym_block_comment] = STATE(352), - [sym_ident] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_BQUOTE] = ACTIONS(1405), - [sym_bytes_literal] = ACTIONS(1405), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1403), - [sym_at_ident] = ACTIONS(1405), - [sym_hash_ident] = ACTIONS(1405), - [sym_type_ident] = ACTIONS(1405), - [sym_ct_type_ident] = ACTIONS(1405), - [sym_const_ident] = ACTIONS(1403), - [sym_builtin] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_tlocal] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_defer] = ACTIONS(1403), - [anon_sym_assert] = ACTIONS(1403), - [anon_sym_case] = ACTIONS(1403), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_nextcase] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_foreach] = ACTIONS(1403), - [anon_sym_foreach_r] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_int] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1403), - [anon_sym_DOLLARassert] = ACTIONS(1403), - [anon_sym_DOLLARerror] = ACTIONS(1403), - [anon_sym_DOLLARecho] = ACTIONS(1403), - [anon_sym_DOLLARif] = ACTIONS(1403), - [anon_sym_DOLLARswitch] = ACTIONS(1403), - [anon_sym_DOLLARfor] = ACTIONS(1403), - [anon_sym_DOLLARforeach] = ACTIONS(1403), - [anon_sym_DOLLARalignof] = ACTIONS(1403), - [anon_sym_DOLLARextnameof] = ACTIONS(1403), - [anon_sym_DOLLARnameof] = ACTIONS(1403), - [anon_sym_DOLLARoffsetof] = ACTIONS(1403), - [anon_sym_DOLLARqnameof] = ACTIONS(1403), - [anon_sym_DOLLARvaconst] = ACTIONS(1403), - [anon_sym_DOLLARvaarg] = ACTIONS(1403), - [anon_sym_DOLLARvaref] = ACTIONS(1403), - [anon_sym_DOLLARvaexpr] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_DOLLARvacount] = ACTIONS(1403), - [anon_sym_DOLLAReval] = ACTIONS(1403), - [anon_sym_DOLLARis_const] = ACTIONS(1403), - [anon_sym_DOLLARsizeof] = ACTIONS(1403), - [anon_sym_DOLLARstringify] = ACTIONS(1403), - [anon_sym_DOLLARappend] = ACTIONS(1403), - [anon_sym_DOLLARconcat] = ACTIONS(1403), - [anon_sym_DOLLARdefined] = ACTIONS(1403), - [anon_sym_DOLLARembed] = ACTIONS(1403), - [anon_sym_DOLLARand] = ACTIONS(1403), - [anon_sym_DOLLARor] = ACTIONS(1403), - [anon_sym_DOLLARfeature] = ACTIONS(1403), - [anon_sym_DOLLARassignable] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_typeid] = ACTIONS(1403), - [anon_sym_LBRACE_PIPE] = ACTIONS(1405), - [anon_sym_PIPE_RBRACE] = ACTIONS(1405), - [anon_sym_void] = ACTIONS(1403), - [anon_sym_bool] = ACTIONS(1403), - [anon_sym_char] = ACTIONS(1403), - [anon_sym_ichar] = ACTIONS(1403), - [anon_sym_short] = ACTIONS(1403), - [anon_sym_ushort] = ACTIONS(1403), - [anon_sym_uint] = ACTIONS(1403), - [anon_sym_long] = ACTIONS(1403), - [anon_sym_ulong] = ACTIONS(1403), - [anon_sym_int128] = ACTIONS(1403), - [anon_sym_uint128] = ACTIONS(1403), - [anon_sym_float] = ACTIONS(1403), - [anon_sym_double] = ACTIONS(1403), - [anon_sym_float16] = ACTIONS(1403), - [anon_sym_bfloat16] = ACTIONS(1403), - [anon_sym_float128] = ACTIONS(1403), - [anon_sym_iptr] = ACTIONS(1403), - [anon_sym_uptr] = ACTIONS(1403), - [anon_sym_isz] = ACTIONS(1403), - [anon_sym_usz] = ACTIONS(1403), - [anon_sym_anyfault] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_DOLLARtypeof] = ACTIONS(1403), - [anon_sym_DOLLARtypefrom] = ACTIONS(1403), - [anon_sym_DOLLARevaltype] = ACTIONS(1403), - [anon_sym_DOLLARvatype] = ACTIONS(1403), - [sym_real_literal] = ACTIONS(1405), + [sym_ident] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_BQUOTE] = ACTIONS(1403), + [sym_bytes_literal] = ACTIONS(1403), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1401), + [sym_at_ident] = ACTIONS(1403), + [sym_hash_ident] = ACTIONS(1403), + [sym_type_ident] = ACTIONS(1403), + [sym_ct_type_ident] = ACTIONS(1403), + [sym_const_ident] = ACTIONS(1401), + [sym_builtin] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_tlocal] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_var] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_defer] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_nextcase] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_foreach] = ACTIONS(1401), + [anon_sym_foreach_r] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_int] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_DOLLARassert] = ACTIONS(1401), + [anon_sym_DOLLARerror] = ACTIONS(1401), + [anon_sym_DOLLARecho] = ACTIONS(1401), + [anon_sym_DOLLARif] = ACTIONS(1401), + [anon_sym_DOLLARswitch] = ACTIONS(1401), + [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARforeach] = ACTIONS(1401), + [anon_sym_DOLLARalignof] = ACTIONS(1401), + [anon_sym_DOLLARextnameof] = ACTIONS(1401), + [anon_sym_DOLLARnameof] = ACTIONS(1401), + [anon_sym_DOLLARoffsetof] = ACTIONS(1401), + [anon_sym_DOLLARqnameof] = ACTIONS(1401), + [anon_sym_DOLLARvaconst] = ACTIONS(1401), + [anon_sym_DOLLARvaarg] = ACTIONS(1401), + [anon_sym_DOLLARvaref] = ACTIONS(1401), + [anon_sym_DOLLARvaexpr] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1401), + [anon_sym_DOLLARvacount] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), + [anon_sym_DOLLARand] = ACTIONS(1401), + [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLARassignable] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), + [anon_sym_typeid] = ACTIONS(1401), + [anon_sym_LBRACE_PIPE] = ACTIONS(1403), + [anon_sym_PIPE_RBRACE] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_ichar] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), }, [353] = { [sym_line_comment] = STATE(353), [sym_doc_comment] = STATE(353), [sym_block_comment] = STATE(353), - [sym_ident] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1409), - [sym_bytes_literal] = ACTIONS(1409), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1407), - [sym_at_ident] = ACTIONS(1409), - [sym_hash_ident] = ACTIONS(1409), - [sym_type_ident] = ACTIONS(1409), - [sym_ct_type_ident] = ACTIONS(1409), - [sym_const_ident] = ACTIONS(1407), - [sym_builtin] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_tlocal] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_var] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_defer] = ACTIONS(1407), - [anon_sym_assert] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1407), - [anon_sym_default] = ACTIONS(1407), - [anon_sym_nextcase] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_foreach] = ACTIONS(1407), - [anon_sym_foreach_r] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_int] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym_DOLLARassert] = ACTIONS(1407), - [anon_sym_DOLLARerror] = ACTIONS(1407), - [anon_sym_DOLLARecho] = ACTIONS(1407), - [anon_sym_DOLLARif] = ACTIONS(1407), - [anon_sym_DOLLARswitch] = ACTIONS(1407), - [anon_sym_DOLLARfor] = ACTIONS(1407), - [anon_sym_DOLLARforeach] = ACTIONS(1407), - [anon_sym_DOLLARalignof] = ACTIONS(1407), - [anon_sym_DOLLARextnameof] = ACTIONS(1407), - [anon_sym_DOLLARnameof] = ACTIONS(1407), - [anon_sym_DOLLARoffsetof] = ACTIONS(1407), - [anon_sym_DOLLARqnameof] = ACTIONS(1407), - [anon_sym_DOLLARvaconst] = ACTIONS(1407), - [anon_sym_DOLLARvaarg] = ACTIONS(1407), - [anon_sym_DOLLARvaref] = ACTIONS(1407), - [anon_sym_DOLLARvaexpr] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [anon_sym_null] = ACTIONS(1407), - [anon_sym_DOLLARvacount] = ACTIONS(1407), - [anon_sym_DOLLAReval] = ACTIONS(1407), - [anon_sym_DOLLARis_const] = ACTIONS(1407), - [anon_sym_DOLLARsizeof] = ACTIONS(1407), - [anon_sym_DOLLARstringify] = ACTIONS(1407), - [anon_sym_DOLLARappend] = ACTIONS(1407), - [anon_sym_DOLLARconcat] = ACTIONS(1407), - [anon_sym_DOLLARdefined] = ACTIONS(1407), - [anon_sym_DOLLARembed] = ACTIONS(1407), - [anon_sym_DOLLARand] = ACTIONS(1407), - [anon_sym_DOLLARor] = ACTIONS(1407), - [anon_sym_DOLLARfeature] = ACTIONS(1407), - [anon_sym_DOLLARassignable] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_typeid] = ACTIONS(1407), - [anon_sym_LBRACE_PIPE] = ACTIONS(1409), - [anon_sym_PIPE_RBRACE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1407), - [anon_sym_bool] = ACTIONS(1407), - [anon_sym_char] = ACTIONS(1407), - [anon_sym_ichar] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_ushort] = ACTIONS(1407), - [anon_sym_uint] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_ulong] = ACTIONS(1407), - [anon_sym_int128] = ACTIONS(1407), - [anon_sym_uint128] = ACTIONS(1407), - [anon_sym_float] = ACTIONS(1407), - [anon_sym_double] = ACTIONS(1407), - [anon_sym_float16] = ACTIONS(1407), - [anon_sym_bfloat16] = ACTIONS(1407), - [anon_sym_float128] = ACTIONS(1407), - [anon_sym_iptr] = ACTIONS(1407), - [anon_sym_uptr] = ACTIONS(1407), - [anon_sym_isz] = ACTIONS(1407), - [anon_sym_usz] = ACTIONS(1407), - [anon_sym_anyfault] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_DOLLARtypeof] = ACTIONS(1407), - [anon_sym_DOLLARtypefrom] = ACTIONS(1407), - [anon_sym_DOLLARevaltype] = ACTIONS(1407), - [anon_sym_DOLLARvatype] = ACTIONS(1407), - [sym_real_literal] = ACTIONS(1409), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_case] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_PIPE_RBRACE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), }, [354] = { [sym_line_comment] = STATE(354), [sym_doc_comment] = STATE(354), [sym_block_comment] = STATE(354), - [sym_ident] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [anon_sym_BQUOTE] = ACTIONS(1413), - [sym_bytes_literal] = ACTIONS(1413), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1411), - [sym_at_ident] = ACTIONS(1413), - [sym_hash_ident] = ACTIONS(1413), - [sym_type_ident] = ACTIONS(1413), - [sym_ct_type_ident] = ACTIONS(1413), - [sym_const_ident] = ACTIONS(1411), - [sym_builtin] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_tlocal] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_var] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_defer] = ACTIONS(1411), - [anon_sym_assert] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1411), - [anon_sym_default] = ACTIONS(1411), - [anon_sym_nextcase] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_foreach] = ACTIONS(1411), - [anon_sym_foreach_r] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_int] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym_DOLLARassert] = ACTIONS(1411), - [anon_sym_DOLLARerror] = ACTIONS(1411), - [anon_sym_DOLLARecho] = ACTIONS(1411), - [anon_sym_DOLLARif] = ACTIONS(1411), - [anon_sym_DOLLARswitch] = ACTIONS(1411), - [anon_sym_DOLLARfor] = ACTIONS(1411), - [anon_sym_DOLLARforeach] = ACTIONS(1411), - [anon_sym_DOLLARalignof] = ACTIONS(1411), - [anon_sym_DOLLARextnameof] = ACTIONS(1411), - [anon_sym_DOLLARnameof] = ACTIONS(1411), - [anon_sym_DOLLARoffsetof] = ACTIONS(1411), - [anon_sym_DOLLARqnameof] = ACTIONS(1411), - [anon_sym_DOLLARvaconst] = ACTIONS(1411), - [anon_sym_DOLLARvaarg] = ACTIONS(1411), - [anon_sym_DOLLARvaref] = ACTIONS(1411), - [anon_sym_DOLLARvaexpr] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_DOLLARvacount] = ACTIONS(1411), - [anon_sym_DOLLAReval] = ACTIONS(1411), - [anon_sym_DOLLARis_const] = ACTIONS(1411), - [anon_sym_DOLLARsizeof] = ACTIONS(1411), - [anon_sym_DOLLARstringify] = ACTIONS(1411), - [anon_sym_DOLLARappend] = ACTIONS(1411), - [anon_sym_DOLLARconcat] = ACTIONS(1411), - [anon_sym_DOLLARdefined] = ACTIONS(1411), - [anon_sym_DOLLARembed] = ACTIONS(1411), - [anon_sym_DOLLARand] = ACTIONS(1411), - [anon_sym_DOLLARor] = ACTIONS(1411), - [anon_sym_DOLLARfeature] = ACTIONS(1411), - [anon_sym_DOLLARassignable] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_typeid] = ACTIONS(1411), - [anon_sym_LBRACE_PIPE] = ACTIONS(1413), - [anon_sym_PIPE_RBRACE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_bool] = ACTIONS(1411), - [anon_sym_char] = ACTIONS(1411), - [anon_sym_ichar] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_ushort] = ACTIONS(1411), - [anon_sym_uint] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_ulong] = ACTIONS(1411), - [anon_sym_int128] = ACTIONS(1411), - [anon_sym_uint128] = ACTIONS(1411), - [anon_sym_float] = ACTIONS(1411), - [anon_sym_double] = ACTIONS(1411), - [anon_sym_float16] = ACTIONS(1411), - [anon_sym_bfloat16] = ACTIONS(1411), - [anon_sym_float128] = ACTIONS(1411), - [anon_sym_iptr] = ACTIONS(1411), - [anon_sym_uptr] = ACTIONS(1411), - [anon_sym_isz] = ACTIONS(1411), - [anon_sym_usz] = ACTIONS(1411), - [anon_sym_anyfault] = ACTIONS(1411), - [anon_sym_any] = ACTIONS(1411), - [anon_sym_DOLLARtypeof] = ACTIONS(1411), - [anon_sym_DOLLARtypefrom] = ACTIONS(1411), - [anon_sym_DOLLARevaltype] = ACTIONS(1411), - [anon_sym_DOLLARvatype] = ACTIONS(1411), - [sym_real_literal] = ACTIONS(1413), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_case] = ACTIONS(1409), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_PIPE_RBRACE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), }, [355] = { [sym_line_comment] = STATE(355), [sym_doc_comment] = STATE(355), [sym_block_comment] = STATE(355), - [sym_ident] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [sym_bytes_literal] = ACTIONS(1417), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1415), - [sym_at_ident] = ACTIONS(1417), - [sym_hash_ident] = ACTIONS(1417), - [sym_type_ident] = ACTIONS(1417), - [sym_ct_type_ident] = ACTIONS(1417), - [sym_const_ident] = ACTIONS(1415), - [sym_builtin] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_tlocal] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_var] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_defer] = ACTIONS(1415), - [anon_sym_assert] = ACTIONS(1415), - [anon_sym_case] = ACTIONS(1415), - [anon_sym_default] = ACTIONS(1415), - [anon_sym_nextcase] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_foreach] = ACTIONS(1415), - [anon_sym_foreach_r] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_int] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym_DOLLARassert] = ACTIONS(1415), - [anon_sym_DOLLARerror] = ACTIONS(1415), - [anon_sym_DOLLARecho] = ACTIONS(1415), - [anon_sym_DOLLARif] = ACTIONS(1415), - [anon_sym_DOLLARswitch] = ACTIONS(1415), - [anon_sym_DOLLARfor] = ACTIONS(1415), - [anon_sym_DOLLARforeach] = ACTIONS(1415), - [anon_sym_DOLLARalignof] = ACTIONS(1415), - [anon_sym_DOLLARextnameof] = ACTIONS(1415), - [anon_sym_DOLLARnameof] = ACTIONS(1415), - [anon_sym_DOLLARoffsetof] = ACTIONS(1415), - [anon_sym_DOLLARqnameof] = ACTIONS(1415), - [anon_sym_DOLLARvaconst] = ACTIONS(1415), - [anon_sym_DOLLARvaarg] = ACTIONS(1415), - [anon_sym_DOLLARvaref] = ACTIONS(1415), - [anon_sym_DOLLARvaexpr] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_null] = ACTIONS(1415), - [anon_sym_DOLLARvacount] = ACTIONS(1415), - [anon_sym_DOLLAReval] = ACTIONS(1415), - [anon_sym_DOLLARis_const] = ACTIONS(1415), - [anon_sym_DOLLARsizeof] = ACTIONS(1415), - [anon_sym_DOLLARstringify] = ACTIONS(1415), - [anon_sym_DOLLARappend] = ACTIONS(1415), - [anon_sym_DOLLARconcat] = ACTIONS(1415), - [anon_sym_DOLLARdefined] = ACTIONS(1415), - [anon_sym_DOLLARembed] = ACTIONS(1415), - [anon_sym_DOLLARand] = ACTIONS(1415), - [anon_sym_DOLLARor] = ACTIONS(1415), - [anon_sym_DOLLARfeature] = ACTIONS(1415), - [anon_sym_DOLLARassignable] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_typeid] = ACTIONS(1415), - [anon_sym_LBRACE_PIPE] = ACTIONS(1417), - [anon_sym_PIPE_RBRACE] = ACTIONS(1417), - [anon_sym_void] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_ichar] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_ushort] = ACTIONS(1415), - [anon_sym_uint] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_ulong] = ACTIONS(1415), - [anon_sym_int128] = ACTIONS(1415), - [anon_sym_uint128] = ACTIONS(1415), - [anon_sym_float] = ACTIONS(1415), - [anon_sym_double] = ACTIONS(1415), - [anon_sym_float16] = ACTIONS(1415), - [anon_sym_bfloat16] = ACTIONS(1415), - [anon_sym_float128] = ACTIONS(1415), - [anon_sym_iptr] = ACTIONS(1415), - [anon_sym_uptr] = ACTIONS(1415), - [anon_sym_isz] = ACTIONS(1415), - [anon_sym_usz] = ACTIONS(1415), - [anon_sym_anyfault] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_DOLLARtypeof] = ACTIONS(1415), - [anon_sym_DOLLARtypefrom] = ACTIONS(1415), - [anon_sym_DOLLARevaltype] = ACTIONS(1415), - [anon_sym_DOLLARvatype] = ACTIONS(1415), - [sym_real_literal] = ACTIONS(1417), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_case] = ACTIONS(1413), + [anon_sym_default] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_PIPE_RBRACE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), }, [356] = { [sym_line_comment] = STATE(356), [sym_doc_comment] = STATE(356), [sym_block_comment] = STATE(356), - [sym_ident] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [sym_bytes_literal] = ACTIONS(1421), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1419), - [sym_at_ident] = ACTIONS(1421), - [sym_hash_ident] = ACTIONS(1421), - [sym_type_ident] = ACTIONS(1421), - [sym_ct_type_ident] = ACTIONS(1421), - [sym_const_ident] = ACTIONS(1419), - [sym_builtin] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_tlocal] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_var] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_defer] = ACTIONS(1419), - [anon_sym_assert] = ACTIONS(1419), - [anon_sym_case] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_nextcase] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_foreach] = ACTIONS(1419), - [anon_sym_foreach_r] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_int] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym_DOLLARassert] = ACTIONS(1419), - [anon_sym_DOLLARerror] = ACTIONS(1419), - [anon_sym_DOLLARecho] = ACTIONS(1419), - [anon_sym_DOLLARif] = ACTIONS(1419), - [anon_sym_DOLLARswitch] = ACTIONS(1419), - [anon_sym_DOLLARfor] = ACTIONS(1419), - [anon_sym_DOLLARforeach] = ACTIONS(1419), - [anon_sym_DOLLARalignof] = ACTIONS(1419), - [anon_sym_DOLLARextnameof] = ACTIONS(1419), - [anon_sym_DOLLARnameof] = ACTIONS(1419), - [anon_sym_DOLLARoffsetof] = ACTIONS(1419), - [anon_sym_DOLLARqnameof] = ACTIONS(1419), - [anon_sym_DOLLARvaconst] = ACTIONS(1419), - [anon_sym_DOLLARvaarg] = ACTIONS(1419), - [anon_sym_DOLLARvaref] = ACTIONS(1419), - [anon_sym_DOLLARvaexpr] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1419), - [anon_sym_DOLLARvacount] = ACTIONS(1419), - [anon_sym_DOLLAReval] = ACTIONS(1419), - [anon_sym_DOLLARis_const] = ACTIONS(1419), - [anon_sym_DOLLARsizeof] = ACTIONS(1419), - [anon_sym_DOLLARstringify] = ACTIONS(1419), - [anon_sym_DOLLARappend] = ACTIONS(1419), - [anon_sym_DOLLARconcat] = ACTIONS(1419), - [anon_sym_DOLLARdefined] = ACTIONS(1419), - [anon_sym_DOLLARembed] = ACTIONS(1419), - [anon_sym_DOLLARand] = ACTIONS(1419), - [anon_sym_DOLLARor] = ACTIONS(1419), - [anon_sym_DOLLARfeature] = ACTIONS(1419), - [anon_sym_DOLLARassignable] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_typeid] = ACTIONS(1419), - [anon_sym_LBRACE_PIPE] = ACTIONS(1421), - [anon_sym_PIPE_RBRACE] = ACTIONS(1421), - [anon_sym_void] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_ichar] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_ushort] = ACTIONS(1419), - [anon_sym_uint] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_ulong] = ACTIONS(1419), - [anon_sym_int128] = ACTIONS(1419), - [anon_sym_uint128] = ACTIONS(1419), - [anon_sym_float] = ACTIONS(1419), - [anon_sym_double] = ACTIONS(1419), - [anon_sym_float16] = ACTIONS(1419), - [anon_sym_bfloat16] = ACTIONS(1419), - [anon_sym_float128] = ACTIONS(1419), - [anon_sym_iptr] = ACTIONS(1419), - [anon_sym_uptr] = ACTIONS(1419), - [anon_sym_isz] = ACTIONS(1419), - [anon_sym_usz] = ACTIONS(1419), - [anon_sym_anyfault] = ACTIONS(1419), - [anon_sym_any] = ACTIONS(1419), - [anon_sym_DOLLARtypeof] = ACTIONS(1419), - [anon_sym_DOLLARtypefrom] = ACTIONS(1419), - [anon_sym_DOLLARevaltype] = ACTIONS(1419), - [anon_sym_DOLLARvatype] = ACTIONS(1419), - [sym_real_literal] = ACTIONS(1421), + [sym_ident] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_bytes_literal] = ACTIONS(1419), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1417), + [sym_at_ident] = ACTIONS(1419), + [sym_hash_ident] = ACTIONS(1419), + [sym_type_ident] = ACTIONS(1419), + [sym_ct_type_ident] = ACTIONS(1419), + [sym_const_ident] = ACTIONS(1417), + [sym_builtin] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_tlocal] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_var] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_defer] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_nextcase] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_foreach] = ACTIONS(1417), + [anon_sym_foreach_r] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_DOLLARassert] = ACTIONS(1417), + [anon_sym_DOLLARerror] = ACTIONS(1417), + [anon_sym_DOLLARecho] = ACTIONS(1417), + [anon_sym_DOLLARif] = ACTIONS(1417), + [anon_sym_DOLLARswitch] = ACTIONS(1417), + [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARforeach] = ACTIONS(1417), + [anon_sym_DOLLARalignof] = ACTIONS(1417), + [anon_sym_DOLLARextnameof] = ACTIONS(1417), + [anon_sym_DOLLARnameof] = ACTIONS(1417), + [anon_sym_DOLLARoffsetof] = ACTIONS(1417), + [anon_sym_DOLLARqnameof] = ACTIONS(1417), + [anon_sym_DOLLARvaconst] = ACTIONS(1417), + [anon_sym_DOLLARvaarg] = ACTIONS(1417), + [anon_sym_DOLLARvaref] = ACTIONS(1417), + [anon_sym_DOLLARvaexpr] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_DOLLARvacount] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), + [anon_sym_DOLLARand] = ACTIONS(1417), + [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLARassignable] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_typeid] = ACTIONS(1417), + [anon_sym_LBRACE_PIPE] = ACTIONS(1419), + [anon_sym_PIPE_RBRACE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_ichar] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_ushort] = ACTIONS(1417), + [anon_sym_uint] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_ulong] = ACTIONS(1417), + [anon_sym_int128] = ACTIONS(1417), + [anon_sym_uint128] = ACTIONS(1417), + [anon_sym_float] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_float16] = ACTIONS(1417), + [anon_sym_bfloat16] = ACTIONS(1417), + [anon_sym_float128] = ACTIONS(1417), + [anon_sym_iptr] = ACTIONS(1417), + [anon_sym_uptr] = ACTIONS(1417), + [anon_sym_isz] = ACTIONS(1417), + [anon_sym_usz] = ACTIONS(1417), + [anon_sym_anyfault] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_DOLLARtypeof] = ACTIONS(1417), + [anon_sym_DOLLARtypefrom] = ACTIONS(1417), + [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1419), }, [357] = { [sym_line_comment] = STATE(357), [sym_doc_comment] = STATE(357), [sym_block_comment] = STATE(357), - [sym_ident] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_BQUOTE] = ACTIONS(1425), - [sym_bytes_literal] = ACTIONS(1425), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1423), - [sym_at_ident] = ACTIONS(1425), - [sym_hash_ident] = ACTIONS(1425), - [sym_type_ident] = ACTIONS(1425), - [sym_ct_type_ident] = ACTIONS(1425), - [sym_const_ident] = ACTIONS(1423), - [sym_builtin] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_tlocal] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_var] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_defer] = ACTIONS(1423), - [anon_sym_assert] = ACTIONS(1423), - [anon_sym_case] = ACTIONS(1423), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_nextcase] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_foreach] = ACTIONS(1423), - [anon_sym_foreach_r] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_int] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1423), - [anon_sym_DOLLARassert] = ACTIONS(1423), - [anon_sym_DOLLARerror] = ACTIONS(1423), - [anon_sym_DOLLARecho] = ACTIONS(1423), - [anon_sym_DOLLARif] = ACTIONS(1423), - [anon_sym_DOLLARswitch] = ACTIONS(1423), - [anon_sym_DOLLARfor] = ACTIONS(1423), - [anon_sym_DOLLARforeach] = ACTIONS(1423), - [anon_sym_DOLLARalignof] = ACTIONS(1423), - [anon_sym_DOLLARextnameof] = ACTIONS(1423), - [anon_sym_DOLLARnameof] = ACTIONS(1423), - [anon_sym_DOLLARoffsetof] = ACTIONS(1423), - [anon_sym_DOLLARqnameof] = ACTIONS(1423), - [anon_sym_DOLLARvaconst] = ACTIONS(1423), - [anon_sym_DOLLARvaarg] = ACTIONS(1423), - [anon_sym_DOLLARvaref] = ACTIONS(1423), - [anon_sym_DOLLARvaexpr] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_null] = ACTIONS(1423), - [anon_sym_DOLLARvacount] = ACTIONS(1423), - [anon_sym_DOLLAReval] = ACTIONS(1423), - [anon_sym_DOLLARis_const] = ACTIONS(1423), - [anon_sym_DOLLARsizeof] = ACTIONS(1423), - [anon_sym_DOLLARstringify] = ACTIONS(1423), - [anon_sym_DOLLARappend] = ACTIONS(1423), - [anon_sym_DOLLARconcat] = ACTIONS(1423), - [anon_sym_DOLLARdefined] = ACTIONS(1423), - [anon_sym_DOLLARembed] = ACTIONS(1423), - [anon_sym_DOLLARand] = ACTIONS(1423), - [anon_sym_DOLLARor] = ACTIONS(1423), - [anon_sym_DOLLARfeature] = ACTIONS(1423), - [anon_sym_DOLLARassignable] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_typeid] = ACTIONS(1423), - [anon_sym_LBRACE_PIPE] = ACTIONS(1425), - [anon_sym_PIPE_RBRACE] = ACTIONS(1425), - [anon_sym_void] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_ichar] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [anon_sym_ushort] = ACTIONS(1423), - [anon_sym_uint] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_ulong] = ACTIONS(1423), - [anon_sym_int128] = ACTIONS(1423), - [anon_sym_uint128] = ACTIONS(1423), - [anon_sym_float] = ACTIONS(1423), - [anon_sym_double] = ACTIONS(1423), - [anon_sym_float16] = ACTIONS(1423), - [anon_sym_bfloat16] = ACTIONS(1423), - [anon_sym_float128] = ACTIONS(1423), - [anon_sym_iptr] = ACTIONS(1423), - [anon_sym_uptr] = ACTIONS(1423), - [anon_sym_isz] = ACTIONS(1423), - [anon_sym_usz] = ACTIONS(1423), - [anon_sym_anyfault] = ACTIONS(1423), - [anon_sym_any] = ACTIONS(1423), - [anon_sym_DOLLARtypeof] = ACTIONS(1423), - [anon_sym_DOLLARtypefrom] = ACTIONS(1423), - [anon_sym_DOLLARevaltype] = ACTIONS(1423), - [anon_sym_DOLLARvatype] = ACTIONS(1423), - [sym_real_literal] = ACTIONS(1425), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_case] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_PIPE_RBRACE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), }, [358] = { [sym_line_comment] = STATE(358), [sym_doc_comment] = STATE(358), [sym_block_comment] = STATE(358), - [sym_ident] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_bytes_literal] = ACTIONS(1429), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1427), - [sym_at_ident] = ACTIONS(1429), - [sym_hash_ident] = ACTIONS(1429), - [sym_type_ident] = ACTIONS(1429), - [sym_ct_type_ident] = ACTIONS(1429), - [sym_const_ident] = ACTIONS(1427), - [sym_builtin] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_tlocal] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_var] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_defer] = ACTIONS(1427), - [anon_sym_assert] = ACTIONS(1427), - [anon_sym_case] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_nextcase] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_foreach] = ACTIONS(1427), - [anon_sym_foreach_r] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_int] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1427), - [anon_sym_DOLLARassert] = ACTIONS(1427), - [anon_sym_DOLLARerror] = ACTIONS(1427), - [anon_sym_DOLLARecho] = ACTIONS(1427), - [anon_sym_DOLLARif] = ACTIONS(1427), - [anon_sym_DOLLARswitch] = ACTIONS(1427), - [anon_sym_DOLLARfor] = ACTIONS(1427), - [anon_sym_DOLLARforeach] = ACTIONS(1427), - [anon_sym_DOLLARalignof] = ACTIONS(1427), - [anon_sym_DOLLARextnameof] = ACTIONS(1427), - [anon_sym_DOLLARnameof] = ACTIONS(1427), - [anon_sym_DOLLARoffsetof] = ACTIONS(1427), - [anon_sym_DOLLARqnameof] = ACTIONS(1427), - [anon_sym_DOLLARvaconst] = ACTIONS(1427), - [anon_sym_DOLLARvaarg] = ACTIONS(1427), - [anon_sym_DOLLARvaref] = ACTIONS(1427), - [anon_sym_DOLLARvaexpr] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [anon_sym_DOLLARvacount] = ACTIONS(1427), - [anon_sym_DOLLAReval] = ACTIONS(1427), - [anon_sym_DOLLARis_const] = ACTIONS(1427), - [anon_sym_DOLLARsizeof] = ACTIONS(1427), - [anon_sym_DOLLARstringify] = ACTIONS(1427), - [anon_sym_DOLLARappend] = ACTIONS(1427), - [anon_sym_DOLLARconcat] = ACTIONS(1427), - [anon_sym_DOLLARdefined] = ACTIONS(1427), - [anon_sym_DOLLARembed] = ACTIONS(1427), - [anon_sym_DOLLARand] = ACTIONS(1427), - [anon_sym_DOLLARor] = ACTIONS(1427), - [anon_sym_DOLLARfeature] = ACTIONS(1427), - [anon_sym_DOLLARassignable] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_typeid] = ACTIONS(1427), - [anon_sym_LBRACE_PIPE] = ACTIONS(1429), - [anon_sym_PIPE_RBRACE] = ACTIONS(1429), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_bool] = ACTIONS(1427), - [anon_sym_char] = ACTIONS(1427), - [anon_sym_ichar] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [anon_sym_ushort] = ACTIONS(1427), - [anon_sym_uint] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_ulong] = ACTIONS(1427), - [anon_sym_int128] = ACTIONS(1427), - [anon_sym_uint128] = ACTIONS(1427), - [anon_sym_float] = ACTIONS(1427), - [anon_sym_double] = ACTIONS(1427), - [anon_sym_float16] = ACTIONS(1427), - [anon_sym_bfloat16] = ACTIONS(1427), - [anon_sym_float128] = ACTIONS(1427), - [anon_sym_iptr] = ACTIONS(1427), - [anon_sym_uptr] = ACTIONS(1427), - [anon_sym_isz] = ACTIONS(1427), - [anon_sym_usz] = ACTIONS(1427), - [anon_sym_anyfault] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_DOLLARtypeof] = ACTIONS(1427), - [anon_sym_DOLLARtypefrom] = ACTIONS(1427), - [anon_sym_DOLLARevaltype] = ACTIONS(1427), - [anon_sym_DOLLARvatype] = ACTIONS(1427), - [sym_real_literal] = ACTIONS(1429), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_case] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_PIPE_RBRACE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), }, [359] = { [sym_line_comment] = STATE(359), [sym_doc_comment] = STATE(359), [sym_block_comment] = STATE(359), - [sym_ident] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1433), - [sym_bytes_literal] = ACTIONS(1433), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1431), - [sym_at_ident] = ACTIONS(1433), - [sym_hash_ident] = ACTIONS(1433), - [sym_type_ident] = ACTIONS(1433), - [sym_ct_type_ident] = ACTIONS(1433), - [sym_const_ident] = ACTIONS(1431), - [sym_builtin] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_tlocal] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_var] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_defer] = ACTIONS(1431), - [anon_sym_assert] = ACTIONS(1431), - [anon_sym_case] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1431), - [anon_sym_nextcase] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_foreach] = ACTIONS(1431), - [anon_sym_foreach_r] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_int] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1431), - [anon_sym_DOLLARassert] = ACTIONS(1431), - [anon_sym_DOLLARerror] = ACTIONS(1431), - [anon_sym_DOLLARecho] = ACTIONS(1431), - [anon_sym_DOLLARif] = ACTIONS(1431), - [anon_sym_DOLLARswitch] = ACTIONS(1431), - [anon_sym_DOLLARfor] = ACTIONS(1431), - [anon_sym_DOLLARforeach] = ACTIONS(1431), - [anon_sym_DOLLARalignof] = ACTIONS(1431), - [anon_sym_DOLLARextnameof] = ACTIONS(1431), - [anon_sym_DOLLARnameof] = ACTIONS(1431), - [anon_sym_DOLLARoffsetof] = ACTIONS(1431), - [anon_sym_DOLLARqnameof] = ACTIONS(1431), - [anon_sym_DOLLARvaconst] = ACTIONS(1431), - [anon_sym_DOLLARvaarg] = ACTIONS(1431), - [anon_sym_DOLLARvaref] = ACTIONS(1431), - [anon_sym_DOLLARvaexpr] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_null] = ACTIONS(1431), - [anon_sym_DOLLARvacount] = ACTIONS(1431), - [anon_sym_DOLLAReval] = ACTIONS(1431), - [anon_sym_DOLLARis_const] = ACTIONS(1431), - [anon_sym_DOLLARsizeof] = ACTIONS(1431), - [anon_sym_DOLLARstringify] = ACTIONS(1431), - [anon_sym_DOLLARappend] = ACTIONS(1431), - [anon_sym_DOLLARconcat] = ACTIONS(1431), - [anon_sym_DOLLARdefined] = ACTIONS(1431), - [anon_sym_DOLLARembed] = ACTIONS(1431), - [anon_sym_DOLLARand] = ACTIONS(1431), - [anon_sym_DOLLARor] = ACTIONS(1431), - [anon_sym_DOLLARfeature] = ACTIONS(1431), - [anon_sym_DOLLARassignable] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_typeid] = ACTIONS(1431), - [anon_sym_LBRACE_PIPE] = ACTIONS(1433), - [anon_sym_PIPE_RBRACE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_ichar] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_ushort] = ACTIONS(1431), - [anon_sym_uint] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_ulong] = ACTIONS(1431), - [anon_sym_int128] = ACTIONS(1431), - [anon_sym_uint128] = ACTIONS(1431), - [anon_sym_float] = ACTIONS(1431), - [anon_sym_double] = ACTIONS(1431), - [anon_sym_float16] = ACTIONS(1431), - [anon_sym_bfloat16] = ACTIONS(1431), - [anon_sym_float128] = ACTIONS(1431), - [anon_sym_iptr] = ACTIONS(1431), - [anon_sym_uptr] = ACTIONS(1431), - [anon_sym_isz] = ACTIONS(1431), - [anon_sym_usz] = ACTIONS(1431), - [anon_sym_anyfault] = ACTIONS(1431), - [anon_sym_any] = ACTIONS(1431), - [anon_sym_DOLLARtypeof] = ACTIONS(1431), - [anon_sym_DOLLARtypefrom] = ACTIONS(1431), - [anon_sym_DOLLARevaltype] = ACTIONS(1431), - [anon_sym_DOLLARvatype] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_case] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_PIPE_RBRACE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), }, [360] = { [sym_line_comment] = STATE(360), [sym_doc_comment] = STATE(360), [sym_block_comment] = STATE(360), - [sym_ident] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_BQUOTE] = ACTIONS(1437), - [sym_bytes_literal] = ACTIONS(1437), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1435), - [sym_at_ident] = ACTIONS(1437), - [sym_hash_ident] = ACTIONS(1437), - [sym_type_ident] = ACTIONS(1437), - [sym_ct_type_ident] = ACTIONS(1437), - [sym_const_ident] = ACTIONS(1435), - [sym_builtin] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_tlocal] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_defer] = ACTIONS(1435), - [anon_sym_assert] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_nextcase] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_foreach] = ACTIONS(1435), - [anon_sym_foreach_r] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_int] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1435), - [anon_sym_DOLLARassert] = ACTIONS(1435), - [anon_sym_DOLLARerror] = ACTIONS(1435), - [anon_sym_DOLLARecho] = ACTIONS(1435), - [anon_sym_DOLLARif] = ACTIONS(1435), - [anon_sym_DOLLARswitch] = ACTIONS(1435), - [anon_sym_DOLLARfor] = ACTIONS(1435), - [anon_sym_DOLLARforeach] = ACTIONS(1435), - [anon_sym_DOLLARalignof] = ACTIONS(1435), - [anon_sym_DOLLARextnameof] = ACTIONS(1435), - [anon_sym_DOLLARnameof] = ACTIONS(1435), - [anon_sym_DOLLARoffsetof] = ACTIONS(1435), - [anon_sym_DOLLARqnameof] = ACTIONS(1435), - [anon_sym_DOLLARvaconst] = ACTIONS(1435), - [anon_sym_DOLLARvaarg] = ACTIONS(1435), - [anon_sym_DOLLARvaref] = ACTIONS(1435), - [anon_sym_DOLLARvaexpr] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), - [anon_sym_null] = ACTIONS(1435), - [anon_sym_DOLLARvacount] = ACTIONS(1435), - [anon_sym_DOLLAReval] = ACTIONS(1435), - [anon_sym_DOLLARis_const] = ACTIONS(1435), - [anon_sym_DOLLARsizeof] = ACTIONS(1435), - [anon_sym_DOLLARstringify] = ACTIONS(1435), - [anon_sym_DOLLARappend] = ACTIONS(1435), - [anon_sym_DOLLARconcat] = ACTIONS(1435), - [anon_sym_DOLLARdefined] = ACTIONS(1435), - [anon_sym_DOLLARembed] = ACTIONS(1435), - [anon_sym_DOLLARand] = ACTIONS(1435), - [anon_sym_DOLLARor] = ACTIONS(1435), - [anon_sym_DOLLARfeature] = ACTIONS(1435), - [anon_sym_DOLLARassignable] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_typeid] = ACTIONS(1435), - [anon_sym_LBRACE_PIPE] = ACTIONS(1437), - [anon_sym_PIPE_RBRACE] = ACTIONS(1437), - [anon_sym_void] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_ichar] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_ushort] = ACTIONS(1435), - [anon_sym_uint] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_ulong] = ACTIONS(1435), - [anon_sym_int128] = ACTIONS(1435), - [anon_sym_uint128] = ACTIONS(1435), - [anon_sym_float] = ACTIONS(1435), - [anon_sym_double] = ACTIONS(1435), - [anon_sym_float16] = ACTIONS(1435), - [anon_sym_bfloat16] = ACTIONS(1435), - [anon_sym_float128] = ACTIONS(1435), - [anon_sym_iptr] = ACTIONS(1435), - [anon_sym_uptr] = ACTIONS(1435), - [anon_sym_isz] = ACTIONS(1435), - [anon_sym_usz] = ACTIONS(1435), - [anon_sym_anyfault] = ACTIONS(1435), - [anon_sym_any] = ACTIONS(1435), - [anon_sym_DOLLARtypeof] = ACTIONS(1435), - [anon_sym_DOLLARtypefrom] = ACTIONS(1435), - [anon_sym_DOLLARevaltype] = ACTIONS(1435), - [anon_sym_DOLLARvatype] = ACTIONS(1435), - [sym_real_literal] = ACTIONS(1437), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_case] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_PIPE_RBRACE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), }, [361] = { [sym_line_comment] = STATE(361), [sym_doc_comment] = STATE(361), [sym_block_comment] = STATE(361), - [sym_ident] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [anon_sym_BQUOTE] = ACTIONS(1441), - [sym_bytes_literal] = ACTIONS(1441), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1439), - [sym_at_ident] = ACTIONS(1441), - [sym_hash_ident] = ACTIONS(1441), - [sym_type_ident] = ACTIONS(1441), - [sym_ct_type_ident] = ACTIONS(1441), - [sym_const_ident] = ACTIONS(1439), - [sym_builtin] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_tlocal] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_var] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_defer] = ACTIONS(1439), - [anon_sym_assert] = ACTIONS(1439), - [anon_sym_case] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_nextcase] = ACTIONS(1439), - [anon_sym_switch] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_foreach] = ACTIONS(1439), - [anon_sym_foreach_r] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_do] = ACTIONS(1439), - [anon_sym_int] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1439), - [anon_sym_DOLLARassert] = ACTIONS(1439), - [anon_sym_DOLLARerror] = ACTIONS(1439), - [anon_sym_DOLLARecho] = ACTIONS(1439), - [anon_sym_DOLLARif] = ACTIONS(1439), - [anon_sym_DOLLARswitch] = ACTIONS(1439), - [anon_sym_DOLLARfor] = ACTIONS(1439), - [anon_sym_DOLLARforeach] = ACTIONS(1439), - [anon_sym_DOLLARalignof] = ACTIONS(1439), - [anon_sym_DOLLARextnameof] = ACTIONS(1439), - [anon_sym_DOLLARnameof] = ACTIONS(1439), - [anon_sym_DOLLARoffsetof] = ACTIONS(1439), - [anon_sym_DOLLARqnameof] = ACTIONS(1439), - [anon_sym_DOLLARvaconst] = ACTIONS(1439), - [anon_sym_DOLLARvaarg] = ACTIONS(1439), - [anon_sym_DOLLARvaref] = ACTIONS(1439), - [anon_sym_DOLLARvaexpr] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_DOLLARvacount] = ACTIONS(1439), - [anon_sym_DOLLAReval] = ACTIONS(1439), - [anon_sym_DOLLARis_const] = ACTIONS(1439), - [anon_sym_DOLLARsizeof] = ACTIONS(1439), - [anon_sym_DOLLARstringify] = ACTIONS(1439), - [anon_sym_DOLLARappend] = ACTIONS(1439), - [anon_sym_DOLLARconcat] = ACTIONS(1439), - [anon_sym_DOLLARdefined] = ACTIONS(1439), - [anon_sym_DOLLARembed] = ACTIONS(1439), - [anon_sym_DOLLARand] = ACTIONS(1439), - [anon_sym_DOLLARor] = ACTIONS(1439), - [anon_sym_DOLLARfeature] = ACTIONS(1439), - [anon_sym_DOLLARassignable] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_typeid] = ACTIONS(1439), - [anon_sym_LBRACE_PIPE] = ACTIONS(1441), - [anon_sym_PIPE_RBRACE] = ACTIONS(1441), - [anon_sym_void] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_ichar] = ACTIONS(1439), - [anon_sym_short] = ACTIONS(1439), - [anon_sym_ushort] = ACTIONS(1439), - [anon_sym_uint] = ACTIONS(1439), - [anon_sym_long] = ACTIONS(1439), - [anon_sym_ulong] = ACTIONS(1439), - [anon_sym_int128] = ACTIONS(1439), - [anon_sym_uint128] = ACTIONS(1439), - [anon_sym_float] = ACTIONS(1439), - [anon_sym_double] = ACTIONS(1439), - [anon_sym_float16] = ACTIONS(1439), - [anon_sym_bfloat16] = ACTIONS(1439), - [anon_sym_float128] = ACTIONS(1439), - [anon_sym_iptr] = ACTIONS(1439), - [anon_sym_uptr] = ACTIONS(1439), - [anon_sym_isz] = ACTIONS(1439), - [anon_sym_usz] = ACTIONS(1439), - [anon_sym_anyfault] = ACTIONS(1439), - [anon_sym_any] = ACTIONS(1439), - [anon_sym_DOLLARtypeof] = ACTIONS(1439), - [anon_sym_DOLLARtypefrom] = ACTIONS(1439), - [anon_sym_DOLLARevaltype] = ACTIONS(1439), - [anon_sym_DOLLARvatype] = ACTIONS(1439), - [sym_real_literal] = ACTIONS(1441), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_PIPE_RBRACE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, [362] = { [sym_line_comment] = STATE(362), [sym_doc_comment] = STATE(362), [sym_block_comment] = STATE(362), - [sym_ident] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_BQUOTE] = ACTIONS(1445), - [sym_bytes_literal] = ACTIONS(1445), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1443), - [sym_at_ident] = ACTIONS(1445), - [sym_hash_ident] = ACTIONS(1445), - [sym_type_ident] = ACTIONS(1445), - [sym_ct_type_ident] = ACTIONS(1445), - [sym_const_ident] = ACTIONS(1443), - [sym_builtin] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_tlocal] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_var] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_defer] = ACTIONS(1443), - [anon_sym_assert] = ACTIONS(1443), - [anon_sym_case] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_nextcase] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_foreach] = ACTIONS(1443), - [anon_sym_foreach_r] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_int] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_asm] = ACTIONS(1443), - [anon_sym_DOLLARassert] = ACTIONS(1443), - [anon_sym_DOLLARerror] = ACTIONS(1443), - [anon_sym_DOLLARecho] = ACTIONS(1443), - [anon_sym_DOLLARif] = ACTIONS(1443), - [anon_sym_DOLLARswitch] = ACTIONS(1443), - [anon_sym_DOLLARfor] = ACTIONS(1443), - [anon_sym_DOLLARforeach] = ACTIONS(1443), - [anon_sym_DOLLARalignof] = ACTIONS(1443), - [anon_sym_DOLLARextnameof] = ACTIONS(1443), - [anon_sym_DOLLARnameof] = ACTIONS(1443), - [anon_sym_DOLLARoffsetof] = ACTIONS(1443), - [anon_sym_DOLLARqnameof] = ACTIONS(1443), - [anon_sym_DOLLARvaconst] = ACTIONS(1443), - [anon_sym_DOLLARvaarg] = ACTIONS(1443), - [anon_sym_DOLLARvaref] = ACTIONS(1443), - [anon_sym_DOLLARvaexpr] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_null] = ACTIONS(1443), - [anon_sym_DOLLARvacount] = ACTIONS(1443), - [anon_sym_DOLLAReval] = ACTIONS(1443), - [anon_sym_DOLLARis_const] = ACTIONS(1443), - [anon_sym_DOLLARsizeof] = ACTIONS(1443), - [anon_sym_DOLLARstringify] = ACTIONS(1443), - [anon_sym_DOLLARappend] = ACTIONS(1443), - [anon_sym_DOLLARconcat] = ACTIONS(1443), - [anon_sym_DOLLARdefined] = ACTIONS(1443), - [anon_sym_DOLLARembed] = ACTIONS(1443), - [anon_sym_DOLLARand] = ACTIONS(1443), - [anon_sym_DOLLARor] = ACTIONS(1443), - [anon_sym_DOLLARfeature] = ACTIONS(1443), - [anon_sym_DOLLARassignable] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_typeid] = ACTIONS(1443), - [anon_sym_LBRACE_PIPE] = ACTIONS(1445), - [anon_sym_PIPE_RBRACE] = ACTIONS(1445), - [anon_sym_void] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_ichar] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [anon_sym_ushort] = ACTIONS(1443), - [anon_sym_uint] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_ulong] = ACTIONS(1443), - [anon_sym_int128] = ACTIONS(1443), - [anon_sym_uint128] = ACTIONS(1443), - [anon_sym_float] = ACTIONS(1443), - [anon_sym_double] = ACTIONS(1443), - [anon_sym_float16] = ACTIONS(1443), - [anon_sym_bfloat16] = ACTIONS(1443), - [anon_sym_float128] = ACTIONS(1443), - [anon_sym_iptr] = ACTIONS(1443), - [anon_sym_uptr] = ACTIONS(1443), - [anon_sym_isz] = ACTIONS(1443), - [anon_sym_usz] = ACTIONS(1443), - [anon_sym_anyfault] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_DOLLARtypeof] = ACTIONS(1443), - [anon_sym_DOLLARtypefrom] = ACTIONS(1443), - [anon_sym_DOLLARevaltype] = ACTIONS(1443), - [anon_sym_DOLLARvatype] = ACTIONS(1443), - [sym_real_literal] = ACTIONS(1445), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_case] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_PIPE_RBRACE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, [363] = { [sym_line_comment] = STATE(363), [sym_doc_comment] = STATE(363), [sym_block_comment] = STATE(363), - [sym_ident] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_BQUOTE] = ACTIONS(1449), - [sym_bytes_literal] = ACTIONS(1449), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1447), - [sym_at_ident] = ACTIONS(1449), - [sym_hash_ident] = ACTIONS(1449), - [sym_type_ident] = ACTIONS(1449), - [sym_ct_type_ident] = ACTIONS(1449), - [sym_const_ident] = ACTIONS(1447), - [sym_builtin] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_tlocal] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_var] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_defer] = ACTIONS(1447), - [anon_sym_assert] = ACTIONS(1447), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_nextcase] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_foreach] = ACTIONS(1447), - [anon_sym_foreach_r] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_int] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_asm] = ACTIONS(1447), - [anon_sym_DOLLARassert] = ACTIONS(1447), - [anon_sym_DOLLARerror] = ACTIONS(1447), - [anon_sym_DOLLARecho] = ACTIONS(1447), - [anon_sym_DOLLARif] = ACTIONS(1447), - [anon_sym_DOLLARswitch] = ACTIONS(1447), - [anon_sym_DOLLARfor] = ACTIONS(1447), - [anon_sym_DOLLARforeach] = ACTIONS(1447), - [anon_sym_DOLLARalignof] = ACTIONS(1447), - [anon_sym_DOLLARextnameof] = ACTIONS(1447), - [anon_sym_DOLLARnameof] = ACTIONS(1447), - [anon_sym_DOLLARoffsetof] = ACTIONS(1447), - [anon_sym_DOLLARqnameof] = ACTIONS(1447), - [anon_sym_DOLLARvaconst] = ACTIONS(1447), - [anon_sym_DOLLARvaarg] = ACTIONS(1447), - [anon_sym_DOLLARvaref] = ACTIONS(1447), - [anon_sym_DOLLARvaexpr] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_DOLLARvacount] = ACTIONS(1447), - [anon_sym_DOLLAReval] = ACTIONS(1447), - [anon_sym_DOLLARis_const] = ACTIONS(1447), - [anon_sym_DOLLARsizeof] = ACTIONS(1447), - [anon_sym_DOLLARstringify] = ACTIONS(1447), - [anon_sym_DOLLARappend] = ACTIONS(1447), - [anon_sym_DOLLARconcat] = ACTIONS(1447), - [anon_sym_DOLLARdefined] = ACTIONS(1447), - [anon_sym_DOLLARembed] = ACTIONS(1447), - [anon_sym_DOLLARand] = ACTIONS(1447), - [anon_sym_DOLLARor] = ACTIONS(1447), - [anon_sym_DOLLARfeature] = ACTIONS(1447), - [anon_sym_DOLLARassignable] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_typeid] = ACTIONS(1447), - [anon_sym_LBRACE_PIPE] = ACTIONS(1449), - [anon_sym_PIPE_RBRACE] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_ichar] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [anon_sym_ushort] = ACTIONS(1447), - [anon_sym_uint] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_ulong] = ACTIONS(1447), - [anon_sym_int128] = ACTIONS(1447), - [anon_sym_uint128] = ACTIONS(1447), - [anon_sym_float] = ACTIONS(1447), - [anon_sym_double] = ACTIONS(1447), - [anon_sym_float16] = ACTIONS(1447), - [anon_sym_bfloat16] = ACTIONS(1447), - [anon_sym_float128] = ACTIONS(1447), - [anon_sym_iptr] = ACTIONS(1447), - [anon_sym_uptr] = ACTIONS(1447), - [anon_sym_isz] = ACTIONS(1447), - [anon_sym_usz] = ACTIONS(1447), - [anon_sym_anyfault] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_DOLLARtypeof] = ACTIONS(1447), - [anon_sym_DOLLARtypefrom] = ACTIONS(1447), - [anon_sym_DOLLARevaltype] = ACTIONS(1447), - [anon_sym_DOLLARvatype] = ACTIONS(1447), - [sym_real_literal] = ACTIONS(1449), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_PIPE_RBRACE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, [364] = { [sym_line_comment] = STATE(364), [sym_doc_comment] = STATE(364), [sym_block_comment] = STATE(364), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_case] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_PIPE_RBRACE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_case] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_PIPE_RBRACE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, [365] = { [sym_line_comment] = STATE(365), [sym_doc_comment] = STATE(365), [sym_block_comment] = STATE(365), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_case] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_PIPE_RBRACE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_default] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_PIPE_RBRACE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, [366] = { [sym_line_comment] = STATE(366), [sym_doc_comment] = STATE(366), [sym_block_comment] = STATE(366), - [sym_ident] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_BQUOTE] = ACTIONS(1457), - [sym_bytes_literal] = ACTIONS(1457), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1455), - [sym_at_ident] = ACTIONS(1457), - [sym_hash_ident] = ACTIONS(1457), - [sym_type_ident] = ACTIONS(1457), - [sym_ct_type_ident] = ACTIONS(1457), - [sym_const_ident] = ACTIONS(1455), - [sym_builtin] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_tlocal] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_var] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_defer] = ACTIONS(1455), - [anon_sym_assert] = ACTIONS(1455), - [anon_sym_case] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_nextcase] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_foreach] = ACTIONS(1455), - [anon_sym_foreach_r] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_int] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1455), - [anon_sym_DOLLARassert] = ACTIONS(1455), - [anon_sym_DOLLARerror] = ACTIONS(1455), - [anon_sym_DOLLARecho] = ACTIONS(1455), - [anon_sym_DOLLARif] = ACTIONS(1455), - [anon_sym_DOLLARswitch] = ACTIONS(1455), - [anon_sym_DOLLARfor] = ACTIONS(1455), - [anon_sym_DOLLARforeach] = ACTIONS(1455), - [anon_sym_DOLLARalignof] = ACTIONS(1455), - [anon_sym_DOLLARextnameof] = ACTIONS(1455), - [anon_sym_DOLLARnameof] = ACTIONS(1455), - [anon_sym_DOLLARoffsetof] = ACTIONS(1455), - [anon_sym_DOLLARqnameof] = ACTIONS(1455), - [anon_sym_DOLLARvaconst] = ACTIONS(1455), - [anon_sym_DOLLARvaarg] = ACTIONS(1455), - [anon_sym_DOLLARvaref] = ACTIONS(1455), - [anon_sym_DOLLARvaexpr] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_DOLLARvacount] = ACTIONS(1455), - [anon_sym_DOLLAReval] = ACTIONS(1455), - [anon_sym_DOLLARis_const] = ACTIONS(1455), - [anon_sym_DOLLARsizeof] = ACTIONS(1455), - [anon_sym_DOLLARstringify] = ACTIONS(1455), - [anon_sym_DOLLARappend] = ACTIONS(1455), - [anon_sym_DOLLARconcat] = ACTIONS(1455), - [anon_sym_DOLLARdefined] = ACTIONS(1455), - [anon_sym_DOLLARembed] = ACTIONS(1455), - [anon_sym_DOLLARand] = ACTIONS(1455), - [anon_sym_DOLLARor] = ACTIONS(1455), - [anon_sym_DOLLARfeature] = ACTIONS(1455), - [anon_sym_DOLLARassignable] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_typeid] = ACTIONS(1455), - [anon_sym_LBRACE_PIPE] = ACTIONS(1457), - [anon_sym_PIPE_RBRACE] = ACTIONS(1457), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_ichar] = ACTIONS(1455), - [anon_sym_short] = ACTIONS(1455), - [anon_sym_ushort] = ACTIONS(1455), - [anon_sym_uint] = ACTIONS(1455), - [anon_sym_long] = ACTIONS(1455), - [anon_sym_ulong] = ACTIONS(1455), - [anon_sym_int128] = ACTIONS(1455), - [anon_sym_uint128] = ACTIONS(1455), - [anon_sym_float] = ACTIONS(1455), - [anon_sym_double] = ACTIONS(1455), - [anon_sym_float16] = ACTIONS(1455), - [anon_sym_bfloat16] = ACTIONS(1455), - [anon_sym_float128] = ACTIONS(1455), - [anon_sym_iptr] = ACTIONS(1455), - [anon_sym_uptr] = ACTIONS(1455), - [anon_sym_isz] = ACTIONS(1455), - [anon_sym_usz] = ACTIONS(1455), - [anon_sym_anyfault] = ACTIONS(1455), - [anon_sym_any] = ACTIONS(1455), - [anon_sym_DOLLARtypeof] = ACTIONS(1455), - [anon_sym_DOLLARtypefrom] = ACTIONS(1455), - [anon_sym_DOLLARevaltype] = ACTIONS(1455), - [anon_sym_DOLLARvatype] = ACTIONS(1455), - [sym_real_literal] = ACTIONS(1457), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_PIPE_RBRACE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), }, [367] = { [sym_line_comment] = STATE(367), [sym_doc_comment] = STATE(367), [sym_block_comment] = STATE(367), - [sym_ident] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_bytes_literal] = ACTIONS(1461), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1459), - [sym_at_ident] = ACTIONS(1461), - [sym_hash_ident] = ACTIONS(1461), - [sym_type_ident] = ACTIONS(1461), - [sym_ct_type_ident] = ACTIONS(1461), - [sym_const_ident] = ACTIONS(1459), - [sym_builtin] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_tlocal] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_var] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_defer] = ACTIONS(1459), - [anon_sym_assert] = ACTIONS(1459), - [anon_sym_case] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_nextcase] = ACTIONS(1459), - [anon_sym_switch] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_foreach] = ACTIONS(1459), - [anon_sym_foreach_r] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_int] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1459), - [anon_sym_DOLLARassert] = ACTIONS(1459), - [anon_sym_DOLLARerror] = ACTIONS(1459), - [anon_sym_DOLLARecho] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1459), - [anon_sym_DOLLARswitch] = ACTIONS(1459), - [anon_sym_DOLLARfor] = ACTIONS(1459), - [anon_sym_DOLLARforeach] = ACTIONS(1459), - [anon_sym_DOLLARalignof] = ACTIONS(1459), - [anon_sym_DOLLARextnameof] = ACTIONS(1459), - [anon_sym_DOLLARnameof] = ACTIONS(1459), - [anon_sym_DOLLARoffsetof] = ACTIONS(1459), - [anon_sym_DOLLARqnameof] = ACTIONS(1459), - [anon_sym_DOLLARvaconst] = ACTIONS(1459), - [anon_sym_DOLLARvaarg] = ACTIONS(1459), - [anon_sym_DOLLARvaref] = ACTIONS(1459), - [anon_sym_DOLLARvaexpr] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1459), - [anon_sym_DOLLARvacount] = ACTIONS(1459), - [anon_sym_DOLLAReval] = ACTIONS(1459), - [anon_sym_DOLLARis_const] = ACTIONS(1459), - [anon_sym_DOLLARsizeof] = ACTIONS(1459), - [anon_sym_DOLLARstringify] = ACTIONS(1459), - [anon_sym_DOLLARappend] = ACTIONS(1459), - [anon_sym_DOLLARconcat] = ACTIONS(1459), - [anon_sym_DOLLARdefined] = ACTIONS(1459), - [anon_sym_DOLLARembed] = ACTIONS(1459), - [anon_sym_DOLLARand] = ACTIONS(1459), - [anon_sym_DOLLARor] = ACTIONS(1459), - [anon_sym_DOLLARfeature] = ACTIONS(1459), - [anon_sym_DOLLARassignable] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_typeid] = ACTIONS(1459), - [anon_sym_LBRACE_PIPE] = ACTIONS(1461), - [anon_sym_PIPE_RBRACE] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_ichar] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [anon_sym_ushort] = ACTIONS(1459), - [anon_sym_uint] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_ulong] = ACTIONS(1459), - [anon_sym_int128] = ACTIONS(1459), - [anon_sym_uint128] = ACTIONS(1459), - [anon_sym_float] = ACTIONS(1459), - [anon_sym_double] = ACTIONS(1459), - [anon_sym_float16] = ACTIONS(1459), - [anon_sym_bfloat16] = ACTIONS(1459), - [anon_sym_float128] = ACTIONS(1459), - [anon_sym_iptr] = ACTIONS(1459), - [anon_sym_uptr] = ACTIONS(1459), - [anon_sym_isz] = ACTIONS(1459), - [anon_sym_usz] = ACTIONS(1459), - [anon_sym_anyfault] = ACTIONS(1459), - [anon_sym_any] = ACTIONS(1459), - [anon_sym_DOLLARtypeof] = ACTIONS(1459), - [anon_sym_DOLLARtypefrom] = ACTIONS(1459), - [anon_sym_DOLLARevaltype] = ACTIONS(1459), - [anon_sym_DOLLARvatype] = ACTIONS(1459), - [sym_real_literal] = ACTIONS(1461), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_PIPE_RBRACE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, [368] = { [sym_line_comment] = STATE(368), [sym_doc_comment] = STATE(368), [sym_block_comment] = STATE(368), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_case] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARappend] = ACTIONS(1463), - [anon_sym_DOLLARconcat] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_PIPE_RBRACE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_PIPE_RBRACE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, [369] = { [sym_line_comment] = STATE(369), [sym_doc_comment] = STATE(369), [sym_block_comment] = STATE(369), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_case] = ACTIONS(1467), - [anon_sym_default] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARappend] = ACTIONS(1467), - [anon_sym_DOLLARconcat] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_PIPE_RBRACE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_case] = ACTIONS(1469), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_PIPE_RBRACE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, [370] = { [sym_line_comment] = STATE(370), [sym_doc_comment] = STATE(370), [sym_block_comment] = STATE(370), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_case] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARappend] = ACTIONS(1471), - [anon_sym_DOLLARconcat] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_PIPE_RBRACE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_case] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_PIPE_RBRACE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, [371] = { [sym_line_comment] = STATE(371), [sym_doc_comment] = STATE(371), [sym_block_comment] = STATE(371), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_case] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARappend] = ACTIONS(1475), - [anon_sym_DOLLARconcat] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_PIPE_RBRACE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_case] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_PIPE_RBRACE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, [372] = { [sym_line_comment] = STATE(372), [sym_doc_comment] = STATE(372), [sym_block_comment] = STATE(372), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARappend] = ACTIONS(1479), - [anon_sym_DOLLARconcat] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_PIPE_RBRACE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_PIPE_RBRACE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, [373] = { [sym_line_comment] = STATE(373), [sym_doc_comment] = STATE(373), [sym_block_comment] = STATE(373), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_case] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARappend] = ACTIONS(1483), - [anon_sym_DOLLARconcat] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_PIPE_RBRACE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_case] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_PIPE_RBRACE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, [374] = { [sym_line_comment] = STATE(374), [sym_doc_comment] = STATE(374), [sym_block_comment] = STATE(374), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_case] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARappend] = ACTIONS(1487), - [anon_sym_DOLLARconcat] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_PIPE_RBRACE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_case] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_PIPE_RBRACE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, [375] = { [sym_line_comment] = STATE(375), [sym_doc_comment] = STATE(375), [sym_block_comment] = STATE(375), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARappend] = ACTIONS(1491), - [anon_sym_DOLLARconcat] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_PIPE_RBRACE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_PIPE_RBRACE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [376] = { [sym_line_comment] = STATE(376), [sym_doc_comment] = STATE(376), [sym_block_comment] = STATE(376), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_case] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARappend] = ACTIONS(1495), - [anon_sym_DOLLARconcat] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_PIPE_RBRACE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_PIPE_RBRACE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, [377] = { [sym_line_comment] = STATE(377), [sym_doc_comment] = STATE(377), [sym_block_comment] = STATE(377), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARappend] = ACTIONS(1499), - [anon_sym_DOLLARconcat] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_PIPE_RBRACE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_case] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_PIPE_RBRACE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, [378] = { [sym_line_comment] = STATE(378), [sym_doc_comment] = STATE(378), [sym_block_comment] = STATE(378), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARappend] = ACTIONS(1503), - [anon_sym_DOLLARconcat] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_PIPE_RBRACE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_case] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_PIPE_RBRACE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, [379] = { [sym_line_comment] = STATE(379), [sym_doc_comment] = STATE(379), [sym_block_comment] = STATE(379), - [sym_else_part] = STATE(546), - [sym_ident] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [sym_bytes_literal] = ACTIONS(1365), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1363), - [sym_at_ident] = ACTIONS(1365), - [sym_hash_ident] = ACTIONS(1365), - [sym_type_ident] = ACTIONS(1365), - [sym_ct_type_ident] = ACTIONS(1365), - [sym_const_ident] = ACTIONS(1363), - [sym_builtin] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_tlocal] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_var] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_defer] = ACTIONS(1363), - [anon_sym_assert] = ACTIONS(1363), - [anon_sym_nextcase] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_else] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_foreach] = ACTIONS(1363), - [anon_sym_foreach_r] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_int] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym_DOLLARassert] = ACTIONS(1363), - [anon_sym_DOLLARerror] = ACTIONS(1363), - [anon_sym_DOLLARecho] = ACTIONS(1363), - [anon_sym_DOLLARif] = ACTIONS(1363), - [anon_sym_DOLLARendif] = ACTIONS(1363), - [anon_sym_DOLLARelse] = ACTIONS(1363), - [anon_sym_DOLLARswitch] = ACTIONS(1363), - [anon_sym_DOLLARfor] = ACTIONS(1363), - [anon_sym_DOLLARforeach] = ACTIONS(1363), - [anon_sym_DOLLARalignof] = ACTIONS(1363), - [anon_sym_DOLLARextnameof] = ACTIONS(1363), - [anon_sym_DOLLARnameof] = ACTIONS(1363), - [anon_sym_DOLLARoffsetof] = ACTIONS(1363), - [anon_sym_DOLLARqnameof] = ACTIONS(1363), - [anon_sym_DOLLARvaconst] = ACTIONS(1363), - [anon_sym_DOLLARvaarg] = ACTIONS(1363), - [anon_sym_DOLLARvaref] = ACTIONS(1363), - [anon_sym_DOLLARvaexpr] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_null] = ACTIONS(1363), - [anon_sym_DOLLARvacount] = ACTIONS(1363), - [anon_sym_DOLLAReval] = ACTIONS(1363), - [anon_sym_DOLLARis_const] = ACTIONS(1363), - [anon_sym_DOLLARsizeof] = ACTIONS(1363), - [anon_sym_DOLLARstringify] = ACTIONS(1363), - [anon_sym_DOLLARappend] = ACTIONS(1363), - [anon_sym_DOLLARconcat] = ACTIONS(1363), - [anon_sym_DOLLARdefined] = ACTIONS(1363), - [anon_sym_DOLLARembed] = ACTIONS(1363), - [anon_sym_DOLLARand] = ACTIONS(1363), - [anon_sym_DOLLARor] = ACTIONS(1363), - [anon_sym_DOLLARfeature] = ACTIONS(1363), - [anon_sym_DOLLARassignable] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_typeid] = ACTIONS(1363), - [anon_sym_LBRACE_PIPE] = ACTIONS(1365), - [anon_sym_void] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_ichar] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_ushort] = ACTIONS(1363), - [anon_sym_uint] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_ulong] = ACTIONS(1363), - [anon_sym_int128] = ACTIONS(1363), - [anon_sym_uint128] = ACTIONS(1363), - [anon_sym_float] = ACTIONS(1363), - [anon_sym_double] = ACTIONS(1363), - [anon_sym_float16] = ACTIONS(1363), - [anon_sym_bfloat16] = ACTIONS(1363), - [anon_sym_float128] = ACTIONS(1363), - [anon_sym_iptr] = ACTIONS(1363), - [anon_sym_uptr] = ACTIONS(1363), - [anon_sym_isz] = ACTIONS(1363), - [anon_sym_usz] = ACTIONS(1363), - [anon_sym_anyfault] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1363), - [anon_sym_DOLLARtypeof] = ACTIONS(1363), - [anon_sym_DOLLARtypefrom] = ACTIONS(1363), - [anon_sym_DOLLARevaltype] = ACTIONS(1363), - [anon_sym_DOLLARvatype] = ACTIONS(1363), - [sym_real_literal] = ACTIONS(1365), - }, - [380] = { - [sym_line_comment] = STATE(380), - [sym_doc_comment] = STATE(380), - [sym_block_comment] = STATE(380), [sym_ident] = ACTIONS(1509), [sym_integer_literal] = ACTIONS(1511), [anon_sym_SQUOTE] = ACTIONS(1511), @@ -69108,10 +68914,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1509), [sym_real_literal] = ACTIONS(1511), }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_doc_comment] = STATE(381), - [sym_block_comment] = STATE(381), + [380] = { + [sym_line_comment] = STATE(380), + [sym_doc_comment] = STATE(380), + [sym_block_comment] = STATE(380), [sym_ident] = ACTIONS(1513), [sym_integer_literal] = ACTIONS(1515), [anon_sym_SQUOTE] = ACTIONS(1515), @@ -69226,10 +69032,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1513), [sym_real_literal] = ACTIONS(1515), }, - [382] = { - [sym_line_comment] = STATE(382), - [sym_doc_comment] = STATE(382), - [sym_block_comment] = STATE(382), + [381] = { + [sym_line_comment] = STATE(381), + [sym_doc_comment] = STATE(381), + [sym_block_comment] = STATE(381), [sym_ident] = ACTIONS(1517), [sym_integer_literal] = ACTIONS(1519), [anon_sym_SQUOTE] = ACTIONS(1519), @@ -69344,10 +69150,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1517), [sym_real_literal] = ACTIONS(1519), }, - [383] = { - [sym_line_comment] = STATE(383), - [sym_doc_comment] = STATE(383), - [sym_block_comment] = STATE(383), + [382] = { + [sym_line_comment] = STATE(382), + [sym_doc_comment] = STATE(382), + [sym_block_comment] = STATE(382), [sym_ident] = ACTIONS(1521), [sym_integer_literal] = ACTIONS(1523), [anon_sym_SQUOTE] = ACTIONS(1523), @@ -69462,10 +69268,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1521), [sym_real_literal] = ACTIONS(1523), }, - [384] = { - [sym_line_comment] = STATE(384), - [sym_doc_comment] = STATE(384), - [sym_block_comment] = STATE(384), + [383] = { + [sym_line_comment] = STATE(383), + [sym_doc_comment] = STATE(383), + [sym_block_comment] = STATE(383), [sym_ident] = ACTIONS(1525), [sym_integer_literal] = ACTIONS(1527), [anon_sym_SQUOTE] = ACTIONS(1527), @@ -69580,10 +69386,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1525), [sym_real_literal] = ACTIONS(1527), }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_doc_comment] = STATE(385), - [sym_block_comment] = STATE(385), + [384] = { + [sym_line_comment] = STATE(384), + [sym_doc_comment] = STATE(384), + [sym_block_comment] = STATE(384), [sym_ident] = ACTIONS(1529), [sym_integer_literal] = ACTIONS(1531), [anon_sym_SQUOTE] = ACTIONS(1531), @@ -69698,10 +69504,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1529), [sym_real_literal] = ACTIONS(1531), }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_doc_comment] = STATE(386), - [sym_block_comment] = STATE(386), + [385] = { + [sym_line_comment] = STATE(385), + [sym_doc_comment] = STATE(385), + [sym_block_comment] = STATE(385), [sym_ident] = ACTIONS(1533), [sym_integer_literal] = ACTIONS(1535), [anon_sym_SQUOTE] = ACTIONS(1535), @@ -69816,10 +69622,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1533), [sym_real_literal] = ACTIONS(1535), }, - [387] = { - [sym_line_comment] = STATE(387), - [sym_doc_comment] = STATE(387), - [sym_block_comment] = STATE(387), + [386] = { + [sym_line_comment] = STATE(386), + [sym_doc_comment] = STATE(386), + [sym_block_comment] = STATE(386), [sym_ident] = ACTIONS(1537), [sym_integer_literal] = ACTIONS(1539), [anon_sym_SQUOTE] = ACTIONS(1539), @@ -69934,10 +69740,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1537), [sym_real_literal] = ACTIONS(1539), }, - [388] = { - [sym_line_comment] = STATE(388), - [sym_doc_comment] = STATE(388), - [sym_block_comment] = STATE(388), + [387] = { + [sym_line_comment] = STATE(387), + [sym_doc_comment] = STATE(387), + [sym_block_comment] = STATE(387), [sym_ident] = ACTIONS(1541), [sym_integer_literal] = ACTIONS(1543), [anon_sym_SQUOTE] = ACTIONS(1543), @@ -70052,10 +69858,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1541), [sym_real_literal] = ACTIONS(1543), }, - [389] = { - [sym_line_comment] = STATE(389), - [sym_doc_comment] = STATE(389), - [sym_block_comment] = STATE(389), + [388] = { + [sym_line_comment] = STATE(388), + [sym_doc_comment] = STATE(388), + [sym_block_comment] = STATE(388), [sym_ident] = ACTIONS(1545), [sym_integer_literal] = ACTIONS(1547), [anon_sym_SQUOTE] = ACTIONS(1547), @@ -70170,10 +69976,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1545), [sym_real_literal] = ACTIONS(1547), }, - [390] = { - [sym_line_comment] = STATE(390), - [sym_doc_comment] = STATE(390), - [sym_block_comment] = STATE(390), + [389] = { + [sym_line_comment] = STATE(389), + [sym_doc_comment] = STATE(389), + [sym_block_comment] = STATE(389), [sym_ident] = ACTIONS(1549), [sym_integer_literal] = ACTIONS(1551), [anon_sym_SQUOTE] = ACTIONS(1551), @@ -70288,10 +70094,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1549), [sym_real_literal] = ACTIONS(1551), }, - [391] = { - [sym_line_comment] = STATE(391), - [sym_doc_comment] = STATE(391), - [sym_block_comment] = STATE(391), + [390] = { + [sym_line_comment] = STATE(390), + [sym_doc_comment] = STATE(390), + [sym_block_comment] = STATE(390), [sym_ident] = ACTIONS(1553), [sym_integer_literal] = ACTIONS(1555), [anon_sym_SQUOTE] = ACTIONS(1555), @@ -70406,128 +70212,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1553), [sym_real_literal] = ACTIONS(1555), }, - [392] = { - [sym_line_comment] = STATE(392), - [sym_doc_comment] = STATE(392), - [sym_block_comment] = STATE(392), - [sym_ident] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1371), - [sym_bytes_literal] = ACTIONS(1371), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1369), - [sym_at_ident] = ACTIONS(1371), - [sym_hash_ident] = ACTIONS(1371), - [sym_type_ident] = ACTIONS(1371), - [sym_ct_type_ident] = ACTIONS(1371), - [sym_const_ident] = ACTIONS(1369), - [sym_builtin] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_tlocal] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_fn] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_var] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_assert] = ACTIONS(1369), - [anon_sym_nextcase] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_foreach] = ACTIONS(1369), - [anon_sym_foreach_r] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym_DOLLARassert] = ACTIONS(1369), - [anon_sym_DOLLARerror] = ACTIONS(1369), - [anon_sym_DOLLARecho] = ACTIONS(1369), - [anon_sym_DOLLARif] = ACTIONS(1369), - [anon_sym_DOLLARcase] = ACTIONS(1369), - [anon_sym_DOLLARdefault] = ACTIONS(1369), - [anon_sym_DOLLARswitch] = ACTIONS(1369), - [anon_sym_DOLLARendswitch] = ACTIONS(1369), - [anon_sym_DOLLARfor] = ACTIONS(1369), - [anon_sym_DOLLARforeach] = ACTIONS(1369), - [anon_sym_DOLLARalignof] = ACTIONS(1369), - [anon_sym_DOLLARextnameof] = ACTIONS(1369), - [anon_sym_DOLLARnameof] = ACTIONS(1369), - [anon_sym_DOLLARoffsetof] = ACTIONS(1369), - [anon_sym_DOLLARqnameof] = ACTIONS(1369), - [anon_sym_DOLLARvaconst] = ACTIONS(1369), - [anon_sym_DOLLARvaarg] = ACTIONS(1369), - [anon_sym_DOLLARvaref] = ACTIONS(1369), - [anon_sym_DOLLARvaexpr] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_DOLLARvacount] = ACTIONS(1369), - [anon_sym_DOLLAReval] = ACTIONS(1369), - [anon_sym_DOLLARis_const] = ACTIONS(1369), - [anon_sym_DOLLARsizeof] = ACTIONS(1369), - [anon_sym_DOLLARstringify] = ACTIONS(1369), - [anon_sym_DOLLARappend] = ACTIONS(1369), - [anon_sym_DOLLARconcat] = ACTIONS(1369), - [anon_sym_DOLLARdefined] = ACTIONS(1369), - [anon_sym_DOLLARembed] = ACTIONS(1369), - [anon_sym_DOLLARand] = ACTIONS(1369), - [anon_sym_DOLLARor] = ACTIONS(1369), - [anon_sym_DOLLARfeature] = ACTIONS(1369), - [anon_sym_DOLLARassignable] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_typeid] = ACTIONS(1369), - [anon_sym_LBRACE_PIPE] = ACTIONS(1371), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_ichar] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_ushort] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_ulong] = ACTIONS(1369), - [anon_sym_int128] = ACTIONS(1369), - [anon_sym_uint128] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_double] = ACTIONS(1369), - [anon_sym_float16] = ACTIONS(1369), - [anon_sym_bfloat16] = ACTIONS(1369), - [anon_sym_float128] = ACTIONS(1369), - [anon_sym_iptr] = ACTIONS(1369), - [anon_sym_uptr] = ACTIONS(1369), - [anon_sym_isz] = ACTIONS(1369), - [anon_sym_usz] = ACTIONS(1369), - [anon_sym_anyfault] = ACTIONS(1369), - [anon_sym_any] = ACTIONS(1369), - [anon_sym_DOLLARtypeof] = ACTIONS(1369), - [anon_sym_DOLLARtypefrom] = ACTIONS(1369), - [anon_sym_DOLLARevaltype] = ACTIONS(1369), - [anon_sym_DOLLARvatype] = ACTIONS(1369), - [sym_real_literal] = ACTIONS(1371), - }, - [393] = { - [sym_line_comment] = STATE(393), - [sym_doc_comment] = STATE(393), - [sym_block_comment] = STATE(393), + [391] = { + [sym_line_comment] = STATE(391), + [sym_doc_comment] = STATE(391), + [sym_block_comment] = STATE(391), [sym_ident] = ACTIONS(1557), [sym_integer_literal] = ACTIONS(1559), [anon_sym_SQUOTE] = ACTIONS(1559), @@ -70642,128 +70330,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1557), [sym_real_literal] = ACTIONS(1559), }, - [394] = { - [sym_line_comment] = STATE(394), - [sym_doc_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [sym_ident] = ACTIONS(1373), - [sym_integer_literal] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [anon_sym_BQUOTE] = ACTIONS(1375), - [sym_bytes_literal] = ACTIONS(1375), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1373), - [sym_at_ident] = ACTIONS(1375), - [sym_hash_ident] = ACTIONS(1375), - [sym_type_ident] = ACTIONS(1375), - [sym_ct_type_ident] = ACTIONS(1375), - [sym_const_ident] = ACTIONS(1373), - [sym_builtin] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_tlocal] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_fn] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_var] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_defer] = ACTIONS(1373), - [anon_sym_assert] = ACTIONS(1373), - [anon_sym_nextcase] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_AMP_AMP] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_foreach] = ACTIONS(1373), - [anon_sym_foreach_r] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_int] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_asm] = ACTIONS(1373), - [anon_sym_DOLLARassert] = ACTIONS(1373), - [anon_sym_DOLLARerror] = ACTIONS(1373), - [anon_sym_DOLLARecho] = ACTIONS(1373), - [anon_sym_DOLLARif] = ACTIONS(1373), - [anon_sym_DOLLARcase] = ACTIONS(1373), - [anon_sym_DOLLARdefault] = ACTIONS(1373), - [anon_sym_DOLLARswitch] = ACTIONS(1373), - [anon_sym_DOLLARendswitch] = ACTIONS(1373), - [anon_sym_DOLLARfor] = ACTIONS(1373), - [anon_sym_DOLLARforeach] = ACTIONS(1373), - [anon_sym_DOLLARalignof] = ACTIONS(1373), - [anon_sym_DOLLARextnameof] = ACTIONS(1373), - [anon_sym_DOLLARnameof] = ACTIONS(1373), - [anon_sym_DOLLARoffsetof] = ACTIONS(1373), - [anon_sym_DOLLARqnameof] = ACTIONS(1373), - [anon_sym_DOLLARvaconst] = ACTIONS(1373), - [anon_sym_DOLLARvaarg] = ACTIONS(1373), - [anon_sym_DOLLARvaref] = ACTIONS(1373), - [anon_sym_DOLLARvaexpr] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), - [anon_sym_null] = ACTIONS(1373), - [anon_sym_DOLLARvacount] = ACTIONS(1373), - [anon_sym_DOLLAReval] = ACTIONS(1373), - [anon_sym_DOLLARis_const] = ACTIONS(1373), - [anon_sym_DOLLARsizeof] = ACTIONS(1373), - [anon_sym_DOLLARstringify] = ACTIONS(1373), - [anon_sym_DOLLARappend] = ACTIONS(1373), - [anon_sym_DOLLARconcat] = ACTIONS(1373), - [anon_sym_DOLLARdefined] = ACTIONS(1373), - [anon_sym_DOLLARembed] = ACTIONS(1373), - [anon_sym_DOLLARand] = ACTIONS(1373), - [anon_sym_DOLLARor] = ACTIONS(1373), - [anon_sym_DOLLARfeature] = ACTIONS(1373), - [anon_sym_DOLLARassignable] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_typeid] = ACTIONS(1373), - [anon_sym_LBRACE_PIPE] = ACTIONS(1375), - [anon_sym_void] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_ichar] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_ushort] = ACTIONS(1373), - [anon_sym_uint] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_ulong] = ACTIONS(1373), - [anon_sym_int128] = ACTIONS(1373), - [anon_sym_uint128] = ACTIONS(1373), - [anon_sym_float] = ACTIONS(1373), - [anon_sym_double] = ACTIONS(1373), - [anon_sym_float16] = ACTIONS(1373), - [anon_sym_bfloat16] = ACTIONS(1373), - [anon_sym_float128] = ACTIONS(1373), - [anon_sym_iptr] = ACTIONS(1373), - [anon_sym_uptr] = ACTIONS(1373), - [anon_sym_isz] = ACTIONS(1373), - [anon_sym_usz] = ACTIONS(1373), - [anon_sym_anyfault] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_DOLLARtypeof] = ACTIONS(1373), - [anon_sym_DOLLARtypefrom] = ACTIONS(1373), - [anon_sym_DOLLARevaltype] = ACTIONS(1373), - [anon_sym_DOLLARvatype] = ACTIONS(1373), - [sym_real_literal] = ACTIONS(1375), - }, - [395] = { - [sym_line_comment] = STATE(395), - [sym_doc_comment] = STATE(395), - [sym_block_comment] = STATE(395), + [392] = { + [sym_line_comment] = STATE(392), + [sym_doc_comment] = STATE(392), + [sym_block_comment] = STATE(392), [sym_ident] = ACTIONS(1561), [sym_integer_literal] = ACTIONS(1563), [anon_sym_SQUOTE] = ACTIONS(1563), @@ -70878,10 +70448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1561), [sym_real_literal] = ACTIONS(1563), }, - [396] = { - [sym_line_comment] = STATE(396), - [sym_doc_comment] = STATE(396), - [sym_block_comment] = STATE(396), + [393] = { + [sym_line_comment] = STATE(393), + [sym_doc_comment] = STATE(393), + [sym_block_comment] = STATE(393), [sym_ident] = ACTIONS(1565), [sym_integer_literal] = ACTIONS(1567), [anon_sym_SQUOTE] = ACTIONS(1567), @@ -70996,10 +70566,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1565), [sym_real_literal] = ACTIONS(1567), }, - [397] = { - [sym_line_comment] = STATE(397), - [sym_doc_comment] = STATE(397), - [sym_block_comment] = STATE(397), + [394] = { + [sym_line_comment] = STATE(394), + [sym_doc_comment] = STATE(394), + [sym_block_comment] = STATE(394), [sym_ident] = ACTIONS(1569), [sym_integer_literal] = ACTIONS(1571), [anon_sym_SQUOTE] = ACTIONS(1571), @@ -71114,10 +70684,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1569), [sym_real_literal] = ACTIONS(1571), }, - [398] = { - [sym_line_comment] = STATE(398), - [sym_doc_comment] = STATE(398), - [sym_block_comment] = STATE(398), + [395] = { + [sym_line_comment] = STATE(395), + [sym_doc_comment] = STATE(395), + [sym_block_comment] = STATE(395), [sym_ident] = ACTIONS(1573), [sym_integer_literal] = ACTIONS(1575), [anon_sym_SQUOTE] = ACTIONS(1575), @@ -71232,10 +70802,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1573), [sym_real_literal] = ACTIONS(1575), }, - [399] = { - [sym_line_comment] = STATE(399), - [sym_doc_comment] = STATE(399), - [sym_block_comment] = STATE(399), + [396] = { + [sym_line_comment] = STATE(396), + [sym_doc_comment] = STATE(396), + [sym_block_comment] = STATE(396), [sym_ident] = ACTIONS(1577), [sym_integer_literal] = ACTIONS(1579), [anon_sym_SQUOTE] = ACTIONS(1579), @@ -71350,128 +70920,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1577), [sym_real_literal] = ACTIONS(1579), }, - [400] = { - [sym_line_comment] = STATE(400), - [sym_doc_comment] = STATE(400), - [sym_block_comment] = STATE(400), - [sym_ident] = ACTIONS(1189), - [sym_integer_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [anon_sym_BQUOTE] = ACTIONS(1191), - [sym_bytes_literal] = ACTIONS(1191), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1189), - [sym_at_ident] = ACTIONS(1191), - [sym_hash_ident] = ACTIONS(1191), - [sym_type_ident] = ACTIONS(1191), - [sym_ct_type_ident] = ACTIONS(1191), - [sym_const_ident] = ACTIONS(1189), - [sym_builtin] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_tlocal] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym_fn] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_defer] = ACTIONS(1189), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_case] = ACTIONS(1189), - [anon_sym_default] = ACTIONS(1189), - [anon_sym_nextcase] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_foreach] = ACTIONS(1189), - [anon_sym_foreach_r] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_int] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym_DOLLARassert] = ACTIONS(1189), - [anon_sym_DOLLARerror] = ACTIONS(1189), - [anon_sym_DOLLARecho] = ACTIONS(1189), - [anon_sym_DOLLARif] = ACTIONS(1189), - [anon_sym_DOLLARswitch] = ACTIONS(1189), - [anon_sym_DOLLARfor] = ACTIONS(1189), - [anon_sym_DOLLARforeach] = ACTIONS(1189), - [anon_sym_DOLLARalignof] = ACTIONS(1189), - [anon_sym_DOLLARextnameof] = ACTIONS(1189), - [anon_sym_DOLLARnameof] = ACTIONS(1189), - [anon_sym_DOLLARoffsetof] = ACTIONS(1189), - [anon_sym_DOLLARqnameof] = ACTIONS(1189), - [anon_sym_DOLLARvaconst] = ACTIONS(1189), - [anon_sym_DOLLARvaarg] = ACTIONS(1189), - [anon_sym_DOLLARvaref] = ACTIONS(1189), - [anon_sym_DOLLARvaexpr] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_DOLLARvacount] = ACTIONS(1189), - [anon_sym_DOLLAReval] = ACTIONS(1189), - [anon_sym_DOLLARis_const] = ACTIONS(1189), - [anon_sym_DOLLARsizeof] = ACTIONS(1189), - [anon_sym_DOLLARstringify] = ACTIONS(1189), - [anon_sym_DOLLARappend] = ACTIONS(1189), - [anon_sym_DOLLARconcat] = ACTIONS(1189), - [anon_sym_DOLLARdefined] = ACTIONS(1189), - [anon_sym_DOLLARembed] = ACTIONS(1189), - [anon_sym_DOLLARand] = ACTIONS(1189), - [anon_sym_DOLLARor] = ACTIONS(1189), - [anon_sym_DOLLARfeature] = ACTIONS(1189), - [anon_sym_DOLLARassignable] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_typeid] = ACTIONS(1189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1191), - [anon_sym_PIPE_RBRACE] = ACTIONS(1191), - [anon_sym_void] = ACTIONS(1189), - [anon_sym_bool] = ACTIONS(1189), - [anon_sym_char] = ACTIONS(1189), - [anon_sym_ichar] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_ushort] = ACTIONS(1189), - [anon_sym_uint] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_ulong] = ACTIONS(1189), - [anon_sym_int128] = ACTIONS(1189), - [anon_sym_uint128] = ACTIONS(1189), - [anon_sym_float] = ACTIONS(1189), - [anon_sym_double] = ACTIONS(1189), - [anon_sym_float16] = ACTIONS(1189), - [anon_sym_bfloat16] = ACTIONS(1189), - [anon_sym_float128] = ACTIONS(1189), - [anon_sym_iptr] = ACTIONS(1189), - [anon_sym_uptr] = ACTIONS(1189), - [anon_sym_isz] = ACTIONS(1189), - [anon_sym_usz] = ACTIONS(1189), - [anon_sym_anyfault] = ACTIONS(1189), - [anon_sym_any] = ACTIONS(1189), - [anon_sym_DOLLARtypeof] = ACTIONS(1189), - [anon_sym_DOLLARtypefrom] = ACTIONS(1189), - [anon_sym_DOLLARevaltype] = ACTIONS(1189), - [anon_sym_DOLLARvatype] = ACTIONS(1189), - [sym_real_literal] = ACTIONS(1191), - }, - [401] = { - [sym_line_comment] = STATE(401), - [sym_doc_comment] = STATE(401), - [sym_block_comment] = STATE(401), + [397] = { + [sym_line_comment] = STATE(397), + [sym_doc_comment] = STATE(397), + [sym_block_comment] = STATE(397), [sym_ident] = ACTIONS(1581), [sym_integer_literal] = ACTIONS(1583), [anon_sym_SQUOTE] = ACTIONS(1583), @@ -71586,10 +71038,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1581), [sym_real_literal] = ACTIONS(1583), }, - [402] = { - [sym_line_comment] = STATE(402), - [sym_doc_comment] = STATE(402), - [sym_block_comment] = STATE(402), + [398] = { + [sym_line_comment] = STATE(398), + [sym_doc_comment] = STATE(398), + [sym_block_comment] = STATE(398), [sym_ident] = ACTIONS(1585), [sym_integer_literal] = ACTIONS(1587), [anon_sym_SQUOTE] = ACTIONS(1587), @@ -71704,10 +71156,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1585), [sym_real_literal] = ACTIONS(1587), }, - [403] = { - [sym_line_comment] = STATE(403), - [sym_doc_comment] = STATE(403), - [sym_block_comment] = STATE(403), + [399] = { + [sym_line_comment] = STATE(399), + [sym_doc_comment] = STATE(399), + [sym_block_comment] = STATE(399), [sym_ident] = ACTIONS(1589), [sym_integer_literal] = ACTIONS(1591), [anon_sym_SQUOTE] = ACTIONS(1591), @@ -71822,10 +71274,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1589), [sym_real_literal] = ACTIONS(1591), }, - [404] = { - [sym_line_comment] = STATE(404), - [sym_doc_comment] = STATE(404), - [sym_block_comment] = STATE(404), + [400] = { + [sym_line_comment] = STATE(400), + [sym_doc_comment] = STATE(400), + [sym_block_comment] = STATE(400), [sym_ident] = ACTIONS(1593), [sym_integer_literal] = ACTIONS(1595), [anon_sym_SQUOTE] = ACTIONS(1595), @@ -71940,10 +71392,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1593), [sym_real_literal] = ACTIONS(1595), }, - [405] = { - [sym_line_comment] = STATE(405), - [sym_doc_comment] = STATE(405), - [sym_block_comment] = STATE(405), + [401] = { + [sym_line_comment] = STATE(401), + [sym_doc_comment] = STATE(401), + [sym_block_comment] = STATE(401), [sym_ident] = ACTIONS(1597), [sym_integer_literal] = ACTIONS(1599), [anon_sym_SQUOTE] = ACTIONS(1599), @@ -72058,10 +71510,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1597), [sym_real_literal] = ACTIONS(1599), }, - [406] = { - [sym_line_comment] = STATE(406), - [sym_doc_comment] = STATE(406), - [sym_block_comment] = STATE(406), + [402] = { + [sym_line_comment] = STATE(402), + [sym_doc_comment] = STATE(402), + [sym_block_comment] = STATE(402), [sym_ident] = ACTIONS(1601), [sym_integer_literal] = ACTIONS(1603), [anon_sym_SQUOTE] = ACTIONS(1603), @@ -72176,10 +71628,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1601), [sym_real_literal] = ACTIONS(1603), }, - [407] = { - [sym_line_comment] = STATE(407), - [sym_doc_comment] = STATE(407), - [sym_block_comment] = STATE(407), + [403] = { + [sym_line_comment] = STATE(403), + [sym_doc_comment] = STATE(403), + [sym_block_comment] = STATE(403), [sym_ident] = ACTIONS(1605), [sym_integer_literal] = ACTIONS(1607), [anon_sym_SQUOTE] = ACTIONS(1607), @@ -72294,10 +71746,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1605), [sym_real_literal] = ACTIONS(1607), }, - [408] = { - [sym_line_comment] = STATE(408), - [sym_doc_comment] = STATE(408), - [sym_block_comment] = STATE(408), + [404] = { + [sym_line_comment] = STATE(404), + [sym_doc_comment] = STATE(404), + [sym_block_comment] = STATE(404), [sym_ident] = ACTIONS(1609), [sym_integer_literal] = ACTIONS(1611), [anon_sym_SQUOTE] = ACTIONS(1611), @@ -72412,10 +71864,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1609), [sym_real_literal] = ACTIONS(1611), }, - [409] = { - [sym_line_comment] = STATE(409), - [sym_doc_comment] = STATE(409), - [sym_block_comment] = STATE(409), + [405] = { + [sym_line_comment] = STATE(405), + [sym_doc_comment] = STATE(405), + [sym_block_comment] = STATE(405), [sym_ident] = ACTIONS(1613), [sym_integer_literal] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1615), @@ -72530,10 +71982,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1613), [sym_real_literal] = ACTIONS(1615), }, - [410] = { - [sym_line_comment] = STATE(410), - [sym_doc_comment] = STATE(410), - [sym_block_comment] = STATE(410), + [406] = { + [sym_line_comment] = STATE(406), + [sym_doc_comment] = STATE(406), + [sym_block_comment] = STATE(406), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_RBRACE] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_case] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_PIPE_RBRACE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), + }, + [407] = { + [sym_line_comment] = STATE(407), + [sym_doc_comment] = STATE(407), + [sym_block_comment] = STATE(407), [sym_ident] = ACTIONS(1617), [sym_integer_literal] = ACTIONS(1619), [anon_sym_SQUOTE] = ACTIONS(1619), @@ -72648,10 +72218,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1617), [sym_real_literal] = ACTIONS(1619), }, - [411] = { - [sym_line_comment] = STATE(411), - [sym_doc_comment] = STATE(411), - [sym_block_comment] = STATE(411), + [408] = { + [sym_line_comment] = STATE(408), + [sym_doc_comment] = STATE(408), + [sym_block_comment] = STATE(408), [sym_ident] = ACTIONS(1621), [sym_integer_literal] = ACTIONS(1623), [anon_sym_SQUOTE] = ACTIONS(1623), @@ -72766,10 +72336,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1621), [sym_real_literal] = ACTIONS(1623), }, - [412] = { - [sym_line_comment] = STATE(412), - [sym_doc_comment] = STATE(412), - [sym_block_comment] = STATE(412), + [409] = { + [sym_line_comment] = STATE(409), + [sym_doc_comment] = STATE(409), + [sym_block_comment] = STATE(409), [sym_ident] = ACTIONS(1625), [sym_integer_literal] = ACTIONS(1627), [anon_sym_SQUOTE] = ACTIONS(1627), @@ -72884,10 +72454,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1625), [sym_real_literal] = ACTIONS(1627), }, - [413] = { - [sym_line_comment] = STATE(413), - [sym_doc_comment] = STATE(413), - [sym_block_comment] = STATE(413), + [410] = { + [sym_line_comment] = STATE(410), + [sym_doc_comment] = STATE(410), + [sym_block_comment] = STATE(410), [sym_ident] = ACTIONS(1629), [sym_integer_literal] = ACTIONS(1631), [anon_sym_SQUOTE] = ACTIONS(1631), @@ -73002,10 +72572,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1629), [sym_real_literal] = ACTIONS(1631), }, - [414] = { - [sym_line_comment] = STATE(414), - [sym_doc_comment] = STATE(414), - [sym_block_comment] = STATE(414), + [411] = { + [sym_line_comment] = STATE(411), + [sym_doc_comment] = STATE(411), + [sym_block_comment] = STATE(411), [sym_ident] = ACTIONS(1633), [sym_integer_literal] = ACTIONS(1635), [anon_sym_SQUOTE] = ACTIONS(1635), @@ -73120,10 +72690,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1633), [sym_real_literal] = ACTIONS(1635), }, - [415] = { - [sym_line_comment] = STATE(415), - [sym_doc_comment] = STATE(415), - [sym_block_comment] = STATE(415), + [412] = { + [sym_line_comment] = STATE(412), + [sym_doc_comment] = STATE(412), + [sym_block_comment] = STATE(412), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_case] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_PIPE_RBRACE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), + }, + [413] = { + [sym_line_comment] = STATE(413), + [sym_doc_comment] = STATE(413), + [sym_block_comment] = STATE(413), [sym_ident] = ACTIONS(1637), [sym_integer_literal] = ACTIONS(1639), [anon_sym_SQUOTE] = ACTIONS(1639), @@ -73238,10 +72926,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1637), [sym_real_literal] = ACTIONS(1639), }, - [416] = { - [sym_line_comment] = STATE(416), - [sym_doc_comment] = STATE(416), - [sym_block_comment] = STATE(416), + [414] = { + [sym_line_comment] = STATE(414), + [sym_doc_comment] = STATE(414), + [sym_block_comment] = STATE(414), [sym_ident] = ACTIONS(1641), [sym_integer_literal] = ACTIONS(1643), [anon_sym_SQUOTE] = ACTIONS(1643), @@ -73356,10 +73044,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1641), [sym_real_literal] = ACTIONS(1643), }, - [417] = { - [sym_line_comment] = STATE(417), - [sym_doc_comment] = STATE(417), - [sym_block_comment] = STATE(417), + [415] = { + [sym_line_comment] = STATE(415), + [sym_doc_comment] = STATE(415), + [sym_block_comment] = STATE(415), [sym_ident] = ACTIONS(1645), [sym_integer_literal] = ACTIONS(1647), [anon_sym_SQUOTE] = ACTIONS(1647), @@ -73474,716 +73162,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1645), [sym_real_literal] = ACTIONS(1647), }, + [416] = { + [sym_line_comment] = STATE(416), + [sym_doc_comment] = STATE(416), + [sym_block_comment] = STATE(416), + [sym_else_part] = STATE(571), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARendif] = ACTIONS(1357), + [anon_sym_DOLLARelse] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, + [417] = { + [sym_line_comment] = STATE(417), + [sym_doc_comment] = STATE(417), + [sym_block_comment] = STATE(417), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_case] = ACTIONS(1651), + [anon_sym_default] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_PIPE_RBRACE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), + }, [418] = { [sym_line_comment] = STATE(418), [sym_doc_comment] = STATE(418), [sym_block_comment] = STATE(418), - [sym_ident] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1651), - [sym_bytes_literal] = ACTIONS(1651), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1649), - [sym_at_ident] = ACTIONS(1651), - [sym_hash_ident] = ACTIONS(1651), - [sym_type_ident] = ACTIONS(1651), - [sym_ct_type_ident] = ACTIONS(1651), - [sym_const_ident] = ACTIONS(1649), - [sym_builtin] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_tlocal] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_var] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_case] = ACTIONS(1649), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_nextcase] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_foreach] = ACTIONS(1649), - [anon_sym_foreach_r] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_DOLLARassert] = ACTIONS(1649), - [anon_sym_DOLLARerror] = ACTIONS(1649), - [anon_sym_DOLLARecho] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_DOLLARswitch] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_DOLLARforeach] = ACTIONS(1649), - [anon_sym_DOLLARalignof] = ACTIONS(1649), - [anon_sym_DOLLARextnameof] = ACTIONS(1649), - [anon_sym_DOLLARnameof] = ACTIONS(1649), - [anon_sym_DOLLARoffsetof] = ACTIONS(1649), - [anon_sym_DOLLARqnameof] = ACTIONS(1649), - [anon_sym_DOLLARvaconst] = ACTIONS(1649), - [anon_sym_DOLLARvaarg] = ACTIONS(1649), - [anon_sym_DOLLARvaref] = ACTIONS(1649), - [anon_sym_DOLLARvaexpr] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [anon_sym_DOLLARvacount] = ACTIONS(1649), - [anon_sym_DOLLAReval] = ACTIONS(1649), - [anon_sym_DOLLARis_const] = ACTIONS(1649), - [anon_sym_DOLLARsizeof] = ACTIONS(1649), - [anon_sym_DOLLARstringify] = ACTIONS(1649), - [anon_sym_DOLLARappend] = ACTIONS(1649), - [anon_sym_DOLLARconcat] = ACTIONS(1649), - [anon_sym_DOLLARdefined] = ACTIONS(1649), - [anon_sym_DOLLARembed] = ACTIONS(1649), - [anon_sym_DOLLARand] = ACTIONS(1649), - [anon_sym_DOLLARor] = ACTIONS(1649), - [anon_sym_DOLLARfeature] = ACTIONS(1649), - [anon_sym_DOLLARassignable] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_typeid] = ACTIONS(1649), - [anon_sym_LBRACE_PIPE] = ACTIONS(1651), - [anon_sym_PIPE_RBRACE] = ACTIONS(1651), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_ichar] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [anon_sym_ushort] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_ulong] = ACTIONS(1649), - [anon_sym_int128] = ACTIONS(1649), - [anon_sym_uint128] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_double] = ACTIONS(1649), - [anon_sym_float16] = ACTIONS(1649), - [anon_sym_bfloat16] = ACTIONS(1649), - [anon_sym_float128] = ACTIONS(1649), - [anon_sym_iptr] = ACTIONS(1649), - [anon_sym_uptr] = ACTIONS(1649), - [anon_sym_isz] = ACTIONS(1649), - [anon_sym_usz] = ACTIONS(1649), - [anon_sym_anyfault] = ACTIONS(1649), - [anon_sym_any] = ACTIONS(1649), - [anon_sym_DOLLARtypeof] = ACTIONS(1649), - [anon_sym_DOLLARtypefrom] = ACTIONS(1649), - [anon_sym_DOLLARevaltype] = ACTIONS(1649), - [anon_sym_DOLLARvatype] = ACTIONS(1649), - [sym_real_literal] = ACTIONS(1651), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARcase] = ACTIONS(1453), + [anon_sym_DOLLARdefault] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARendswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, [419] = { [sym_line_comment] = STATE(419), [sym_doc_comment] = STATE(419), [sym_block_comment] = STATE(419), - [sym_ident] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_bytes_literal] = ACTIONS(1655), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1653), - [sym_at_ident] = ACTIONS(1655), - [sym_hash_ident] = ACTIONS(1655), - [sym_type_ident] = ACTIONS(1655), - [sym_ct_type_ident] = ACTIONS(1655), - [sym_const_ident] = ACTIONS(1653), - [sym_builtin] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_tlocal] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_var] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_assert] = ACTIONS(1653), - [anon_sym_case] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_nextcase] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_foreach] = ACTIONS(1653), - [anon_sym_foreach_r] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_asm] = ACTIONS(1653), - [anon_sym_DOLLARassert] = ACTIONS(1653), - [anon_sym_DOLLARerror] = ACTIONS(1653), - [anon_sym_DOLLARecho] = ACTIONS(1653), - [anon_sym_DOLLARif] = ACTIONS(1653), - [anon_sym_DOLLARswitch] = ACTIONS(1653), - [anon_sym_DOLLARfor] = ACTIONS(1653), - [anon_sym_DOLLARforeach] = ACTIONS(1653), - [anon_sym_DOLLARalignof] = ACTIONS(1653), - [anon_sym_DOLLARextnameof] = ACTIONS(1653), - [anon_sym_DOLLARnameof] = ACTIONS(1653), - [anon_sym_DOLLARoffsetof] = ACTIONS(1653), - [anon_sym_DOLLARqnameof] = ACTIONS(1653), - [anon_sym_DOLLARvaconst] = ACTIONS(1653), - [anon_sym_DOLLARvaarg] = ACTIONS(1653), - [anon_sym_DOLLARvaref] = ACTIONS(1653), - [anon_sym_DOLLARvaexpr] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_DOLLARvacount] = ACTIONS(1653), - [anon_sym_DOLLAReval] = ACTIONS(1653), - [anon_sym_DOLLARis_const] = ACTIONS(1653), - [anon_sym_DOLLARsizeof] = ACTIONS(1653), - [anon_sym_DOLLARstringify] = ACTIONS(1653), - [anon_sym_DOLLARappend] = ACTIONS(1653), - [anon_sym_DOLLARconcat] = ACTIONS(1653), - [anon_sym_DOLLARdefined] = ACTIONS(1653), - [anon_sym_DOLLARembed] = ACTIONS(1653), - [anon_sym_DOLLARand] = ACTIONS(1653), - [anon_sym_DOLLARor] = ACTIONS(1653), - [anon_sym_DOLLARfeature] = ACTIONS(1653), - [anon_sym_DOLLARassignable] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_typeid] = ACTIONS(1653), - [anon_sym_LBRACE_PIPE] = ACTIONS(1655), - [anon_sym_PIPE_RBRACE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_ichar] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [anon_sym_ushort] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_ulong] = ACTIONS(1653), - [anon_sym_int128] = ACTIONS(1653), - [anon_sym_uint128] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_double] = ACTIONS(1653), - [anon_sym_float16] = ACTIONS(1653), - [anon_sym_bfloat16] = ACTIONS(1653), - [anon_sym_float128] = ACTIONS(1653), - [anon_sym_iptr] = ACTIONS(1653), - [anon_sym_uptr] = ACTIONS(1653), - [anon_sym_isz] = ACTIONS(1653), - [anon_sym_usz] = ACTIONS(1653), - [anon_sym_anyfault] = ACTIONS(1653), - [anon_sym_any] = ACTIONS(1653), - [anon_sym_DOLLARtypeof] = ACTIONS(1653), - [anon_sym_DOLLARtypefrom] = ACTIONS(1653), - [anon_sym_DOLLARevaltype] = ACTIONS(1653), - [anon_sym_DOLLARvatype] = ACTIONS(1653), - [sym_real_literal] = ACTIONS(1655), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARcase] = ACTIONS(1421), + [anon_sym_DOLLARdefault] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARendswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), }, [420] = { [sym_line_comment] = STATE(420), [sym_doc_comment] = STATE(420), [sym_block_comment] = STATE(420), - [sym_ident] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_bytes_literal] = ACTIONS(1659), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1657), - [sym_at_ident] = ACTIONS(1659), - [sym_hash_ident] = ACTIONS(1659), - [sym_type_ident] = ACTIONS(1659), - [sym_ct_type_ident] = ACTIONS(1659), - [sym_const_ident] = ACTIONS(1657), - [sym_builtin] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_tlocal] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_var] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_assert] = ACTIONS(1657), - [anon_sym_case] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1657), - [anon_sym_nextcase] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_foreach] = ACTIONS(1657), - [anon_sym_foreach_r] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1657), - [anon_sym_DOLLARassert] = ACTIONS(1657), - [anon_sym_DOLLARerror] = ACTIONS(1657), - [anon_sym_DOLLARecho] = ACTIONS(1657), - [anon_sym_DOLLARif] = ACTIONS(1657), - [anon_sym_DOLLARswitch] = ACTIONS(1657), - [anon_sym_DOLLARfor] = ACTIONS(1657), - [anon_sym_DOLLARforeach] = ACTIONS(1657), - [anon_sym_DOLLARalignof] = ACTIONS(1657), - [anon_sym_DOLLARextnameof] = ACTIONS(1657), - [anon_sym_DOLLARnameof] = ACTIONS(1657), - [anon_sym_DOLLARoffsetof] = ACTIONS(1657), - [anon_sym_DOLLARqnameof] = ACTIONS(1657), - [anon_sym_DOLLARvaconst] = ACTIONS(1657), - [anon_sym_DOLLARvaarg] = ACTIONS(1657), - [anon_sym_DOLLARvaref] = ACTIONS(1657), - [anon_sym_DOLLARvaexpr] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_DOLLARvacount] = ACTIONS(1657), - [anon_sym_DOLLAReval] = ACTIONS(1657), - [anon_sym_DOLLARis_const] = ACTIONS(1657), - [anon_sym_DOLLARsizeof] = ACTIONS(1657), - [anon_sym_DOLLARstringify] = ACTIONS(1657), - [anon_sym_DOLLARappend] = ACTIONS(1657), - [anon_sym_DOLLARconcat] = ACTIONS(1657), - [anon_sym_DOLLARdefined] = ACTIONS(1657), - [anon_sym_DOLLARembed] = ACTIONS(1657), - [anon_sym_DOLLARand] = ACTIONS(1657), - [anon_sym_DOLLARor] = ACTIONS(1657), - [anon_sym_DOLLARfeature] = ACTIONS(1657), - [anon_sym_DOLLARassignable] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_typeid] = ACTIONS(1657), - [anon_sym_LBRACE_PIPE] = ACTIONS(1659), - [anon_sym_PIPE_RBRACE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_ichar] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [anon_sym_ushort] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_ulong] = ACTIONS(1657), - [anon_sym_int128] = ACTIONS(1657), - [anon_sym_uint128] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_double] = ACTIONS(1657), - [anon_sym_float16] = ACTIONS(1657), - [anon_sym_bfloat16] = ACTIONS(1657), - [anon_sym_float128] = ACTIONS(1657), - [anon_sym_iptr] = ACTIONS(1657), - [anon_sym_uptr] = ACTIONS(1657), - [anon_sym_isz] = ACTIONS(1657), - [anon_sym_usz] = ACTIONS(1657), - [anon_sym_anyfault] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_DOLLARtypeof] = ACTIONS(1657), - [anon_sym_DOLLARtypefrom] = ACTIONS(1657), - [anon_sym_DOLLARevaltype] = ACTIONS(1657), - [anon_sym_DOLLARvatype] = ACTIONS(1657), - [sym_real_literal] = ACTIONS(1659), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARcase] = ACTIONS(1425), + [anon_sym_DOLLARdefault] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARendswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), }, [421] = { [sym_line_comment] = STATE(421), [sym_doc_comment] = STATE(421), [sym_block_comment] = STATE(421), - [sym_ident] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_bytes_literal] = ACTIONS(1515), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1513), - [sym_at_ident] = ACTIONS(1515), - [sym_hash_ident] = ACTIONS(1515), - [sym_type_ident] = ACTIONS(1515), - [sym_ct_type_ident] = ACTIONS(1515), - [sym_const_ident] = ACTIONS(1513), - [sym_builtin] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_tlocal] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_var] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_defer] = ACTIONS(1513), - [anon_sym_assert] = ACTIONS(1513), - [anon_sym_nextcase] = ACTIONS(1513), - [anon_sym_switch] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_foreach] = ACTIONS(1513), - [anon_sym_foreach_r] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_do] = ACTIONS(1513), - [anon_sym_int] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_asm] = ACTIONS(1513), - [anon_sym_DOLLARassert] = ACTIONS(1513), - [anon_sym_DOLLARerror] = ACTIONS(1513), - [anon_sym_DOLLARecho] = ACTIONS(1513), - [anon_sym_DOLLARif] = ACTIONS(1513), - [anon_sym_DOLLARcase] = ACTIONS(1513), - [anon_sym_DOLLARdefault] = ACTIONS(1513), - [anon_sym_DOLLARswitch] = ACTIONS(1513), - [anon_sym_DOLLARendswitch] = ACTIONS(1513), - [anon_sym_DOLLARfor] = ACTIONS(1513), - [anon_sym_DOLLARforeach] = ACTIONS(1513), - [anon_sym_DOLLARalignof] = ACTIONS(1513), - [anon_sym_DOLLARextnameof] = ACTIONS(1513), - [anon_sym_DOLLARnameof] = ACTIONS(1513), - [anon_sym_DOLLARoffsetof] = ACTIONS(1513), - [anon_sym_DOLLARqnameof] = ACTIONS(1513), - [anon_sym_DOLLARvaconst] = ACTIONS(1513), - [anon_sym_DOLLARvaarg] = ACTIONS(1513), - [anon_sym_DOLLARvaref] = ACTIONS(1513), - [anon_sym_DOLLARvaexpr] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_null] = ACTIONS(1513), - [anon_sym_DOLLARvacount] = ACTIONS(1513), - [anon_sym_DOLLAReval] = ACTIONS(1513), - [anon_sym_DOLLARis_const] = ACTIONS(1513), - [anon_sym_DOLLARsizeof] = ACTIONS(1513), - [anon_sym_DOLLARstringify] = ACTIONS(1513), - [anon_sym_DOLLARappend] = ACTIONS(1513), - [anon_sym_DOLLARconcat] = ACTIONS(1513), - [anon_sym_DOLLARdefined] = ACTIONS(1513), - [anon_sym_DOLLARembed] = ACTIONS(1513), - [anon_sym_DOLLARand] = ACTIONS(1513), - [anon_sym_DOLLARor] = ACTIONS(1513), - [anon_sym_DOLLARfeature] = ACTIONS(1513), - [anon_sym_DOLLARassignable] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_typeid] = ACTIONS(1513), - [anon_sym_LBRACE_PIPE] = ACTIONS(1515), - [anon_sym_void] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_ichar] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [anon_sym_ushort] = ACTIONS(1513), - [anon_sym_uint] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_ulong] = ACTIONS(1513), - [anon_sym_int128] = ACTIONS(1513), - [anon_sym_uint128] = ACTIONS(1513), - [anon_sym_float] = ACTIONS(1513), - [anon_sym_double] = ACTIONS(1513), - [anon_sym_float16] = ACTIONS(1513), - [anon_sym_bfloat16] = ACTIONS(1513), - [anon_sym_float128] = ACTIONS(1513), - [anon_sym_iptr] = ACTIONS(1513), - [anon_sym_uptr] = ACTIONS(1513), - [anon_sym_isz] = ACTIONS(1513), - [anon_sym_usz] = ACTIONS(1513), - [anon_sym_anyfault] = ACTIONS(1513), - [anon_sym_any] = ACTIONS(1513), - [anon_sym_DOLLARtypeof] = ACTIONS(1513), - [anon_sym_DOLLARtypefrom] = ACTIONS(1513), - [anon_sym_DOLLARevaltype] = ACTIONS(1513), - [anon_sym_DOLLARvatype] = ACTIONS(1513), - [sym_real_literal] = ACTIONS(1515), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARcase] = ACTIONS(1429), + [anon_sym_DOLLARdefault] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARendswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), }, [422] = { [sym_line_comment] = STATE(422), [sym_doc_comment] = STATE(422), [sym_block_comment] = STATE(422), - [sym_ident] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1371), - [sym_bytes_literal] = ACTIONS(1371), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1369), - [sym_at_ident] = ACTIONS(1371), - [sym_hash_ident] = ACTIONS(1371), - [sym_type_ident] = ACTIONS(1371), - [sym_ct_type_ident] = ACTIONS(1371), - [sym_const_ident] = ACTIONS(1369), - [sym_builtin] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_tlocal] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_fn] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_var] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_assert] = ACTIONS(1369), - [anon_sym_nextcase] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_foreach] = ACTIONS(1369), - [anon_sym_foreach_r] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym_DOLLARassert] = ACTIONS(1369), - [anon_sym_DOLLARerror] = ACTIONS(1369), - [anon_sym_DOLLARecho] = ACTIONS(1369), - [anon_sym_DOLLARif] = ACTIONS(1369), - [anon_sym_DOLLARendif] = ACTIONS(1369), - [anon_sym_DOLLARelse] = ACTIONS(1369), - [anon_sym_DOLLARswitch] = ACTIONS(1369), - [anon_sym_DOLLARfor] = ACTIONS(1369), - [anon_sym_DOLLARforeach] = ACTIONS(1369), - [anon_sym_DOLLARalignof] = ACTIONS(1369), - [anon_sym_DOLLARextnameof] = ACTIONS(1369), - [anon_sym_DOLLARnameof] = ACTIONS(1369), - [anon_sym_DOLLARoffsetof] = ACTIONS(1369), - [anon_sym_DOLLARqnameof] = ACTIONS(1369), - [anon_sym_DOLLARvaconst] = ACTIONS(1369), - [anon_sym_DOLLARvaarg] = ACTIONS(1369), - [anon_sym_DOLLARvaref] = ACTIONS(1369), - [anon_sym_DOLLARvaexpr] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_DOLLARvacount] = ACTIONS(1369), - [anon_sym_DOLLAReval] = ACTIONS(1369), - [anon_sym_DOLLARis_const] = ACTIONS(1369), - [anon_sym_DOLLARsizeof] = ACTIONS(1369), - [anon_sym_DOLLARstringify] = ACTIONS(1369), - [anon_sym_DOLLARappend] = ACTIONS(1369), - [anon_sym_DOLLARconcat] = ACTIONS(1369), - [anon_sym_DOLLARdefined] = ACTIONS(1369), - [anon_sym_DOLLARembed] = ACTIONS(1369), - [anon_sym_DOLLARand] = ACTIONS(1369), - [anon_sym_DOLLARor] = ACTIONS(1369), - [anon_sym_DOLLARfeature] = ACTIONS(1369), - [anon_sym_DOLLARassignable] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_typeid] = ACTIONS(1369), - [anon_sym_LBRACE_PIPE] = ACTIONS(1371), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_ichar] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_ushort] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_ulong] = ACTIONS(1369), - [anon_sym_int128] = ACTIONS(1369), - [anon_sym_uint128] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_double] = ACTIONS(1369), - [anon_sym_float16] = ACTIONS(1369), - [anon_sym_bfloat16] = ACTIONS(1369), - [anon_sym_float128] = ACTIONS(1369), - [anon_sym_iptr] = ACTIONS(1369), - [anon_sym_uptr] = ACTIONS(1369), - [anon_sym_isz] = ACTIONS(1369), - [anon_sym_usz] = ACTIONS(1369), - [anon_sym_anyfault] = ACTIONS(1369), - [anon_sym_any] = ACTIONS(1369), - [anon_sym_DOLLARtypeof] = ACTIONS(1369), - [anon_sym_DOLLARtypefrom] = ACTIONS(1369), - [anon_sym_DOLLARevaltype] = ACTIONS(1369), - [anon_sym_DOLLARvatype] = ACTIONS(1369), - [sym_real_literal] = ACTIONS(1371), - }, - [423] = { - [sym_line_comment] = STATE(423), - [sym_doc_comment] = STATE(423), - [sym_block_comment] = STATE(423), - [sym_ident] = ACTIONS(1373), - [sym_integer_literal] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [anon_sym_BQUOTE] = ACTIONS(1375), - [sym_bytes_literal] = ACTIONS(1375), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1373), - [sym_at_ident] = ACTIONS(1375), - [sym_hash_ident] = ACTIONS(1375), - [sym_type_ident] = ACTIONS(1375), - [sym_ct_type_ident] = ACTIONS(1375), - [sym_const_ident] = ACTIONS(1373), - [sym_builtin] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_tlocal] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_fn] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_var] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_defer] = ACTIONS(1373), - [anon_sym_assert] = ACTIONS(1373), - [anon_sym_nextcase] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_AMP_AMP] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_foreach] = ACTIONS(1373), - [anon_sym_foreach_r] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_int] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_asm] = ACTIONS(1373), - [anon_sym_DOLLARassert] = ACTIONS(1373), - [anon_sym_DOLLARerror] = ACTIONS(1373), - [anon_sym_DOLLARecho] = ACTIONS(1373), - [anon_sym_DOLLARif] = ACTIONS(1373), - [anon_sym_DOLLARendif] = ACTIONS(1373), - [anon_sym_DOLLARelse] = ACTIONS(1373), - [anon_sym_DOLLARswitch] = ACTIONS(1373), - [anon_sym_DOLLARfor] = ACTIONS(1373), - [anon_sym_DOLLARforeach] = ACTIONS(1373), - [anon_sym_DOLLARalignof] = ACTIONS(1373), - [anon_sym_DOLLARextnameof] = ACTIONS(1373), - [anon_sym_DOLLARnameof] = ACTIONS(1373), - [anon_sym_DOLLARoffsetof] = ACTIONS(1373), - [anon_sym_DOLLARqnameof] = ACTIONS(1373), - [anon_sym_DOLLARvaconst] = ACTIONS(1373), - [anon_sym_DOLLARvaarg] = ACTIONS(1373), - [anon_sym_DOLLARvaref] = ACTIONS(1373), - [anon_sym_DOLLARvaexpr] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), - [anon_sym_null] = ACTIONS(1373), - [anon_sym_DOLLARvacount] = ACTIONS(1373), - [anon_sym_DOLLAReval] = ACTIONS(1373), - [anon_sym_DOLLARis_const] = ACTIONS(1373), - [anon_sym_DOLLARsizeof] = ACTIONS(1373), - [anon_sym_DOLLARstringify] = ACTIONS(1373), - [anon_sym_DOLLARappend] = ACTIONS(1373), - [anon_sym_DOLLARconcat] = ACTIONS(1373), - [anon_sym_DOLLARdefined] = ACTIONS(1373), - [anon_sym_DOLLARembed] = ACTIONS(1373), - [anon_sym_DOLLARand] = ACTIONS(1373), - [anon_sym_DOLLARor] = ACTIONS(1373), - [anon_sym_DOLLARfeature] = ACTIONS(1373), - [anon_sym_DOLLARassignable] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_typeid] = ACTIONS(1373), - [anon_sym_LBRACE_PIPE] = ACTIONS(1375), - [anon_sym_void] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_ichar] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_ushort] = ACTIONS(1373), - [anon_sym_uint] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_ulong] = ACTIONS(1373), - [anon_sym_int128] = ACTIONS(1373), - [anon_sym_uint128] = ACTIONS(1373), - [anon_sym_float] = ACTIONS(1373), - [anon_sym_double] = ACTIONS(1373), - [anon_sym_float16] = ACTIONS(1373), - [anon_sym_bfloat16] = ACTIONS(1373), - [anon_sym_float128] = ACTIONS(1373), - [anon_sym_iptr] = ACTIONS(1373), - [anon_sym_uptr] = ACTIONS(1373), - [anon_sym_isz] = ACTIONS(1373), - [anon_sym_usz] = ACTIONS(1373), - [anon_sym_anyfault] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_DOLLARtypeof] = ACTIONS(1373), - [anon_sym_DOLLARtypefrom] = ACTIONS(1373), - [anon_sym_DOLLARevaltype] = ACTIONS(1373), - [anon_sym_DOLLARvatype] = ACTIONS(1373), - [sym_real_literal] = ACTIONS(1375), - }, - [424] = { - [sym_line_comment] = STATE(424), - [sym_doc_comment] = STATE(424), - [sym_block_comment] = STATE(424), - [sym_else_part] = STATE(626), [sym_ident] = ACTIONS(1363), [sym_integer_literal] = ACTIONS(1365), [anon_sym_SQUOTE] = ACTIONS(1365), @@ -74218,7 +73904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1363), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_if] = ACTIONS(1363), - [anon_sym_else] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1363), [anon_sym_for] = ACTIONS(1363), [anon_sym_foreach] = ACTIONS(1363), [anon_sym_foreach_r] = ACTIONS(1363), @@ -74233,9 +73919,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1363), [anon_sym_DOLLARecho] = ACTIONS(1363), [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARendif] = ACTIONS(1363), + [anon_sym_DOLLARelse] = ACTIONS(1363), [anon_sym_DOLLARswitch] = ACTIONS(1363), [anon_sym_DOLLARfor] = ACTIONS(1363), - [anon_sym_DOLLARendfor] = ACTIONS(1363), [anon_sym_DOLLARforeach] = ACTIONS(1363), [anon_sym_DOLLARalignof] = ACTIONS(1363), [anon_sym_DOLLARextnameof] = ACTIONS(1363), @@ -74296,2233 +73983,2233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1363), [sym_real_literal] = ACTIONS(1365), }, + [423] = { + [sym_line_comment] = STATE(423), + [sym_doc_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARcase] = ACTIONS(1593), + [anon_sym_DOLLARdefault] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARendswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), + }, + [424] = { + [sym_line_comment] = STATE(424), + [sym_doc_comment] = STATE(424), + [sym_block_comment] = STATE(424), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARcase] = ACTIONS(1441), + [anon_sym_DOLLARdefault] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARendswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), + }, [425] = { [sym_line_comment] = STATE(425), [sym_doc_comment] = STATE(425), [sym_block_comment] = STATE(425), - [sym_else_part] = STATE(807), - [sym_ident] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [sym_bytes_literal] = ACTIONS(1365), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1363), - [sym_at_ident] = ACTIONS(1365), - [sym_hash_ident] = ACTIONS(1365), - [sym_type_ident] = ACTIONS(1365), - [sym_ct_type_ident] = ACTIONS(1365), - [sym_const_ident] = ACTIONS(1363), - [sym_builtin] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_tlocal] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_var] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_defer] = ACTIONS(1363), - [anon_sym_assert] = ACTIONS(1363), - [anon_sym_nextcase] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_foreach] = ACTIONS(1363), - [anon_sym_foreach_r] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_int] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym_DOLLARassert] = ACTIONS(1363), - [anon_sym_DOLLARerror] = ACTIONS(1363), - [anon_sym_DOLLARecho] = ACTIONS(1363), - [anon_sym_DOLLARif] = ACTIONS(1363), - [anon_sym_DOLLARswitch] = ACTIONS(1363), - [anon_sym_DOLLARfor] = ACTIONS(1363), - [anon_sym_DOLLARforeach] = ACTIONS(1363), - [anon_sym_DOLLARendforeach] = ACTIONS(1363), - [anon_sym_DOLLARalignof] = ACTIONS(1363), - [anon_sym_DOLLARextnameof] = ACTIONS(1363), - [anon_sym_DOLLARnameof] = ACTIONS(1363), - [anon_sym_DOLLARoffsetof] = ACTIONS(1363), - [anon_sym_DOLLARqnameof] = ACTIONS(1363), - [anon_sym_DOLLARvaconst] = ACTIONS(1363), - [anon_sym_DOLLARvaarg] = ACTIONS(1363), - [anon_sym_DOLLARvaref] = ACTIONS(1363), - [anon_sym_DOLLARvaexpr] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_null] = ACTIONS(1363), - [anon_sym_DOLLARvacount] = ACTIONS(1363), - [anon_sym_DOLLAReval] = ACTIONS(1363), - [anon_sym_DOLLARis_const] = ACTIONS(1363), - [anon_sym_DOLLARsizeof] = ACTIONS(1363), - [anon_sym_DOLLARstringify] = ACTIONS(1363), - [anon_sym_DOLLARappend] = ACTIONS(1363), - [anon_sym_DOLLARconcat] = ACTIONS(1363), - [anon_sym_DOLLARdefined] = ACTIONS(1363), - [anon_sym_DOLLARembed] = ACTIONS(1363), - [anon_sym_DOLLARand] = ACTIONS(1363), - [anon_sym_DOLLARor] = ACTIONS(1363), - [anon_sym_DOLLARfeature] = ACTIONS(1363), - [anon_sym_DOLLARassignable] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_typeid] = ACTIONS(1363), - [anon_sym_LBRACE_PIPE] = ACTIONS(1365), - [anon_sym_void] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_ichar] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_ushort] = ACTIONS(1363), - [anon_sym_uint] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_ulong] = ACTIONS(1363), - [anon_sym_int128] = ACTIONS(1363), - [anon_sym_uint128] = ACTIONS(1363), - [anon_sym_float] = ACTIONS(1363), - [anon_sym_double] = ACTIONS(1363), - [anon_sym_float16] = ACTIONS(1363), - [anon_sym_bfloat16] = ACTIONS(1363), - [anon_sym_float128] = ACTIONS(1363), - [anon_sym_iptr] = ACTIONS(1363), - [anon_sym_uptr] = ACTIONS(1363), - [anon_sym_isz] = ACTIONS(1363), - [anon_sym_usz] = ACTIONS(1363), - [anon_sym_anyfault] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1363), - [anon_sym_DOLLARtypeof] = ACTIONS(1363), - [anon_sym_DOLLARtypefrom] = ACTIONS(1363), - [anon_sym_DOLLARevaltype] = ACTIONS(1363), - [anon_sym_DOLLARvatype] = ACTIONS(1363), - [sym_real_literal] = ACTIONS(1365), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARcase] = ACTIONS(1445), + [anon_sym_DOLLARdefault] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARendswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, [426] = { [sym_line_comment] = STATE(426), [sym_doc_comment] = STATE(426), [sym_block_comment] = STATE(426), - [sym_else_part] = STATE(770), - [sym_ident] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [sym_bytes_literal] = ACTIONS(1365), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1363), - [sym_at_ident] = ACTIONS(1365), - [sym_hash_ident] = ACTIONS(1365), - [sym_type_ident] = ACTIONS(1365), - [sym_ct_type_ident] = ACTIONS(1365), - [sym_const_ident] = ACTIONS(1363), - [sym_builtin] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_tlocal] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_var] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_defer] = ACTIONS(1363), - [anon_sym_assert] = ACTIONS(1363), - [anon_sym_nextcase] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_foreach] = ACTIONS(1363), - [anon_sym_foreach_r] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_int] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym_DOLLARassert] = ACTIONS(1363), - [anon_sym_DOLLARerror] = ACTIONS(1363), - [anon_sym_DOLLARecho] = ACTIONS(1363), - [anon_sym_DOLLARif] = ACTIONS(1363), - [anon_sym_DOLLARendif] = ACTIONS(1363), - [anon_sym_DOLLARswitch] = ACTIONS(1363), - [anon_sym_DOLLARfor] = ACTIONS(1363), - [anon_sym_DOLLARforeach] = ACTIONS(1363), - [anon_sym_DOLLARalignof] = ACTIONS(1363), - [anon_sym_DOLLARextnameof] = ACTIONS(1363), - [anon_sym_DOLLARnameof] = ACTIONS(1363), - [anon_sym_DOLLARoffsetof] = ACTIONS(1363), - [anon_sym_DOLLARqnameof] = ACTIONS(1363), - [anon_sym_DOLLARvaconst] = ACTIONS(1363), - [anon_sym_DOLLARvaarg] = ACTIONS(1363), - [anon_sym_DOLLARvaref] = ACTIONS(1363), - [anon_sym_DOLLARvaexpr] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_null] = ACTIONS(1363), - [anon_sym_DOLLARvacount] = ACTIONS(1363), - [anon_sym_DOLLAReval] = ACTIONS(1363), - [anon_sym_DOLLARis_const] = ACTIONS(1363), - [anon_sym_DOLLARsizeof] = ACTIONS(1363), - [anon_sym_DOLLARstringify] = ACTIONS(1363), - [anon_sym_DOLLARappend] = ACTIONS(1363), - [anon_sym_DOLLARconcat] = ACTIONS(1363), - [anon_sym_DOLLARdefined] = ACTIONS(1363), - [anon_sym_DOLLARembed] = ACTIONS(1363), - [anon_sym_DOLLARand] = ACTIONS(1363), - [anon_sym_DOLLARor] = ACTIONS(1363), - [anon_sym_DOLLARfeature] = ACTIONS(1363), - [anon_sym_DOLLARassignable] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_typeid] = ACTIONS(1363), - [anon_sym_LBRACE_PIPE] = ACTIONS(1365), - [anon_sym_void] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_ichar] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_ushort] = ACTIONS(1363), - [anon_sym_uint] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_ulong] = ACTIONS(1363), - [anon_sym_int128] = ACTIONS(1363), - [anon_sym_uint128] = ACTIONS(1363), - [anon_sym_float] = ACTIONS(1363), - [anon_sym_double] = ACTIONS(1363), - [anon_sym_float16] = ACTIONS(1363), - [anon_sym_bfloat16] = ACTIONS(1363), - [anon_sym_float128] = ACTIONS(1363), - [anon_sym_iptr] = ACTIONS(1363), - [anon_sym_uptr] = ACTIONS(1363), - [anon_sym_isz] = ACTIONS(1363), - [anon_sym_usz] = ACTIONS(1363), - [anon_sym_anyfault] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1363), - [anon_sym_DOLLARtypeof] = ACTIONS(1363), - [anon_sym_DOLLARtypefrom] = ACTIONS(1363), - [anon_sym_DOLLARevaltype] = ACTIONS(1363), - [anon_sym_DOLLARvatype] = ACTIONS(1363), - [sym_real_literal] = ACTIONS(1365), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARcase] = ACTIONS(1449), + [anon_sym_DOLLARdefault] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARendswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, [427] = { [sym_line_comment] = STATE(427), [sym_doc_comment] = STATE(427), [sym_block_comment] = STATE(427), - [sym_ident] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1619), - [anon_sym_SQUOTE] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [anon_sym_BQUOTE] = ACTIONS(1619), - [sym_bytes_literal] = ACTIONS(1619), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1617), - [sym_at_ident] = ACTIONS(1619), - [sym_hash_ident] = ACTIONS(1619), - [sym_type_ident] = ACTIONS(1619), - [sym_ct_type_ident] = ACTIONS(1619), - [sym_const_ident] = ACTIONS(1617), - [sym_builtin] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_tlocal] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_var] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_defer] = ACTIONS(1617), - [anon_sym_assert] = ACTIONS(1617), - [anon_sym_nextcase] = ACTIONS(1617), - [anon_sym_switch] = ACTIONS(1617), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_foreach] = ACTIONS(1617), - [anon_sym_foreach_r] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_do] = ACTIONS(1617), - [anon_sym_int] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1617), - [anon_sym_DOLLARassert] = ACTIONS(1617), - [anon_sym_DOLLARerror] = ACTIONS(1617), - [anon_sym_DOLLARecho] = ACTIONS(1617), - [anon_sym_DOLLARif] = ACTIONS(1617), - [anon_sym_DOLLARcase] = ACTIONS(1617), - [anon_sym_DOLLARdefault] = ACTIONS(1617), - [anon_sym_DOLLARswitch] = ACTIONS(1617), - [anon_sym_DOLLARendswitch] = ACTIONS(1617), - [anon_sym_DOLLARfor] = ACTIONS(1617), - [anon_sym_DOLLARforeach] = ACTIONS(1617), - [anon_sym_DOLLARalignof] = ACTIONS(1617), - [anon_sym_DOLLARextnameof] = ACTIONS(1617), - [anon_sym_DOLLARnameof] = ACTIONS(1617), - [anon_sym_DOLLARoffsetof] = ACTIONS(1617), - [anon_sym_DOLLARqnameof] = ACTIONS(1617), - [anon_sym_DOLLARvaconst] = ACTIONS(1617), - [anon_sym_DOLLARvaarg] = ACTIONS(1617), - [anon_sym_DOLLARvaref] = ACTIONS(1617), - [anon_sym_DOLLARvaexpr] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [anon_sym_DOLLARvacount] = ACTIONS(1617), - [anon_sym_DOLLAReval] = ACTIONS(1617), - [anon_sym_DOLLARis_const] = ACTIONS(1617), - [anon_sym_DOLLARsizeof] = ACTIONS(1617), - [anon_sym_DOLLARstringify] = ACTIONS(1617), - [anon_sym_DOLLARappend] = ACTIONS(1617), - [anon_sym_DOLLARconcat] = ACTIONS(1617), - [anon_sym_DOLLARdefined] = ACTIONS(1617), - [anon_sym_DOLLARembed] = ACTIONS(1617), - [anon_sym_DOLLARand] = ACTIONS(1617), - [anon_sym_DOLLARor] = ACTIONS(1617), - [anon_sym_DOLLARfeature] = ACTIONS(1617), - [anon_sym_DOLLARassignable] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_TILDE] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1619), - [anon_sym_DASH_DASH] = ACTIONS(1619), - [anon_sym_typeid] = ACTIONS(1617), - [anon_sym_LBRACE_PIPE] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_char] = ACTIONS(1617), - [anon_sym_ichar] = ACTIONS(1617), - [anon_sym_short] = ACTIONS(1617), - [anon_sym_ushort] = ACTIONS(1617), - [anon_sym_uint] = ACTIONS(1617), - [anon_sym_long] = ACTIONS(1617), - [anon_sym_ulong] = ACTIONS(1617), - [anon_sym_int128] = ACTIONS(1617), - [anon_sym_uint128] = ACTIONS(1617), - [anon_sym_float] = ACTIONS(1617), - [anon_sym_double] = ACTIONS(1617), - [anon_sym_float16] = ACTIONS(1617), - [anon_sym_bfloat16] = ACTIONS(1617), - [anon_sym_float128] = ACTIONS(1617), - [anon_sym_iptr] = ACTIONS(1617), - [anon_sym_uptr] = ACTIONS(1617), - [anon_sym_isz] = ACTIONS(1617), - [anon_sym_usz] = ACTIONS(1617), - [anon_sym_anyfault] = ACTIONS(1617), - [anon_sym_any] = ACTIONS(1617), - [anon_sym_DOLLARtypeof] = ACTIONS(1617), - [anon_sym_DOLLARtypefrom] = ACTIONS(1617), - [anon_sym_DOLLARevaltype] = ACTIONS(1617), - [anon_sym_DOLLARvatype] = ACTIONS(1617), - [sym_real_literal] = ACTIONS(1619), - }, - [428] = { - [sym_line_comment] = STATE(428), - [sym_doc_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARcase] = ACTIONS(1499), - [anon_sym_DOLLARdefault] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARendswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARappend] = ACTIONS(1499), - [anon_sym_DOLLARconcat] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), - }, - [429] = { - [sym_line_comment] = STATE(429), - [sym_doc_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [sym_ident] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_bytes_literal] = ACTIONS(1429), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1427), - [sym_at_ident] = ACTIONS(1429), - [sym_hash_ident] = ACTIONS(1429), - [sym_type_ident] = ACTIONS(1429), - [sym_ct_type_ident] = ACTIONS(1429), - [sym_const_ident] = ACTIONS(1427), - [sym_builtin] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_tlocal] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_var] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_defer] = ACTIONS(1427), - [anon_sym_assert] = ACTIONS(1427), - [anon_sym_nextcase] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_foreach] = ACTIONS(1427), - [anon_sym_foreach_r] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_int] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1427), - [anon_sym_DOLLARassert] = ACTIONS(1427), - [anon_sym_DOLLARerror] = ACTIONS(1427), - [anon_sym_DOLLARecho] = ACTIONS(1427), - [anon_sym_DOLLARif] = ACTIONS(1427), - [anon_sym_DOLLARcase] = ACTIONS(1427), - [anon_sym_DOLLARdefault] = ACTIONS(1427), - [anon_sym_DOLLARswitch] = ACTIONS(1427), - [anon_sym_DOLLARendswitch] = ACTIONS(1427), - [anon_sym_DOLLARfor] = ACTIONS(1427), - [anon_sym_DOLLARforeach] = ACTIONS(1427), - [anon_sym_DOLLARalignof] = ACTIONS(1427), - [anon_sym_DOLLARextnameof] = ACTIONS(1427), - [anon_sym_DOLLARnameof] = ACTIONS(1427), - [anon_sym_DOLLARoffsetof] = ACTIONS(1427), - [anon_sym_DOLLARqnameof] = ACTIONS(1427), - [anon_sym_DOLLARvaconst] = ACTIONS(1427), - [anon_sym_DOLLARvaarg] = ACTIONS(1427), - [anon_sym_DOLLARvaref] = ACTIONS(1427), - [anon_sym_DOLLARvaexpr] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [anon_sym_DOLLARvacount] = ACTIONS(1427), - [anon_sym_DOLLAReval] = ACTIONS(1427), - [anon_sym_DOLLARis_const] = ACTIONS(1427), - [anon_sym_DOLLARsizeof] = ACTIONS(1427), - [anon_sym_DOLLARstringify] = ACTIONS(1427), - [anon_sym_DOLLARappend] = ACTIONS(1427), - [anon_sym_DOLLARconcat] = ACTIONS(1427), - [anon_sym_DOLLARdefined] = ACTIONS(1427), - [anon_sym_DOLLARembed] = ACTIONS(1427), - [anon_sym_DOLLARand] = ACTIONS(1427), - [anon_sym_DOLLARor] = ACTIONS(1427), - [anon_sym_DOLLARfeature] = ACTIONS(1427), - [anon_sym_DOLLARassignable] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_typeid] = ACTIONS(1427), - [anon_sym_LBRACE_PIPE] = ACTIONS(1429), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_bool] = ACTIONS(1427), - [anon_sym_char] = ACTIONS(1427), - [anon_sym_ichar] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [anon_sym_ushort] = ACTIONS(1427), - [anon_sym_uint] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_ulong] = ACTIONS(1427), - [anon_sym_int128] = ACTIONS(1427), - [anon_sym_uint128] = ACTIONS(1427), - [anon_sym_float] = ACTIONS(1427), - [anon_sym_double] = ACTIONS(1427), - [anon_sym_float16] = ACTIONS(1427), - [anon_sym_bfloat16] = ACTIONS(1427), - [anon_sym_float128] = ACTIONS(1427), - [anon_sym_iptr] = ACTIONS(1427), - [anon_sym_uptr] = ACTIONS(1427), - [anon_sym_isz] = ACTIONS(1427), - [anon_sym_usz] = ACTIONS(1427), - [anon_sym_anyfault] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_DOLLARtypeof] = ACTIONS(1427), - [anon_sym_DOLLARtypefrom] = ACTIONS(1427), - [anon_sym_DOLLARevaltype] = ACTIONS(1427), - [anon_sym_DOLLARvatype] = ACTIONS(1427), - [sym_real_literal] = ACTIONS(1429), - }, - [430] = { - [sym_line_comment] = STATE(430), - [sym_doc_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [sym_ident] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_BQUOTE] = ACTIONS(1449), - [sym_bytes_literal] = ACTIONS(1449), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1447), - [sym_at_ident] = ACTIONS(1449), - [sym_hash_ident] = ACTIONS(1449), - [sym_type_ident] = ACTIONS(1449), - [sym_ct_type_ident] = ACTIONS(1449), - [sym_const_ident] = ACTIONS(1447), - [sym_builtin] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_tlocal] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_var] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_defer] = ACTIONS(1447), - [anon_sym_assert] = ACTIONS(1447), - [anon_sym_nextcase] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_foreach] = ACTIONS(1447), - [anon_sym_foreach_r] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_int] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_asm] = ACTIONS(1447), - [anon_sym_DOLLARassert] = ACTIONS(1447), - [anon_sym_DOLLARerror] = ACTIONS(1447), - [anon_sym_DOLLARecho] = ACTIONS(1447), - [anon_sym_DOLLARif] = ACTIONS(1447), - [anon_sym_DOLLARcase] = ACTIONS(1447), - [anon_sym_DOLLARdefault] = ACTIONS(1447), - [anon_sym_DOLLARswitch] = ACTIONS(1447), - [anon_sym_DOLLARendswitch] = ACTIONS(1447), - [anon_sym_DOLLARfor] = ACTIONS(1447), - [anon_sym_DOLLARforeach] = ACTIONS(1447), - [anon_sym_DOLLARalignof] = ACTIONS(1447), - [anon_sym_DOLLARextnameof] = ACTIONS(1447), - [anon_sym_DOLLARnameof] = ACTIONS(1447), - [anon_sym_DOLLARoffsetof] = ACTIONS(1447), - [anon_sym_DOLLARqnameof] = ACTIONS(1447), - [anon_sym_DOLLARvaconst] = ACTIONS(1447), - [anon_sym_DOLLARvaarg] = ACTIONS(1447), - [anon_sym_DOLLARvaref] = ACTIONS(1447), - [anon_sym_DOLLARvaexpr] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_DOLLARvacount] = ACTIONS(1447), - [anon_sym_DOLLAReval] = ACTIONS(1447), - [anon_sym_DOLLARis_const] = ACTIONS(1447), - [anon_sym_DOLLARsizeof] = ACTIONS(1447), - [anon_sym_DOLLARstringify] = ACTIONS(1447), - [anon_sym_DOLLARappend] = ACTIONS(1447), - [anon_sym_DOLLARconcat] = ACTIONS(1447), - [anon_sym_DOLLARdefined] = ACTIONS(1447), - [anon_sym_DOLLARembed] = ACTIONS(1447), - [anon_sym_DOLLARand] = ACTIONS(1447), - [anon_sym_DOLLARor] = ACTIONS(1447), - [anon_sym_DOLLARfeature] = ACTIONS(1447), - [anon_sym_DOLLARassignable] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_typeid] = ACTIONS(1447), - [anon_sym_LBRACE_PIPE] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_ichar] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [anon_sym_ushort] = ACTIONS(1447), - [anon_sym_uint] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_ulong] = ACTIONS(1447), - [anon_sym_int128] = ACTIONS(1447), - [anon_sym_uint128] = ACTIONS(1447), - [anon_sym_float] = ACTIONS(1447), - [anon_sym_double] = ACTIONS(1447), - [anon_sym_float16] = ACTIONS(1447), - [anon_sym_bfloat16] = ACTIONS(1447), - [anon_sym_float128] = ACTIONS(1447), - [anon_sym_iptr] = ACTIONS(1447), - [anon_sym_uptr] = ACTIONS(1447), - [anon_sym_isz] = ACTIONS(1447), - [anon_sym_usz] = ACTIONS(1447), - [anon_sym_anyfault] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_DOLLARtypeof] = ACTIONS(1447), - [anon_sym_DOLLARtypefrom] = ACTIONS(1447), - [anon_sym_DOLLARevaltype] = ACTIONS(1447), - [anon_sym_DOLLARvatype] = ACTIONS(1447), - [sym_real_literal] = ACTIONS(1449), - }, - [431] = { - [sym_line_comment] = STATE(431), - [sym_doc_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARcase] = ACTIONS(1479), - [anon_sym_DOLLARdefault] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARendswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARappend] = ACTIONS(1479), - [anon_sym_DOLLARconcat] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), - }, - [432] = { - [sym_line_comment] = STATE(432), - [sym_doc_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [sym_ident] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_bytes_literal] = ACTIONS(1659), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1657), - [sym_at_ident] = ACTIONS(1659), - [sym_hash_ident] = ACTIONS(1659), - [sym_type_ident] = ACTIONS(1659), - [sym_ct_type_ident] = ACTIONS(1659), - [sym_const_ident] = ACTIONS(1657), - [sym_builtin] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_tlocal] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_var] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_assert] = ACTIONS(1657), - [anon_sym_nextcase] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_foreach] = ACTIONS(1657), - [anon_sym_foreach_r] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1657), - [anon_sym_DOLLARassert] = ACTIONS(1657), - [anon_sym_DOLLARerror] = ACTIONS(1657), - [anon_sym_DOLLARecho] = ACTIONS(1657), - [anon_sym_DOLLARif] = ACTIONS(1657), - [anon_sym_DOLLARcase] = ACTIONS(1657), - [anon_sym_DOLLARdefault] = ACTIONS(1657), - [anon_sym_DOLLARswitch] = ACTIONS(1657), - [anon_sym_DOLLARendswitch] = ACTIONS(1657), - [anon_sym_DOLLARfor] = ACTIONS(1657), - [anon_sym_DOLLARforeach] = ACTIONS(1657), - [anon_sym_DOLLARalignof] = ACTIONS(1657), - [anon_sym_DOLLARextnameof] = ACTIONS(1657), - [anon_sym_DOLLARnameof] = ACTIONS(1657), - [anon_sym_DOLLARoffsetof] = ACTIONS(1657), - [anon_sym_DOLLARqnameof] = ACTIONS(1657), - [anon_sym_DOLLARvaconst] = ACTIONS(1657), - [anon_sym_DOLLARvaarg] = ACTIONS(1657), - [anon_sym_DOLLARvaref] = ACTIONS(1657), - [anon_sym_DOLLARvaexpr] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_DOLLARvacount] = ACTIONS(1657), - [anon_sym_DOLLAReval] = ACTIONS(1657), - [anon_sym_DOLLARis_const] = ACTIONS(1657), - [anon_sym_DOLLARsizeof] = ACTIONS(1657), - [anon_sym_DOLLARstringify] = ACTIONS(1657), - [anon_sym_DOLLARappend] = ACTIONS(1657), - [anon_sym_DOLLARconcat] = ACTIONS(1657), - [anon_sym_DOLLARdefined] = ACTIONS(1657), - [anon_sym_DOLLARembed] = ACTIONS(1657), - [anon_sym_DOLLARand] = ACTIONS(1657), - [anon_sym_DOLLARor] = ACTIONS(1657), - [anon_sym_DOLLARfeature] = ACTIONS(1657), - [anon_sym_DOLLARassignable] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_typeid] = ACTIONS(1657), - [anon_sym_LBRACE_PIPE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_ichar] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [anon_sym_ushort] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_ulong] = ACTIONS(1657), - [anon_sym_int128] = ACTIONS(1657), - [anon_sym_uint128] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_double] = ACTIONS(1657), - [anon_sym_float16] = ACTIONS(1657), - [anon_sym_bfloat16] = ACTIONS(1657), - [anon_sym_float128] = ACTIONS(1657), - [anon_sym_iptr] = ACTIONS(1657), - [anon_sym_uptr] = ACTIONS(1657), - [anon_sym_isz] = ACTIONS(1657), - [anon_sym_usz] = ACTIONS(1657), - [anon_sym_anyfault] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_DOLLARtypeof] = ACTIONS(1657), - [anon_sym_DOLLARtypefrom] = ACTIONS(1657), - [anon_sym_DOLLARevaltype] = ACTIONS(1657), - [anon_sym_DOLLARvatype] = ACTIONS(1657), - [sym_real_literal] = ACTIONS(1659), - }, - [433] = { - [sym_line_comment] = STATE(433), - [sym_doc_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [sym_ident] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [anon_sym_BQUOTE] = ACTIONS(1555), - [sym_bytes_literal] = ACTIONS(1555), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1553), - [sym_at_ident] = ACTIONS(1555), - [sym_hash_ident] = ACTIONS(1555), - [sym_type_ident] = ACTIONS(1555), - [sym_ct_type_ident] = ACTIONS(1555), - [sym_const_ident] = ACTIONS(1553), - [sym_builtin] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_tlocal] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_var] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_defer] = ACTIONS(1553), - [anon_sym_assert] = ACTIONS(1553), - [anon_sym_nextcase] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_foreach] = ACTIONS(1553), - [anon_sym_foreach_r] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_int] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_asm] = ACTIONS(1553), - [anon_sym_DOLLARassert] = ACTIONS(1553), - [anon_sym_DOLLARerror] = ACTIONS(1553), - [anon_sym_DOLLARecho] = ACTIONS(1553), - [anon_sym_DOLLARif] = ACTIONS(1553), - [anon_sym_DOLLARcase] = ACTIONS(1553), - [anon_sym_DOLLARdefault] = ACTIONS(1553), - [anon_sym_DOLLARswitch] = ACTIONS(1553), - [anon_sym_DOLLARendswitch] = ACTIONS(1553), - [anon_sym_DOLLARfor] = ACTIONS(1553), - [anon_sym_DOLLARforeach] = ACTIONS(1553), - [anon_sym_DOLLARalignof] = ACTIONS(1553), - [anon_sym_DOLLARextnameof] = ACTIONS(1553), - [anon_sym_DOLLARnameof] = ACTIONS(1553), - [anon_sym_DOLLARoffsetof] = ACTIONS(1553), - [anon_sym_DOLLARqnameof] = ACTIONS(1553), - [anon_sym_DOLLARvaconst] = ACTIONS(1553), - [anon_sym_DOLLARvaarg] = ACTIONS(1553), - [anon_sym_DOLLARvaref] = ACTIONS(1553), - [anon_sym_DOLLARvaexpr] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_null] = ACTIONS(1553), - [anon_sym_DOLLARvacount] = ACTIONS(1553), - [anon_sym_DOLLAReval] = ACTIONS(1553), - [anon_sym_DOLLARis_const] = ACTIONS(1553), - [anon_sym_DOLLARsizeof] = ACTIONS(1553), - [anon_sym_DOLLARstringify] = ACTIONS(1553), - [anon_sym_DOLLARappend] = ACTIONS(1553), - [anon_sym_DOLLARconcat] = ACTIONS(1553), - [anon_sym_DOLLARdefined] = ACTIONS(1553), - [anon_sym_DOLLARembed] = ACTIONS(1553), - [anon_sym_DOLLARand] = ACTIONS(1553), - [anon_sym_DOLLARor] = ACTIONS(1553), - [anon_sym_DOLLARfeature] = ACTIONS(1553), - [anon_sym_DOLLARassignable] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_typeid] = ACTIONS(1553), - [anon_sym_LBRACE_PIPE] = ACTIONS(1555), - [anon_sym_void] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [anon_sym_ichar] = ACTIONS(1553), - [anon_sym_short] = ACTIONS(1553), - [anon_sym_ushort] = ACTIONS(1553), - [anon_sym_uint] = ACTIONS(1553), - [anon_sym_long] = ACTIONS(1553), - [anon_sym_ulong] = ACTIONS(1553), - [anon_sym_int128] = ACTIONS(1553), - [anon_sym_uint128] = ACTIONS(1553), - [anon_sym_float] = ACTIONS(1553), - [anon_sym_double] = ACTIONS(1553), - [anon_sym_float16] = ACTIONS(1553), - [anon_sym_bfloat16] = ACTIONS(1553), - [anon_sym_float128] = ACTIONS(1553), - [anon_sym_iptr] = ACTIONS(1553), - [anon_sym_uptr] = ACTIONS(1553), - [anon_sym_isz] = ACTIONS(1553), - [anon_sym_usz] = ACTIONS(1553), - [anon_sym_anyfault] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_DOLLARtypeof] = ACTIONS(1553), - [anon_sym_DOLLARtypefrom] = ACTIONS(1553), - [anon_sym_DOLLARevaltype] = ACTIONS(1553), - [anon_sym_DOLLARvatype] = ACTIONS(1553), - [sym_real_literal] = ACTIONS(1555), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARcase] = ACTIONS(1633), + [anon_sym_DOLLARdefault] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARendswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), + }, + [428] = { + [sym_line_comment] = STATE(428), + [sym_doc_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARcase] = ACTIONS(1457), + [anon_sym_DOLLARdefault] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARendswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), + }, + [429] = { + [sym_line_comment] = STATE(429), + [sym_doc_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARcase] = ACTIONS(1461), + [anon_sym_DOLLARdefault] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARendswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), + }, + [430] = { + [sym_line_comment] = STATE(430), + [sym_doc_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARcase] = ACTIONS(1473), + [anon_sym_DOLLARdefault] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARendswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), + }, + [431] = { + [sym_line_comment] = STATE(431), + [sym_doc_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [sym_else_part] = STATE(621), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARendfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, + [432] = { + [sym_line_comment] = STATE(432), + [sym_doc_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARcase] = ACTIONS(1477), + [anon_sym_DOLLARdefault] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARendswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), + }, + [433] = { + [sym_line_comment] = STATE(433), + [sym_doc_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARcase] = ACTIONS(1481), + [anon_sym_DOLLARdefault] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARendswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, [434] = { [sym_line_comment] = STATE(434), [sym_doc_comment] = STATE(434), [sym_block_comment] = STATE(434), - [sym_ident] = ACTIONS(1565), - [sym_integer_literal] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [anon_sym_BQUOTE] = ACTIONS(1567), - [sym_bytes_literal] = ACTIONS(1567), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1565), - [sym_at_ident] = ACTIONS(1567), - [sym_hash_ident] = ACTIONS(1567), - [sym_type_ident] = ACTIONS(1567), - [sym_ct_type_ident] = ACTIONS(1567), - [sym_const_ident] = ACTIONS(1565), - [sym_builtin] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_tlocal] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_fn] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_var] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_defer] = ACTIONS(1565), - [anon_sym_assert] = ACTIONS(1565), - [anon_sym_nextcase] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_foreach] = ACTIONS(1565), - [anon_sym_foreach_r] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_int] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_asm] = ACTIONS(1565), - [anon_sym_DOLLARassert] = ACTIONS(1565), - [anon_sym_DOLLARerror] = ACTIONS(1565), - [anon_sym_DOLLARecho] = ACTIONS(1565), - [anon_sym_DOLLARif] = ACTIONS(1565), - [anon_sym_DOLLARcase] = ACTIONS(1565), - [anon_sym_DOLLARdefault] = ACTIONS(1565), - [anon_sym_DOLLARswitch] = ACTIONS(1565), - [anon_sym_DOLLARendswitch] = ACTIONS(1565), - [anon_sym_DOLLARfor] = ACTIONS(1565), - [anon_sym_DOLLARforeach] = ACTIONS(1565), - [anon_sym_DOLLARalignof] = ACTIONS(1565), - [anon_sym_DOLLARextnameof] = ACTIONS(1565), - [anon_sym_DOLLARnameof] = ACTIONS(1565), - [anon_sym_DOLLARoffsetof] = ACTIONS(1565), - [anon_sym_DOLLARqnameof] = ACTIONS(1565), - [anon_sym_DOLLARvaconst] = ACTIONS(1565), - [anon_sym_DOLLARvaarg] = ACTIONS(1565), - [anon_sym_DOLLARvaref] = ACTIONS(1565), - [anon_sym_DOLLARvaexpr] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1565), - [anon_sym_false] = ACTIONS(1565), - [anon_sym_null] = ACTIONS(1565), - [anon_sym_DOLLARvacount] = ACTIONS(1565), - [anon_sym_DOLLAReval] = ACTIONS(1565), - [anon_sym_DOLLARis_const] = ACTIONS(1565), - [anon_sym_DOLLARsizeof] = ACTIONS(1565), - [anon_sym_DOLLARstringify] = ACTIONS(1565), - [anon_sym_DOLLARappend] = ACTIONS(1565), - [anon_sym_DOLLARconcat] = ACTIONS(1565), - [anon_sym_DOLLARdefined] = ACTIONS(1565), - [anon_sym_DOLLARembed] = ACTIONS(1565), - [anon_sym_DOLLARand] = ACTIONS(1565), - [anon_sym_DOLLARor] = ACTIONS(1565), - [anon_sym_DOLLARfeature] = ACTIONS(1565), - [anon_sym_DOLLARassignable] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_typeid] = ACTIONS(1565), - [anon_sym_LBRACE_PIPE] = ACTIONS(1567), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_bool] = ACTIONS(1565), - [anon_sym_char] = ACTIONS(1565), - [anon_sym_ichar] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [anon_sym_ushort] = ACTIONS(1565), - [anon_sym_uint] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_ulong] = ACTIONS(1565), - [anon_sym_int128] = ACTIONS(1565), - [anon_sym_uint128] = ACTIONS(1565), - [anon_sym_float] = ACTIONS(1565), - [anon_sym_double] = ACTIONS(1565), - [anon_sym_float16] = ACTIONS(1565), - [anon_sym_bfloat16] = ACTIONS(1565), - [anon_sym_float128] = ACTIONS(1565), - [anon_sym_iptr] = ACTIONS(1565), - [anon_sym_uptr] = ACTIONS(1565), - [anon_sym_isz] = ACTIONS(1565), - [anon_sym_usz] = ACTIONS(1565), - [anon_sym_anyfault] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1565), - [anon_sym_DOLLARtypeof] = ACTIONS(1565), - [anon_sym_DOLLARtypefrom] = ACTIONS(1565), - [anon_sym_DOLLARevaltype] = ACTIONS(1565), - [anon_sym_DOLLARvatype] = ACTIONS(1565), - [sym_real_literal] = ACTIONS(1567), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARcase] = ACTIONS(1485), + [anon_sym_DOLLARdefault] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARendswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, [435] = { [sym_line_comment] = STATE(435), [sym_doc_comment] = STATE(435), [sym_block_comment] = STATE(435), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARcase] = ACTIONS(1463), - [anon_sym_DOLLARdefault] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARendswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARappend] = ACTIONS(1463), - [anon_sym_DOLLARconcat] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARcase] = ACTIONS(1489), + [anon_sym_DOLLARdefault] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARendswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, [436] = { [sym_line_comment] = STATE(436), [sym_doc_comment] = STATE(436), [sym_block_comment] = STATE(436), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARcase] = ACTIONS(1491), - [anon_sym_DOLLARdefault] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARendswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARappend] = ACTIONS(1491), - [anon_sym_DOLLARconcat] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARcase] = ACTIONS(1493), + [anon_sym_DOLLARdefault] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARendswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [437] = { [sym_line_comment] = STATE(437), [sym_doc_comment] = STATE(437), [sym_block_comment] = STATE(437), - [sym_ident] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_bytes_literal] = ACTIONS(1595), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1593), - [sym_at_ident] = ACTIONS(1595), - [sym_hash_ident] = ACTIONS(1595), - [sym_type_ident] = ACTIONS(1595), - [sym_ct_type_ident] = ACTIONS(1595), - [sym_const_ident] = ACTIONS(1593), - [sym_builtin] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_tlocal] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_fn] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_var] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_defer] = ACTIONS(1593), - [anon_sym_assert] = ACTIONS(1593), - [anon_sym_nextcase] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_foreach] = ACTIONS(1593), - [anon_sym_foreach_r] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_asm] = ACTIONS(1593), - [anon_sym_DOLLARassert] = ACTIONS(1593), - [anon_sym_DOLLARerror] = ACTIONS(1593), - [anon_sym_DOLLARecho] = ACTIONS(1593), - [anon_sym_DOLLARif] = ACTIONS(1593), - [anon_sym_DOLLARcase] = ACTIONS(1593), - [anon_sym_DOLLARdefault] = ACTIONS(1593), - [anon_sym_DOLLARswitch] = ACTIONS(1593), - [anon_sym_DOLLARendswitch] = ACTIONS(1593), - [anon_sym_DOLLARfor] = ACTIONS(1593), - [anon_sym_DOLLARforeach] = ACTIONS(1593), - [anon_sym_DOLLARalignof] = ACTIONS(1593), - [anon_sym_DOLLARextnameof] = ACTIONS(1593), - [anon_sym_DOLLARnameof] = ACTIONS(1593), - [anon_sym_DOLLARoffsetof] = ACTIONS(1593), - [anon_sym_DOLLARqnameof] = ACTIONS(1593), - [anon_sym_DOLLARvaconst] = ACTIONS(1593), - [anon_sym_DOLLARvaarg] = ACTIONS(1593), - [anon_sym_DOLLARvaref] = ACTIONS(1593), - [anon_sym_DOLLARvaexpr] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_null] = ACTIONS(1593), - [anon_sym_DOLLARvacount] = ACTIONS(1593), - [anon_sym_DOLLAReval] = ACTIONS(1593), - [anon_sym_DOLLARis_const] = ACTIONS(1593), - [anon_sym_DOLLARsizeof] = ACTIONS(1593), - [anon_sym_DOLLARstringify] = ACTIONS(1593), - [anon_sym_DOLLARappend] = ACTIONS(1593), - [anon_sym_DOLLARconcat] = ACTIONS(1593), - [anon_sym_DOLLARdefined] = ACTIONS(1593), - [anon_sym_DOLLARembed] = ACTIONS(1593), - [anon_sym_DOLLARand] = ACTIONS(1593), - [anon_sym_DOLLARor] = ACTIONS(1593), - [anon_sym_DOLLARfeature] = ACTIONS(1593), - [anon_sym_DOLLARassignable] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_typeid] = ACTIONS(1593), - [anon_sym_LBRACE_PIPE] = ACTIONS(1595), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_ichar] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [anon_sym_ushort] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_ulong] = ACTIONS(1593), - [anon_sym_int128] = ACTIONS(1593), - [anon_sym_uint128] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_double] = ACTIONS(1593), - [anon_sym_float16] = ACTIONS(1593), - [anon_sym_bfloat16] = ACTIONS(1593), - [anon_sym_float128] = ACTIONS(1593), - [anon_sym_iptr] = ACTIONS(1593), - [anon_sym_uptr] = ACTIONS(1593), - [anon_sym_isz] = ACTIONS(1593), - [anon_sym_usz] = ACTIONS(1593), - [anon_sym_anyfault] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_DOLLARtypeof] = ACTIONS(1593), - [anon_sym_DOLLARtypefrom] = ACTIONS(1593), - [anon_sym_DOLLARevaltype] = ACTIONS(1593), - [anon_sym_DOLLARvatype] = ACTIONS(1593), - [sym_real_literal] = ACTIONS(1595), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARcase] = ACTIONS(1497), + [anon_sym_DOLLARdefault] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARendswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, [438] = { [sym_line_comment] = STATE(438), [sym_doc_comment] = STATE(438), [sym_block_comment] = STATE(438), - [sym_ident] = ACTIONS(1597), - [sym_integer_literal] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [sym_bytes_literal] = ACTIONS(1599), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARcase] = ACTIONS(1501), + [anon_sym_DOLLARdefault] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARendswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), + }, + [439] = { + [sym_line_comment] = STATE(439), + [sym_doc_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARcase] = ACTIONS(1505), + [anon_sym_DOLLARdefault] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARendswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), + }, + [440] = { + [sym_line_comment] = STATE(440), + [sym_doc_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1597), - [sym_at_ident] = ACTIONS(1599), - [sym_hash_ident] = ACTIONS(1599), - [sym_type_ident] = ACTIONS(1599), - [sym_ct_type_ident] = ACTIONS(1599), - [sym_const_ident] = ACTIONS(1597), - [sym_builtin] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_tlocal] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_fn] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_defer] = ACTIONS(1597), - [anon_sym_assert] = ACTIONS(1597), - [anon_sym_nextcase] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_foreach] = ACTIONS(1597), - [anon_sym_foreach_r] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_int] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_asm] = ACTIONS(1597), - [anon_sym_DOLLARassert] = ACTIONS(1597), - [anon_sym_DOLLARerror] = ACTIONS(1597), - [anon_sym_DOLLARecho] = ACTIONS(1597), - [anon_sym_DOLLARif] = ACTIONS(1597), - [anon_sym_DOLLARcase] = ACTIONS(1597), - [anon_sym_DOLLARdefault] = ACTIONS(1597), - [anon_sym_DOLLARswitch] = ACTIONS(1597), - [anon_sym_DOLLARendswitch] = ACTIONS(1597), - [anon_sym_DOLLARfor] = ACTIONS(1597), - [anon_sym_DOLLARforeach] = ACTIONS(1597), - [anon_sym_DOLLARalignof] = ACTIONS(1597), - [anon_sym_DOLLARextnameof] = ACTIONS(1597), - [anon_sym_DOLLARnameof] = ACTIONS(1597), - [anon_sym_DOLLARoffsetof] = ACTIONS(1597), - [anon_sym_DOLLARqnameof] = ACTIONS(1597), - [anon_sym_DOLLARvaconst] = ACTIONS(1597), - [anon_sym_DOLLARvaarg] = ACTIONS(1597), - [anon_sym_DOLLARvaref] = ACTIONS(1597), - [anon_sym_DOLLARvaexpr] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_DOLLARvacount] = ACTIONS(1597), - [anon_sym_DOLLAReval] = ACTIONS(1597), - [anon_sym_DOLLARis_const] = ACTIONS(1597), - [anon_sym_DOLLARsizeof] = ACTIONS(1597), - [anon_sym_DOLLARstringify] = ACTIONS(1597), - [anon_sym_DOLLARappend] = ACTIONS(1597), - [anon_sym_DOLLARconcat] = ACTIONS(1597), - [anon_sym_DOLLARdefined] = ACTIONS(1597), - [anon_sym_DOLLARembed] = ACTIONS(1597), - [anon_sym_DOLLARand] = ACTIONS(1597), - [anon_sym_DOLLARor] = ACTIONS(1597), - [anon_sym_DOLLARfeature] = ACTIONS(1597), - [anon_sym_DOLLARassignable] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_typeid] = ACTIONS(1597), - [anon_sym_LBRACE_PIPE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_char] = ACTIONS(1597), - [anon_sym_ichar] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [anon_sym_ushort] = ACTIONS(1597), - [anon_sym_uint] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_ulong] = ACTIONS(1597), - [anon_sym_int128] = ACTIONS(1597), - [anon_sym_uint128] = ACTIONS(1597), - [anon_sym_float] = ACTIONS(1597), - [anon_sym_double] = ACTIONS(1597), - [anon_sym_float16] = ACTIONS(1597), - [anon_sym_bfloat16] = ACTIONS(1597), - [anon_sym_float128] = ACTIONS(1597), - [anon_sym_iptr] = ACTIONS(1597), - [anon_sym_uptr] = ACTIONS(1597), - [anon_sym_isz] = ACTIONS(1597), - [anon_sym_usz] = ACTIONS(1597), - [anon_sym_anyfault] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_DOLLARtypeof] = ACTIONS(1597), - [anon_sym_DOLLARtypefrom] = ACTIONS(1597), - [anon_sym_DOLLARevaltype] = ACTIONS(1597), - [anon_sym_DOLLARvatype] = ACTIONS(1597), - [sym_real_literal] = ACTIONS(1599), - }, - [439] = { - [sym_line_comment] = STATE(439), - [sym_doc_comment] = STATE(439), - [sym_block_comment] = STATE(439), - [sym_ident] = ACTIONS(1601), - [sym_integer_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [anon_sym_BQUOTE] = ACTIONS(1603), - [sym_bytes_literal] = ACTIONS(1603), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1601), - [sym_at_ident] = ACTIONS(1603), - [sym_hash_ident] = ACTIONS(1603), - [sym_type_ident] = ACTIONS(1603), - [sym_ct_type_ident] = ACTIONS(1603), - [sym_const_ident] = ACTIONS(1601), - [sym_builtin] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_tlocal] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_fn] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_var] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_defer] = ACTIONS(1601), - [anon_sym_assert] = ACTIONS(1601), - [anon_sym_nextcase] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_AMP_AMP] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_foreach] = ACTIONS(1601), - [anon_sym_foreach_r] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_int] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1601), - [anon_sym_DOLLARassert] = ACTIONS(1601), - [anon_sym_DOLLARerror] = ACTIONS(1601), - [anon_sym_DOLLARecho] = ACTIONS(1601), - [anon_sym_DOLLARif] = ACTIONS(1601), - [anon_sym_DOLLARcase] = ACTIONS(1601), - [anon_sym_DOLLARdefault] = ACTIONS(1601), - [anon_sym_DOLLARswitch] = ACTIONS(1601), - [anon_sym_DOLLARendswitch] = ACTIONS(1601), - [anon_sym_DOLLARfor] = ACTIONS(1601), - [anon_sym_DOLLARforeach] = ACTIONS(1601), - [anon_sym_DOLLARalignof] = ACTIONS(1601), - [anon_sym_DOLLARextnameof] = ACTIONS(1601), - [anon_sym_DOLLARnameof] = ACTIONS(1601), - [anon_sym_DOLLARoffsetof] = ACTIONS(1601), - [anon_sym_DOLLARqnameof] = ACTIONS(1601), - [anon_sym_DOLLARvaconst] = ACTIONS(1601), - [anon_sym_DOLLARvaarg] = ACTIONS(1601), - [anon_sym_DOLLARvaref] = ACTIONS(1601), - [anon_sym_DOLLARvaexpr] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1601), - [anon_sym_false] = ACTIONS(1601), - [anon_sym_null] = ACTIONS(1601), - [anon_sym_DOLLARvacount] = ACTIONS(1601), - [anon_sym_DOLLAReval] = ACTIONS(1601), - [anon_sym_DOLLARis_const] = ACTIONS(1601), - [anon_sym_DOLLARsizeof] = ACTIONS(1601), - [anon_sym_DOLLARstringify] = ACTIONS(1601), - [anon_sym_DOLLARappend] = ACTIONS(1601), - [anon_sym_DOLLARconcat] = ACTIONS(1601), - [anon_sym_DOLLARdefined] = ACTIONS(1601), - [anon_sym_DOLLARembed] = ACTIONS(1601), - [anon_sym_DOLLARand] = ACTIONS(1601), - [anon_sym_DOLLARor] = ACTIONS(1601), - [anon_sym_DOLLARfeature] = ACTIONS(1601), - [anon_sym_DOLLARassignable] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_typeid] = ACTIONS(1601), - [anon_sym_LBRACE_PIPE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_char] = ACTIONS(1601), - [anon_sym_ichar] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [anon_sym_ushort] = ACTIONS(1601), - [anon_sym_uint] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_ulong] = ACTIONS(1601), - [anon_sym_int128] = ACTIONS(1601), - [anon_sym_uint128] = ACTIONS(1601), - [anon_sym_float] = ACTIONS(1601), - [anon_sym_double] = ACTIONS(1601), - [anon_sym_float16] = ACTIONS(1601), - [anon_sym_bfloat16] = ACTIONS(1601), - [anon_sym_float128] = ACTIONS(1601), - [anon_sym_iptr] = ACTIONS(1601), - [anon_sym_uptr] = ACTIONS(1601), - [anon_sym_isz] = ACTIONS(1601), - [anon_sym_usz] = ACTIONS(1601), - [anon_sym_anyfault] = ACTIONS(1601), - [anon_sym_any] = ACTIONS(1601), - [anon_sym_DOLLARtypeof] = ACTIONS(1601), - [anon_sym_DOLLARtypefrom] = ACTIONS(1601), - [anon_sym_DOLLARevaltype] = ACTIONS(1601), - [anon_sym_DOLLARvatype] = ACTIONS(1601), - [sym_real_literal] = ACTIONS(1603), - }, - [440] = { - [sym_line_comment] = STATE(440), - [sym_doc_comment] = STATE(440), - [sym_block_comment] = STATE(440), - [sym_ident] = ACTIONS(1609), - [sym_integer_literal] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [anon_sym_BQUOTE] = ACTIONS(1611), - [sym_bytes_literal] = ACTIONS(1611), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1609), - [sym_at_ident] = ACTIONS(1611), - [sym_hash_ident] = ACTIONS(1611), - [sym_type_ident] = ACTIONS(1611), - [sym_ct_type_ident] = ACTIONS(1611), - [sym_const_ident] = ACTIONS(1609), - [sym_builtin] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_tlocal] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_fn] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_var] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_defer] = ACTIONS(1609), - [anon_sym_assert] = ACTIONS(1609), - [anon_sym_nextcase] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_foreach] = ACTIONS(1609), - [anon_sym_foreach_r] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_asm] = ACTIONS(1609), - [anon_sym_DOLLARassert] = ACTIONS(1609), - [anon_sym_DOLLARerror] = ACTIONS(1609), - [anon_sym_DOLLARecho] = ACTIONS(1609), - [anon_sym_DOLLARif] = ACTIONS(1609), - [anon_sym_DOLLARcase] = ACTIONS(1609), - [anon_sym_DOLLARdefault] = ACTIONS(1609), - [anon_sym_DOLLARswitch] = ACTIONS(1609), - [anon_sym_DOLLARendswitch] = ACTIONS(1609), - [anon_sym_DOLLARfor] = ACTIONS(1609), - [anon_sym_DOLLARforeach] = ACTIONS(1609), - [anon_sym_DOLLARalignof] = ACTIONS(1609), - [anon_sym_DOLLARextnameof] = ACTIONS(1609), - [anon_sym_DOLLARnameof] = ACTIONS(1609), - [anon_sym_DOLLARoffsetof] = ACTIONS(1609), - [anon_sym_DOLLARqnameof] = ACTIONS(1609), - [anon_sym_DOLLARvaconst] = ACTIONS(1609), - [anon_sym_DOLLARvaarg] = ACTIONS(1609), - [anon_sym_DOLLARvaref] = ACTIONS(1609), - [anon_sym_DOLLARvaexpr] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_DOLLARvacount] = ACTIONS(1609), - [anon_sym_DOLLAReval] = ACTIONS(1609), - [anon_sym_DOLLARis_const] = ACTIONS(1609), - [anon_sym_DOLLARsizeof] = ACTIONS(1609), - [anon_sym_DOLLARstringify] = ACTIONS(1609), - [anon_sym_DOLLARappend] = ACTIONS(1609), - [anon_sym_DOLLARconcat] = ACTIONS(1609), - [anon_sym_DOLLARdefined] = ACTIONS(1609), - [anon_sym_DOLLARembed] = ACTIONS(1609), - [anon_sym_DOLLARand] = ACTIONS(1609), - [anon_sym_DOLLARor] = ACTIONS(1609), - [anon_sym_DOLLARfeature] = ACTIONS(1609), - [anon_sym_DOLLARassignable] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_typeid] = ACTIONS(1609), - [anon_sym_LBRACE_PIPE] = ACTIONS(1611), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_ichar] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [anon_sym_ushort] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_ulong] = ACTIONS(1609), - [anon_sym_int128] = ACTIONS(1609), - [anon_sym_uint128] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_double] = ACTIONS(1609), - [anon_sym_float16] = ACTIONS(1609), - [anon_sym_bfloat16] = ACTIONS(1609), - [anon_sym_float128] = ACTIONS(1609), - [anon_sym_iptr] = ACTIONS(1609), - [anon_sym_uptr] = ACTIONS(1609), - [anon_sym_isz] = ACTIONS(1609), - [anon_sym_usz] = ACTIONS(1609), - [anon_sym_anyfault] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1609), - [anon_sym_DOLLARtypeof] = ACTIONS(1609), - [anon_sym_DOLLARtypefrom] = ACTIONS(1609), - [anon_sym_DOLLARevaltype] = ACTIONS(1609), - [anon_sym_DOLLARvatype] = ACTIONS(1609), - [sym_real_literal] = ACTIONS(1611), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARcase] = ACTIONS(1517), + [anon_sym_DOLLARdefault] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARendswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, [441] = { [sym_line_comment] = STATE(441), [sym_doc_comment] = STATE(441), [sym_block_comment] = STATE(441), - [sym_ident] = ACTIONS(1625), - [sym_integer_literal] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [anon_sym_BQUOTE] = ACTIONS(1627), - [sym_bytes_literal] = ACTIONS(1627), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1625), - [sym_at_ident] = ACTIONS(1627), - [sym_hash_ident] = ACTIONS(1627), - [sym_type_ident] = ACTIONS(1627), - [sym_ct_type_ident] = ACTIONS(1627), - [sym_const_ident] = ACTIONS(1625), - [sym_builtin] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_tlocal] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_fn] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_var] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_defer] = ACTIONS(1625), - [anon_sym_assert] = ACTIONS(1625), - [anon_sym_nextcase] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_AMP_AMP] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_foreach] = ACTIONS(1625), - [anon_sym_foreach_r] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_int] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_asm] = ACTIONS(1625), - [anon_sym_DOLLARassert] = ACTIONS(1625), - [anon_sym_DOLLARerror] = ACTIONS(1625), - [anon_sym_DOLLARecho] = ACTIONS(1625), - [anon_sym_DOLLARif] = ACTIONS(1625), - [anon_sym_DOLLARcase] = ACTIONS(1625), - [anon_sym_DOLLARdefault] = ACTIONS(1625), - [anon_sym_DOLLARswitch] = ACTIONS(1625), - [anon_sym_DOLLARendswitch] = ACTIONS(1625), - [anon_sym_DOLLARfor] = ACTIONS(1625), - [anon_sym_DOLLARforeach] = ACTIONS(1625), - [anon_sym_DOLLARalignof] = ACTIONS(1625), - [anon_sym_DOLLARextnameof] = ACTIONS(1625), - [anon_sym_DOLLARnameof] = ACTIONS(1625), - [anon_sym_DOLLARoffsetof] = ACTIONS(1625), - [anon_sym_DOLLARqnameof] = ACTIONS(1625), - [anon_sym_DOLLARvaconst] = ACTIONS(1625), - [anon_sym_DOLLARvaarg] = ACTIONS(1625), - [anon_sym_DOLLARvaref] = ACTIONS(1625), - [anon_sym_DOLLARvaexpr] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [anon_sym_null] = ACTIONS(1625), - [anon_sym_DOLLARvacount] = ACTIONS(1625), - [anon_sym_DOLLAReval] = ACTIONS(1625), - [anon_sym_DOLLARis_const] = ACTIONS(1625), - [anon_sym_DOLLARsizeof] = ACTIONS(1625), - [anon_sym_DOLLARstringify] = ACTIONS(1625), - [anon_sym_DOLLARappend] = ACTIONS(1625), - [anon_sym_DOLLARconcat] = ACTIONS(1625), - [anon_sym_DOLLARdefined] = ACTIONS(1625), - [anon_sym_DOLLARembed] = ACTIONS(1625), - [anon_sym_DOLLARand] = ACTIONS(1625), - [anon_sym_DOLLARor] = ACTIONS(1625), - [anon_sym_DOLLARfeature] = ACTIONS(1625), - [anon_sym_DOLLARassignable] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_typeid] = ACTIONS(1625), - [anon_sym_LBRACE_PIPE] = ACTIONS(1627), - [anon_sym_void] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_char] = ACTIONS(1625), - [anon_sym_ichar] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [anon_sym_ushort] = ACTIONS(1625), - [anon_sym_uint] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_ulong] = ACTIONS(1625), - [anon_sym_int128] = ACTIONS(1625), - [anon_sym_uint128] = ACTIONS(1625), - [anon_sym_float] = ACTIONS(1625), - [anon_sym_double] = ACTIONS(1625), - [anon_sym_float16] = ACTIONS(1625), - [anon_sym_bfloat16] = ACTIONS(1625), - [anon_sym_float128] = ACTIONS(1625), - [anon_sym_iptr] = ACTIONS(1625), - [anon_sym_uptr] = ACTIONS(1625), - [anon_sym_isz] = ACTIONS(1625), - [anon_sym_usz] = ACTIONS(1625), - [anon_sym_anyfault] = ACTIONS(1625), - [anon_sym_any] = ACTIONS(1625), - [anon_sym_DOLLARtypeof] = ACTIONS(1625), - [anon_sym_DOLLARtypefrom] = ACTIONS(1625), - [anon_sym_DOLLARevaltype] = ACTIONS(1625), - [anon_sym_DOLLARvatype] = ACTIONS(1625), - [sym_real_literal] = ACTIONS(1627), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARcase] = ACTIONS(1651), + [anon_sym_DOLLARdefault] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARendswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), }, [442] = { [sym_line_comment] = STATE(442), [sym_doc_comment] = STATE(442), [sym_block_comment] = STATE(442), - [sym_ident] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1651), - [sym_bytes_literal] = ACTIONS(1651), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1649), - [sym_at_ident] = ACTIONS(1651), - [sym_hash_ident] = ACTIONS(1651), - [sym_type_ident] = ACTIONS(1651), - [sym_ct_type_ident] = ACTIONS(1651), - [sym_const_ident] = ACTIONS(1649), - [sym_builtin] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_tlocal] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_var] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_nextcase] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_foreach] = ACTIONS(1649), - [anon_sym_foreach_r] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_DOLLARassert] = ACTIONS(1649), - [anon_sym_DOLLARerror] = ACTIONS(1649), - [anon_sym_DOLLARecho] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_DOLLARcase] = ACTIONS(1649), - [anon_sym_DOLLARdefault] = ACTIONS(1649), - [anon_sym_DOLLARswitch] = ACTIONS(1649), - [anon_sym_DOLLARendswitch] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_DOLLARforeach] = ACTIONS(1649), - [anon_sym_DOLLARalignof] = ACTIONS(1649), - [anon_sym_DOLLARextnameof] = ACTIONS(1649), - [anon_sym_DOLLARnameof] = ACTIONS(1649), - [anon_sym_DOLLARoffsetof] = ACTIONS(1649), - [anon_sym_DOLLARqnameof] = ACTIONS(1649), - [anon_sym_DOLLARvaconst] = ACTIONS(1649), - [anon_sym_DOLLARvaarg] = ACTIONS(1649), - [anon_sym_DOLLARvaref] = ACTIONS(1649), - [anon_sym_DOLLARvaexpr] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [anon_sym_DOLLARvacount] = ACTIONS(1649), - [anon_sym_DOLLAReval] = ACTIONS(1649), - [anon_sym_DOLLARis_const] = ACTIONS(1649), - [anon_sym_DOLLARsizeof] = ACTIONS(1649), - [anon_sym_DOLLARstringify] = ACTIONS(1649), - [anon_sym_DOLLARappend] = ACTIONS(1649), - [anon_sym_DOLLARconcat] = ACTIONS(1649), - [anon_sym_DOLLARdefined] = ACTIONS(1649), - [anon_sym_DOLLARembed] = ACTIONS(1649), - [anon_sym_DOLLARand] = ACTIONS(1649), - [anon_sym_DOLLARor] = ACTIONS(1649), - [anon_sym_DOLLARfeature] = ACTIONS(1649), - [anon_sym_DOLLARassignable] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_typeid] = ACTIONS(1649), - [anon_sym_LBRACE_PIPE] = ACTIONS(1651), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_ichar] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [anon_sym_ushort] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_ulong] = ACTIONS(1649), - [anon_sym_int128] = ACTIONS(1649), - [anon_sym_uint128] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_double] = ACTIONS(1649), - [anon_sym_float16] = ACTIONS(1649), - [anon_sym_bfloat16] = ACTIONS(1649), - [anon_sym_float128] = ACTIONS(1649), - [anon_sym_iptr] = ACTIONS(1649), - [anon_sym_uptr] = ACTIONS(1649), - [anon_sym_isz] = ACTIONS(1649), - [anon_sym_usz] = ACTIONS(1649), - [anon_sym_anyfault] = ACTIONS(1649), - [anon_sym_any] = ACTIONS(1649), - [anon_sym_DOLLARtypeof] = ACTIONS(1649), - [anon_sym_DOLLARtypefrom] = ACTIONS(1649), - [anon_sym_DOLLARevaltype] = ACTIONS(1649), - [anon_sym_DOLLARvatype] = ACTIONS(1649), - [sym_real_literal] = ACTIONS(1651), - }, - [443] = { - [sym_line_comment] = STATE(443), - [sym_doc_comment] = STATE(443), - [sym_block_comment] = STATE(443), - [sym_ident] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_BQUOTE] = ACTIONS(1405), - [sym_bytes_literal] = ACTIONS(1405), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1403), - [sym_at_ident] = ACTIONS(1405), - [sym_hash_ident] = ACTIONS(1405), - [sym_type_ident] = ACTIONS(1405), - [sym_ct_type_ident] = ACTIONS(1405), - [sym_const_ident] = ACTIONS(1403), - [sym_builtin] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_tlocal] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_defer] = ACTIONS(1403), - [anon_sym_assert] = ACTIONS(1403), - [anon_sym_nextcase] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_foreach] = ACTIONS(1403), - [anon_sym_foreach_r] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_int] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1403), - [anon_sym_DOLLARassert] = ACTIONS(1403), - [anon_sym_DOLLARerror] = ACTIONS(1403), - [anon_sym_DOLLARecho] = ACTIONS(1403), - [anon_sym_DOLLARif] = ACTIONS(1403), - [anon_sym_DOLLARcase] = ACTIONS(1403), - [anon_sym_DOLLARdefault] = ACTIONS(1403), - [anon_sym_DOLLARswitch] = ACTIONS(1403), - [anon_sym_DOLLARendswitch] = ACTIONS(1403), - [anon_sym_DOLLARfor] = ACTIONS(1403), - [anon_sym_DOLLARforeach] = ACTIONS(1403), - [anon_sym_DOLLARalignof] = ACTIONS(1403), - [anon_sym_DOLLARextnameof] = ACTIONS(1403), - [anon_sym_DOLLARnameof] = ACTIONS(1403), - [anon_sym_DOLLARoffsetof] = ACTIONS(1403), - [anon_sym_DOLLARqnameof] = ACTIONS(1403), - [anon_sym_DOLLARvaconst] = ACTIONS(1403), - [anon_sym_DOLLARvaarg] = ACTIONS(1403), - [anon_sym_DOLLARvaref] = ACTIONS(1403), - [anon_sym_DOLLARvaexpr] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_DOLLARvacount] = ACTIONS(1403), - [anon_sym_DOLLAReval] = ACTIONS(1403), - [anon_sym_DOLLARis_const] = ACTIONS(1403), - [anon_sym_DOLLARsizeof] = ACTIONS(1403), - [anon_sym_DOLLARstringify] = ACTIONS(1403), - [anon_sym_DOLLARappend] = ACTIONS(1403), - [anon_sym_DOLLARconcat] = ACTIONS(1403), - [anon_sym_DOLLARdefined] = ACTIONS(1403), - [anon_sym_DOLLARembed] = ACTIONS(1403), - [anon_sym_DOLLARand] = ACTIONS(1403), - [anon_sym_DOLLARor] = ACTIONS(1403), - [anon_sym_DOLLARfeature] = ACTIONS(1403), - [anon_sym_DOLLARassignable] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_typeid] = ACTIONS(1403), - [anon_sym_LBRACE_PIPE] = ACTIONS(1405), - [anon_sym_void] = ACTIONS(1403), - [anon_sym_bool] = ACTIONS(1403), - [anon_sym_char] = ACTIONS(1403), - [anon_sym_ichar] = ACTIONS(1403), - [anon_sym_short] = ACTIONS(1403), - [anon_sym_ushort] = ACTIONS(1403), - [anon_sym_uint] = ACTIONS(1403), - [anon_sym_long] = ACTIONS(1403), - [anon_sym_ulong] = ACTIONS(1403), - [anon_sym_int128] = ACTIONS(1403), - [anon_sym_uint128] = ACTIONS(1403), - [anon_sym_float] = ACTIONS(1403), - [anon_sym_double] = ACTIONS(1403), - [anon_sym_float16] = ACTIONS(1403), - [anon_sym_bfloat16] = ACTIONS(1403), - [anon_sym_float128] = ACTIONS(1403), - [anon_sym_iptr] = ACTIONS(1403), - [anon_sym_uptr] = ACTIONS(1403), - [anon_sym_isz] = ACTIONS(1403), - [anon_sym_usz] = ACTIONS(1403), - [anon_sym_anyfault] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_DOLLARtypeof] = ACTIONS(1403), - [anon_sym_DOLLARtypefrom] = ACTIONS(1403), - [anon_sym_DOLLARevaltype] = ACTIONS(1403), - [anon_sym_DOLLARvatype] = ACTIONS(1403), - [sym_real_literal] = ACTIONS(1405), - }, - [444] = { - [sym_line_comment] = STATE(444), - [sym_doc_comment] = STATE(444), - [sym_block_comment] = STATE(444), [sym_ident] = ACTIONS(1525), [sym_integer_literal] = ACTIONS(1527), [anon_sym_SQUOTE] = ACTIONS(1527), @@ -76636,361 +76323,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1525), [sym_real_literal] = ACTIONS(1527), }, + [443] = { + [sym_line_comment] = STATE(443), + [sym_doc_comment] = STATE(443), + [sym_block_comment] = STATE(443), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARcase] = ACTIONS(1541), + [anon_sym_DOLLARdefault] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARendswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), + }, + [444] = { + [sym_line_comment] = STATE(444), + [sym_doc_comment] = STATE(444), + [sym_block_comment] = STATE(444), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARcase] = ACTIONS(1545), + [anon_sym_DOLLARdefault] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARendswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), + }, [445] = { [sym_line_comment] = STATE(445), [sym_doc_comment] = STATE(445), [sym_block_comment] = STATE(445), - [sym_ident] = ACTIONS(1589), - [sym_integer_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [anon_sym_BQUOTE] = ACTIONS(1591), - [sym_bytes_literal] = ACTIONS(1591), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1589), - [sym_at_ident] = ACTIONS(1591), - [sym_hash_ident] = ACTIONS(1591), - [sym_type_ident] = ACTIONS(1591), - [sym_ct_type_ident] = ACTIONS(1591), - [sym_const_ident] = ACTIONS(1589), - [sym_builtin] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_tlocal] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_fn] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_var] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_defer] = ACTIONS(1589), - [anon_sym_assert] = ACTIONS(1589), - [anon_sym_nextcase] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1589), - [anon_sym_AMP_AMP] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_foreach] = ACTIONS(1589), - [anon_sym_foreach_r] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_int] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_asm] = ACTIONS(1589), - [anon_sym_DOLLARassert] = ACTIONS(1589), - [anon_sym_DOLLARerror] = ACTIONS(1589), - [anon_sym_DOLLARecho] = ACTIONS(1589), - [anon_sym_DOLLARif] = ACTIONS(1589), - [anon_sym_DOLLARcase] = ACTIONS(1589), - [anon_sym_DOLLARdefault] = ACTIONS(1589), - [anon_sym_DOLLARswitch] = ACTIONS(1589), - [anon_sym_DOLLARendswitch] = ACTIONS(1589), - [anon_sym_DOLLARfor] = ACTIONS(1589), - [anon_sym_DOLLARforeach] = ACTIONS(1589), - [anon_sym_DOLLARalignof] = ACTIONS(1589), - [anon_sym_DOLLARextnameof] = ACTIONS(1589), - [anon_sym_DOLLARnameof] = ACTIONS(1589), - [anon_sym_DOLLARoffsetof] = ACTIONS(1589), - [anon_sym_DOLLARqnameof] = ACTIONS(1589), - [anon_sym_DOLLARvaconst] = ACTIONS(1589), - [anon_sym_DOLLARvaarg] = ACTIONS(1589), - [anon_sym_DOLLARvaref] = ACTIONS(1589), - [anon_sym_DOLLARvaexpr] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_DOLLARvacount] = ACTIONS(1589), - [anon_sym_DOLLAReval] = ACTIONS(1589), - [anon_sym_DOLLARis_const] = ACTIONS(1589), - [anon_sym_DOLLARsizeof] = ACTIONS(1589), - [anon_sym_DOLLARstringify] = ACTIONS(1589), - [anon_sym_DOLLARappend] = ACTIONS(1589), - [anon_sym_DOLLARconcat] = ACTIONS(1589), - [anon_sym_DOLLARdefined] = ACTIONS(1589), - [anon_sym_DOLLARembed] = ACTIONS(1589), - [anon_sym_DOLLARand] = ACTIONS(1589), - [anon_sym_DOLLARor] = ACTIONS(1589), - [anon_sym_DOLLARfeature] = ACTIONS(1589), - [anon_sym_DOLLARassignable] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_typeid] = ACTIONS(1589), - [anon_sym_LBRACE_PIPE] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(1589), - [anon_sym_bool] = ACTIONS(1589), - [anon_sym_char] = ACTIONS(1589), - [anon_sym_ichar] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [anon_sym_ushort] = ACTIONS(1589), - [anon_sym_uint] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_ulong] = ACTIONS(1589), - [anon_sym_int128] = ACTIONS(1589), - [anon_sym_uint128] = ACTIONS(1589), - [anon_sym_float] = ACTIONS(1589), - [anon_sym_double] = ACTIONS(1589), - [anon_sym_float16] = ACTIONS(1589), - [anon_sym_bfloat16] = ACTIONS(1589), - [anon_sym_float128] = ACTIONS(1589), - [anon_sym_iptr] = ACTIONS(1589), - [anon_sym_uptr] = ACTIONS(1589), - [anon_sym_isz] = ACTIONS(1589), - [anon_sym_usz] = ACTIONS(1589), - [anon_sym_anyfault] = ACTIONS(1589), - [anon_sym_any] = ACTIONS(1589), - [anon_sym_DOLLARtypeof] = ACTIONS(1589), - [anon_sym_DOLLARtypefrom] = ACTIONS(1589), - [anon_sym_DOLLARevaltype] = ACTIONS(1589), - [anon_sym_DOLLARvatype] = ACTIONS(1589), - [sym_real_literal] = ACTIONS(1591), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARcase] = ACTIONS(1549), + [anon_sym_DOLLARdefault] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARendswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, [446] = { [sym_line_comment] = STATE(446), [sym_doc_comment] = STATE(446), [sym_block_comment] = STATE(446), - [sym_ident] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [sym_bytes_literal] = ACTIONS(1365), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1363), - [sym_at_ident] = ACTIONS(1365), - [sym_hash_ident] = ACTIONS(1365), - [sym_type_ident] = ACTIONS(1365), - [sym_ct_type_ident] = ACTIONS(1365), - [sym_const_ident] = ACTIONS(1363), - [sym_builtin] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_tlocal] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_var] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_defer] = ACTIONS(1363), - [anon_sym_assert] = ACTIONS(1363), - [anon_sym_nextcase] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_foreach] = ACTIONS(1363), - [anon_sym_foreach_r] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_int] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym_DOLLARassert] = ACTIONS(1363), - [anon_sym_DOLLARerror] = ACTIONS(1363), - [anon_sym_DOLLARecho] = ACTIONS(1363), - [anon_sym_DOLLARif] = ACTIONS(1363), - [anon_sym_DOLLARcase] = ACTIONS(1363), - [anon_sym_DOLLARdefault] = ACTIONS(1363), - [anon_sym_DOLLARswitch] = ACTIONS(1363), - [anon_sym_DOLLARendswitch] = ACTIONS(1363), - [anon_sym_DOLLARfor] = ACTIONS(1363), - [anon_sym_DOLLARforeach] = ACTIONS(1363), - [anon_sym_DOLLARalignof] = ACTIONS(1363), - [anon_sym_DOLLARextnameof] = ACTIONS(1363), - [anon_sym_DOLLARnameof] = ACTIONS(1363), - [anon_sym_DOLLARoffsetof] = ACTIONS(1363), - [anon_sym_DOLLARqnameof] = ACTIONS(1363), - [anon_sym_DOLLARvaconst] = ACTIONS(1363), - [anon_sym_DOLLARvaarg] = ACTIONS(1363), - [anon_sym_DOLLARvaref] = ACTIONS(1363), - [anon_sym_DOLLARvaexpr] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_null] = ACTIONS(1363), - [anon_sym_DOLLARvacount] = ACTIONS(1363), - [anon_sym_DOLLAReval] = ACTIONS(1363), - [anon_sym_DOLLARis_const] = ACTIONS(1363), - [anon_sym_DOLLARsizeof] = ACTIONS(1363), - [anon_sym_DOLLARstringify] = ACTIONS(1363), - [anon_sym_DOLLARappend] = ACTIONS(1363), - [anon_sym_DOLLARconcat] = ACTIONS(1363), - [anon_sym_DOLLARdefined] = ACTIONS(1363), - [anon_sym_DOLLARembed] = ACTIONS(1363), - [anon_sym_DOLLARand] = ACTIONS(1363), - [anon_sym_DOLLARor] = ACTIONS(1363), - [anon_sym_DOLLARfeature] = ACTIONS(1363), - [anon_sym_DOLLARassignable] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_typeid] = ACTIONS(1363), - [anon_sym_LBRACE_PIPE] = ACTIONS(1365), - [anon_sym_void] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_ichar] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_ushort] = ACTIONS(1363), - [anon_sym_uint] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_ulong] = ACTIONS(1363), - [anon_sym_int128] = ACTIONS(1363), - [anon_sym_uint128] = ACTIONS(1363), - [anon_sym_float] = ACTIONS(1363), - [anon_sym_double] = ACTIONS(1363), - [anon_sym_float16] = ACTIONS(1363), - [anon_sym_bfloat16] = ACTIONS(1363), - [anon_sym_float128] = ACTIONS(1363), - [anon_sym_iptr] = ACTIONS(1363), - [anon_sym_uptr] = ACTIONS(1363), - [anon_sym_isz] = ACTIONS(1363), - [anon_sym_usz] = ACTIONS(1363), - [anon_sym_anyfault] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1363), - [anon_sym_DOLLARtypeof] = ACTIONS(1363), - [anon_sym_DOLLARtypefrom] = ACTIONS(1363), - [anon_sym_DOLLARevaltype] = ACTIONS(1363), - [anon_sym_DOLLARvatype] = ACTIONS(1363), - [sym_real_literal] = ACTIONS(1365), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARcase] = ACTIONS(1557), + [anon_sym_DOLLARdefault] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARendswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, [447] = { [sym_line_comment] = STATE(447), [sym_doc_comment] = STATE(447), [sym_block_comment] = STATE(447), - [sym_ident] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_bytes_literal] = ACTIONS(1647), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1645), - [sym_at_ident] = ACTIONS(1647), - [sym_hash_ident] = ACTIONS(1647), - [sym_type_ident] = ACTIONS(1647), - [sym_ct_type_ident] = ACTIONS(1647), - [sym_const_ident] = ACTIONS(1645), - [sym_builtin] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_tlocal] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_fn] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_var] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_defer] = ACTIONS(1645), - [anon_sym_assert] = ACTIONS(1645), - [anon_sym_nextcase] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_foreach] = ACTIONS(1645), - [anon_sym_foreach_r] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_int] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_asm] = ACTIONS(1645), - [anon_sym_DOLLARassert] = ACTIONS(1645), - [anon_sym_DOLLARerror] = ACTIONS(1645), - [anon_sym_DOLLARecho] = ACTIONS(1645), - [anon_sym_DOLLARif] = ACTIONS(1645), - [anon_sym_DOLLARcase] = ACTIONS(1645), - [anon_sym_DOLLARdefault] = ACTIONS(1645), - [anon_sym_DOLLARswitch] = ACTIONS(1645), - [anon_sym_DOLLARendswitch] = ACTIONS(1645), - [anon_sym_DOLLARfor] = ACTIONS(1645), - [anon_sym_DOLLARforeach] = ACTIONS(1645), - [anon_sym_DOLLARalignof] = ACTIONS(1645), - [anon_sym_DOLLARextnameof] = ACTIONS(1645), - [anon_sym_DOLLARnameof] = ACTIONS(1645), - [anon_sym_DOLLARoffsetof] = ACTIONS(1645), - [anon_sym_DOLLARqnameof] = ACTIONS(1645), - [anon_sym_DOLLARvaconst] = ACTIONS(1645), - [anon_sym_DOLLARvaarg] = ACTIONS(1645), - [anon_sym_DOLLARvaref] = ACTIONS(1645), - [anon_sym_DOLLARvaexpr] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [anon_sym_DOLLARvacount] = ACTIONS(1645), - [anon_sym_DOLLAReval] = ACTIONS(1645), - [anon_sym_DOLLARis_const] = ACTIONS(1645), - [anon_sym_DOLLARsizeof] = ACTIONS(1645), - [anon_sym_DOLLARstringify] = ACTIONS(1645), - [anon_sym_DOLLARappend] = ACTIONS(1645), - [anon_sym_DOLLARconcat] = ACTIONS(1645), - [anon_sym_DOLLARdefined] = ACTIONS(1645), - [anon_sym_DOLLARembed] = ACTIONS(1645), - [anon_sym_DOLLARand] = ACTIONS(1645), - [anon_sym_DOLLARor] = ACTIONS(1645), - [anon_sym_DOLLARfeature] = ACTIONS(1645), - [anon_sym_DOLLARassignable] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_typeid] = ACTIONS(1645), - [anon_sym_LBRACE_PIPE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [anon_sym_ichar] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [anon_sym_ushort] = ACTIONS(1645), - [anon_sym_uint] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_ulong] = ACTIONS(1645), - [anon_sym_int128] = ACTIONS(1645), - [anon_sym_uint128] = ACTIONS(1645), - [anon_sym_float] = ACTIONS(1645), - [anon_sym_double] = ACTIONS(1645), - [anon_sym_float16] = ACTIONS(1645), - [anon_sym_bfloat16] = ACTIONS(1645), - [anon_sym_float128] = ACTIONS(1645), - [anon_sym_iptr] = ACTIONS(1645), - [anon_sym_uptr] = ACTIONS(1645), - [anon_sym_isz] = ACTIONS(1645), - [anon_sym_usz] = ACTIONS(1645), - [anon_sym_anyfault] = ACTIONS(1645), - [anon_sym_any] = ACTIONS(1645), - [anon_sym_DOLLARtypeof] = ACTIONS(1645), - [anon_sym_DOLLARtypefrom] = ACTIONS(1645), - [anon_sym_DOLLARevaltype] = ACTIONS(1645), - [anon_sym_DOLLARvatype] = ACTIONS(1645), - [sym_real_literal] = ACTIONS(1647), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARcase] = ACTIONS(1561), + [anon_sym_DOLLARdefault] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARendswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [448] = { [sym_line_comment] = STATE(448), [sym_doc_comment] = STATE(448), [sym_block_comment] = STATE(448), + [sym_else_part] = STATE(693), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARendforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, + [449] = { + [sym_line_comment] = STATE(449), + [sym_doc_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARcase] = ACTIONS(1565), + [anon_sym_DOLLARdefault] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARendswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), + }, + [450] = { + [sym_line_comment] = STATE(450), + [sym_doc_comment] = STATE(450), + [sym_block_comment] = STATE(450), [sym_ident] = ACTIONS(1569), [sym_integer_literal] = ACTIONS(1571), [anon_sym_SQUOTE] = ACTIONS(1571), @@ -77104,9340 +77259,1414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1569), [sym_real_literal] = ACTIONS(1571), }, - [449] = { - [sym_line_comment] = STATE(449), - [sym_doc_comment] = STATE(449), - [sym_block_comment] = STATE(449), - [sym_ident] = ACTIONS(1629), - [sym_integer_literal] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1631), - [sym_bytes_literal] = ACTIONS(1631), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1629), - [sym_at_ident] = ACTIONS(1631), - [sym_hash_ident] = ACTIONS(1631), - [sym_type_ident] = ACTIONS(1631), - [sym_ct_type_ident] = ACTIONS(1631), - [sym_const_ident] = ACTIONS(1629), - [sym_builtin] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_tlocal] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_fn] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_defer] = ACTIONS(1629), - [anon_sym_assert] = ACTIONS(1629), - [anon_sym_nextcase] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_foreach] = ACTIONS(1629), - [anon_sym_foreach_r] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_int] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_asm] = ACTIONS(1629), - [anon_sym_DOLLARassert] = ACTIONS(1629), - [anon_sym_DOLLARerror] = ACTIONS(1629), - [anon_sym_DOLLARecho] = ACTIONS(1629), - [anon_sym_DOLLARif] = ACTIONS(1629), - [anon_sym_DOLLARcase] = ACTIONS(1629), - [anon_sym_DOLLARdefault] = ACTIONS(1629), - [anon_sym_DOLLARswitch] = ACTIONS(1629), - [anon_sym_DOLLARendswitch] = ACTIONS(1629), - [anon_sym_DOLLARfor] = ACTIONS(1629), - [anon_sym_DOLLARforeach] = ACTIONS(1629), - [anon_sym_DOLLARalignof] = ACTIONS(1629), - [anon_sym_DOLLARextnameof] = ACTIONS(1629), - [anon_sym_DOLLARnameof] = ACTIONS(1629), - [anon_sym_DOLLARoffsetof] = ACTIONS(1629), - [anon_sym_DOLLARqnameof] = ACTIONS(1629), - [anon_sym_DOLLARvaconst] = ACTIONS(1629), - [anon_sym_DOLLARvaarg] = ACTIONS(1629), - [anon_sym_DOLLARvaref] = ACTIONS(1629), - [anon_sym_DOLLARvaexpr] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [anon_sym_DOLLARvacount] = ACTIONS(1629), - [anon_sym_DOLLAReval] = ACTIONS(1629), - [anon_sym_DOLLARis_const] = ACTIONS(1629), - [anon_sym_DOLLARsizeof] = ACTIONS(1629), - [anon_sym_DOLLARstringify] = ACTIONS(1629), - [anon_sym_DOLLARappend] = ACTIONS(1629), - [anon_sym_DOLLARconcat] = ACTIONS(1629), - [anon_sym_DOLLARdefined] = ACTIONS(1629), - [anon_sym_DOLLARembed] = ACTIONS(1629), - [anon_sym_DOLLARand] = ACTIONS(1629), - [anon_sym_DOLLARor] = ACTIONS(1629), - [anon_sym_DOLLARfeature] = ACTIONS(1629), - [anon_sym_DOLLARassignable] = ACTIONS(1629), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_typeid] = ACTIONS(1629), - [anon_sym_LBRACE_PIPE] = ACTIONS(1631), - [anon_sym_void] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_char] = ACTIONS(1629), - [anon_sym_ichar] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [anon_sym_ushort] = ACTIONS(1629), - [anon_sym_uint] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_ulong] = ACTIONS(1629), - [anon_sym_int128] = ACTIONS(1629), - [anon_sym_uint128] = ACTIONS(1629), - [anon_sym_float] = ACTIONS(1629), - [anon_sym_double] = ACTIONS(1629), - [anon_sym_float16] = ACTIONS(1629), - [anon_sym_bfloat16] = ACTIONS(1629), - [anon_sym_float128] = ACTIONS(1629), - [anon_sym_iptr] = ACTIONS(1629), - [anon_sym_uptr] = ACTIONS(1629), - [anon_sym_isz] = ACTIONS(1629), - [anon_sym_usz] = ACTIONS(1629), - [anon_sym_anyfault] = ACTIONS(1629), - [anon_sym_any] = ACTIONS(1629), - [anon_sym_DOLLARtypeof] = ACTIONS(1629), - [anon_sym_DOLLARtypefrom] = ACTIONS(1629), - [anon_sym_DOLLARevaltype] = ACTIONS(1629), - [anon_sym_DOLLARvatype] = ACTIONS(1629), - [sym_real_literal] = ACTIONS(1631), - }, - [450] = { - [sym_line_comment] = STATE(450), - [sym_doc_comment] = STATE(450), - [sym_block_comment] = STATE(450), - [sym_ident] = ACTIONS(1633), - [sym_integer_literal] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), - [sym_bytes_literal] = ACTIONS(1635), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1633), - [sym_at_ident] = ACTIONS(1635), - [sym_hash_ident] = ACTIONS(1635), - [sym_type_ident] = ACTIONS(1635), - [sym_ct_type_ident] = ACTIONS(1635), - [sym_const_ident] = ACTIONS(1633), - [sym_builtin] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_tlocal] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_fn] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_var] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_defer] = ACTIONS(1633), - [anon_sym_assert] = ACTIONS(1633), - [anon_sym_nextcase] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_foreach] = ACTIONS(1633), - [anon_sym_foreach_r] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_int] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1633), - [anon_sym_DOLLARassert] = ACTIONS(1633), - [anon_sym_DOLLARerror] = ACTIONS(1633), - [anon_sym_DOLLARecho] = ACTIONS(1633), - [anon_sym_DOLLARif] = ACTIONS(1633), - [anon_sym_DOLLARcase] = ACTIONS(1633), - [anon_sym_DOLLARdefault] = ACTIONS(1633), - [anon_sym_DOLLARswitch] = ACTIONS(1633), - [anon_sym_DOLLARendswitch] = ACTIONS(1633), - [anon_sym_DOLLARfor] = ACTIONS(1633), - [anon_sym_DOLLARforeach] = ACTIONS(1633), - [anon_sym_DOLLARalignof] = ACTIONS(1633), - [anon_sym_DOLLARextnameof] = ACTIONS(1633), - [anon_sym_DOLLARnameof] = ACTIONS(1633), - [anon_sym_DOLLARoffsetof] = ACTIONS(1633), - [anon_sym_DOLLARqnameof] = ACTIONS(1633), - [anon_sym_DOLLARvaconst] = ACTIONS(1633), - [anon_sym_DOLLARvaarg] = ACTIONS(1633), - [anon_sym_DOLLARvaref] = ACTIONS(1633), - [anon_sym_DOLLARvaexpr] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [anon_sym_DOLLARvacount] = ACTIONS(1633), - [anon_sym_DOLLAReval] = ACTIONS(1633), - [anon_sym_DOLLARis_const] = ACTIONS(1633), - [anon_sym_DOLLARsizeof] = ACTIONS(1633), - [anon_sym_DOLLARstringify] = ACTIONS(1633), - [anon_sym_DOLLARappend] = ACTIONS(1633), - [anon_sym_DOLLARconcat] = ACTIONS(1633), - [anon_sym_DOLLARdefined] = ACTIONS(1633), - [anon_sym_DOLLARembed] = ACTIONS(1633), - [anon_sym_DOLLARand] = ACTIONS(1633), - [anon_sym_DOLLARor] = ACTIONS(1633), - [anon_sym_DOLLARfeature] = ACTIONS(1633), - [anon_sym_DOLLARassignable] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_typeid] = ACTIONS(1633), - [anon_sym_LBRACE_PIPE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1633), - [anon_sym_bool] = ACTIONS(1633), - [anon_sym_char] = ACTIONS(1633), - [anon_sym_ichar] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [anon_sym_ushort] = ACTIONS(1633), - [anon_sym_uint] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_ulong] = ACTIONS(1633), - [anon_sym_int128] = ACTIONS(1633), - [anon_sym_uint128] = ACTIONS(1633), - [anon_sym_float] = ACTIONS(1633), - [anon_sym_double] = ACTIONS(1633), - [anon_sym_float16] = ACTIONS(1633), - [anon_sym_bfloat16] = ACTIONS(1633), - [anon_sym_float128] = ACTIONS(1633), - [anon_sym_iptr] = ACTIONS(1633), - [anon_sym_uptr] = ACTIONS(1633), - [anon_sym_isz] = ACTIONS(1633), - [anon_sym_usz] = ACTIONS(1633), - [anon_sym_anyfault] = ACTIONS(1633), - [anon_sym_any] = ACTIONS(1633), - [anon_sym_DOLLARtypeof] = ACTIONS(1633), - [anon_sym_DOLLARtypefrom] = ACTIONS(1633), - [anon_sym_DOLLARevaltype] = ACTIONS(1633), - [anon_sym_DOLLARvatype] = ACTIONS(1633), - [sym_real_literal] = ACTIONS(1635), - }, [451] = { [sym_line_comment] = STATE(451), [sym_doc_comment] = STATE(451), [sym_block_comment] = STATE(451), - [sym_ident] = ACTIONS(1387), - [sym_integer_literal] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [anon_sym_BQUOTE] = ACTIONS(1389), - [sym_bytes_literal] = ACTIONS(1389), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1387), - [sym_at_ident] = ACTIONS(1389), - [sym_hash_ident] = ACTIONS(1389), - [sym_type_ident] = ACTIONS(1389), - [sym_ct_type_ident] = ACTIONS(1389), - [sym_const_ident] = ACTIONS(1387), - [sym_builtin] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_tlocal] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_var] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_defer] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_nextcase] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_foreach] = ACTIONS(1387), - [anon_sym_foreach_r] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_int] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym_DOLLARassert] = ACTIONS(1387), - [anon_sym_DOLLARerror] = ACTIONS(1387), - [anon_sym_DOLLARecho] = ACTIONS(1387), - [anon_sym_DOLLARif] = ACTIONS(1387), - [anon_sym_DOLLARcase] = ACTIONS(1387), - [anon_sym_DOLLARdefault] = ACTIONS(1387), - [anon_sym_DOLLARswitch] = ACTIONS(1387), - [anon_sym_DOLLARendswitch] = ACTIONS(1387), - [anon_sym_DOLLARfor] = ACTIONS(1387), - [anon_sym_DOLLARforeach] = ACTIONS(1387), - [anon_sym_DOLLARalignof] = ACTIONS(1387), - [anon_sym_DOLLARextnameof] = ACTIONS(1387), - [anon_sym_DOLLARnameof] = ACTIONS(1387), - [anon_sym_DOLLARoffsetof] = ACTIONS(1387), - [anon_sym_DOLLARqnameof] = ACTIONS(1387), - [anon_sym_DOLLARvaconst] = ACTIONS(1387), - [anon_sym_DOLLARvaarg] = ACTIONS(1387), - [anon_sym_DOLLARvaref] = ACTIONS(1387), - [anon_sym_DOLLARvaexpr] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_null] = ACTIONS(1387), - [anon_sym_DOLLARvacount] = ACTIONS(1387), - [anon_sym_DOLLAReval] = ACTIONS(1387), - [anon_sym_DOLLARis_const] = ACTIONS(1387), - [anon_sym_DOLLARsizeof] = ACTIONS(1387), - [anon_sym_DOLLARstringify] = ACTIONS(1387), - [anon_sym_DOLLARappend] = ACTIONS(1387), - [anon_sym_DOLLARconcat] = ACTIONS(1387), - [anon_sym_DOLLARdefined] = ACTIONS(1387), - [anon_sym_DOLLARembed] = ACTIONS(1387), - [anon_sym_DOLLARand] = ACTIONS(1387), - [anon_sym_DOLLARor] = ACTIONS(1387), - [anon_sym_DOLLARfeature] = ACTIONS(1387), - [anon_sym_DOLLARassignable] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_typeid] = ACTIONS(1387), - [anon_sym_LBRACE_PIPE] = ACTIONS(1389), - [anon_sym_void] = ACTIONS(1387), - [anon_sym_bool] = ACTIONS(1387), - [anon_sym_char] = ACTIONS(1387), - [anon_sym_ichar] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_ushort] = ACTIONS(1387), - [anon_sym_uint] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_ulong] = ACTIONS(1387), - [anon_sym_int128] = ACTIONS(1387), - [anon_sym_uint128] = ACTIONS(1387), - [anon_sym_float] = ACTIONS(1387), - [anon_sym_double] = ACTIONS(1387), - [anon_sym_float16] = ACTIONS(1387), - [anon_sym_bfloat16] = ACTIONS(1387), - [anon_sym_float128] = ACTIONS(1387), - [anon_sym_iptr] = ACTIONS(1387), - [anon_sym_uptr] = ACTIONS(1387), - [anon_sym_isz] = ACTIONS(1387), - [anon_sym_usz] = ACTIONS(1387), - [anon_sym_anyfault] = ACTIONS(1387), - [anon_sym_any] = ACTIONS(1387), - [anon_sym_DOLLARtypeof] = ACTIONS(1387), - [anon_sym_DOLLARtypefrom] = ACTIONS(1387), - [anon_sym_DOLLARevaltype] = ACTIONS(1387), - [anon_sym_DOLLARvatype] = ACTIONS(1387), - [sym_real_literal] = ACTIONS(1389), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARcase] = ACTIONS(1581), + [anon_sym_DOLLARdefault] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARendswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, [452] = { [sym_line_comment] = STATE(452), [sym_doc_comment] = STATE(452), [sym_block_comment] = STATE(452), - [sym_ident] = ACTIONS(1391), - [sym_integer_literal] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [anon_sym_BQUOTE] = ACTIONS(1393), - [sym_bytes_literal] = ACTIONS(1393), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1391), - [sym_at_ident] = ACTIONS(1393), - [sym_hash_ident] = ACTIONS(1393), - [sym_type_ident] = ACTIONS(1393), - [sym_ct_type_ident] = ACTIONS(1393), - [sym_const_ident] = ACTIONS(1391), - [sym_builtin] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_tlocal] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_var] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_defer] = ACTIONS(1391), - [anon_sym_assert] = ACTIONS(1391), - [anon_sym_nextcase] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_foreach] = ACTIONS(1391), - [anon_sym_foreach_r] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_int] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1391), - [anon_sym_DOLLARassert] = ACTIONS(1391), - [anon_sym_DOLLARerror] = ACTIONS(1391), - [anon_sym_DOLLARecho] = ACTIONS(1391), - [anon_sym_DOLLARif] = ACTIONS(1391), - [anon_sym_DOLLARcase] = ACTIONS(1391), - [anon_sym_DOLLARdefault] = ACTIONS(1391), - [anon_sym_DOLLARswitch] = ACTIONS(1391), - [anon_sym_DOLLARendswitch] = ACTIONS(1391), - [anon_sym_DOLLARfor] = ACTIONS(1391), - [anon_sym_DOLLARforeach] = ACTIONS(1391), - [anon_sym_DOLLARalignof] = ACTIONS(1391), - [anon_sym_DOLLARextnameof] = ACTIONS(1391), - [anon_sym_DOLLARnameof] = ACTIONS(1391), - [anon_sym_DOLLARoffsetof] = ACTIONS(1391), - [anon_sym_DOLLARqnameof] = ACTIONS(1391), - [anon_sym_DOLLARvaconst] = ACTIONS(1391), - [anon_sym_DOLLARvaarg] = ACTIONS(1391), - [anon_sym_DOLLARvaref] = ACTIONS(1391), - [anon_sym_DOLLARvaexpr] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1391), - [anon_sym_false] = ACTIONS(1391), - [anon_sym_null] = ACTIONS(1391), - [anon_sym_DOLLARvacount] = ACTIONS(1391), - [anon_sym_DOLLAReval] = ACTIONS(1391), - [anon_sym_DOLLARis_const] = ACTIONS(1391), - [anon_sym_DOLLARsizeof] = ACTIONS(1391), - [anon_sym_DOLLARstringify] = ACTIONS(1391), - [anon_sym_DOLLARappend] = ACTIONS(1391), - [anon_sym_DOLLARconcat] = ACTIONS(1391), - [anon_sym_DOLLARdefined] = ACTIONS(1391), - [anon_sym_DOLLARembed] = ACTIONS(1391), - [anon_sym_DOLLARand] = ACTIONS(1391), - [anon_sym_DOLLARor] = ACTIONS(1391), - [anon_sym_DOLLARfeature] = ACTIONS(1391), - [anon_sym_DOLLARassignable] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_typeid] = ACTIONS(1391), - [anon_sym_LBRACE_PIPE] = ACTIONS(1393), - [anon_sym_void] = ACTIONS(1391), - [anon_sym_bool] = ACTIONS(1391), - [anon_sym_char] = ACTIONS(1391), - [anon_sym_ichar] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_ushort] = ACTIONS(1391), - [anon_sym_uint] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_ulong] = ACTIONS(1391), - [anon_sym_int128] = ACTIONS(1391), - [anon_sym_uint128] = ACTIONS(1391), - [anon_sym_float] = ACTIONS(1391), - [anon_sym_double] = ACTIONS(1391), - [anon_sym_float16] = ACTIONS(1391), - [anon_sym_bfloat16] = ACTIONS(1391), - [anon_sym_float128] = ACTIONS(1391), - [anon_sym_iptr] = ACTIONS(1391), - [anon_sym_uptr] = ACTIONS(1391), - [anon_sym_isz] = ACTIONS(1391), - [anon_sym_usz] = ACTIONS(1391), - [anon_sym_anyfault] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_DOLLARtypeof] = ACTIONS(1391), - [anon_sym_DOLLARtypefrom] = ACTIONS(1391), - [anon_sym_DOLLARevaltype] = ACTIONS(1391), - [anon_sym_DOLLARvatype] = ACTIONS(1391), - [sym_real_literal] = ACTIONS(1393), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARcase] = ACTIONS(1597), + [anon_sym_DOLLARdefault] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARendswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, [453] = { [sym_line_comment] = STATE(453), [sym_doc_comment] = STATE(453), [sym_block_comment] = STATE(453), - [sym_ident] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [anon_sym_BQUOTE] = ACTIONS(1397), - [sym_bytes_literal] = ACTIONS(1397), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1395), - [sym_at_ident] = ACTIONS(1397), - [sym_hash_ident] = ACTIONS(1397), - [sym_type_ident] = ACTIONS(1397), - [sym_ct_type_ident] = ACTIONS(1397), - [sym_const_ident] = ACTIONS(1395), - [sym_builtin] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_tlocal] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_var] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_defer] = ACTIONS(1395), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_nextcase] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_foreach] = ACTIONS(1395), - [anon_sym_foreach_r] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_int] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_asm] = ACTIONS(1395), - [anon_sym_DOLLARassert] = ACTIONS(1395), - [anon_sym_DOLLARerror] = ACTIONS(1395), - [anon_sym_DOLLARecho] = ACTIONS(1395), - [anon_sym_DOLLARif] = ACTIONS(1395), - [anon_sym_DOLLARcase] = ACTIONS(1395), - [anon_sym_DOLLARdefault] = ACTIONS(1395), - [anon_sym_DOLLARswitch] = ACTIONS(1395), - [anon_sym_DOLLARendswitch] = ACTIONS(1395), - [anon_sym_DOLLARfor] = ACTIONS(1395), - [anon_sym_DOLLARforeach] = ACTIONS(1395), - [anon_sym_DOLLARalignof] = ACTIONS(1395), - [anon_sym_DOLLARextnameof] = ACTIONS(1395), - [anon_sym_DOLLARnameof] = ACTIONS(1395), - [anon_sym_DOLLARoffsetof] = ACTIONS(1395), - [anon_sym_DOLLARqnameof] = ACTIONS(1395), - [anon_sym_DOLLARvaconst] = ACTIONS(1395), - [anon_sym_DOLLARvaarg] = ACTIONS(1395), - [anon_sym_DOLLARvaref] = ACTIONS(1395), - [anon_sym_DOLLARvaexpr] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_DOLLARvacount] = ACTIONS(1395), - [anon_sym_DOLLAReval] = ACTIONS(1395), - [anon_sym_DOLLARis_const] = ACTIONS(1395), - [anon_sym_DOLLARsizeof] = ACTIONS(1395), - [anon_sym_DOLLARstringify] = ACTIONS(1395), - [anon_sym_DOLLARappend] = ACTIONS(1395), - [anon_sym_DOLLARconcat] = ACTIONS(1395), - [anon_sym_DOLLARdefined] = ACTIONS(1395), - [anon_sym_DOLLARembed] = ACTIONS(1395), - [anon_sym_DOLLARand] = ACTIONS(1395), - [anon_sym_DOLLARor] = ACTIONS(1395), - [anon_sym_DOLLARfeature] = ACTIONS(1395), - [anon_sym_DOLLARassignable] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_typeid] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_ichar] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [anon_sym_ushort] = ACTIONS(1395), - [anon_sym_uint] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_ulong] = ACTIONS(1395), - [anon_sym_int128] = ACTIONS(1395), - [anon_sym_uint128] = ACTIONS(1395), - [anon_sym_float] = ACTIONS(1395), - [anon_sym_double] = ACTIONS(1395), - [anon_sym_float16] = ACTIONS(1395), - [anon_sym_bfloat16] = ACTIONS(1395), - [anon_sym_float128] = ACTIONS(1395), - [anon_sym_iptr] = ACTIONS(1395), - [anon_sym_uptr] = ACTIONS(1395), - [anon_sym_isz] = ACTIONS(1395), - [anon_sym_usz] = ACTIONS(1395), - [anon_sym_anyfault] = ACTIONS(1395), - [anon_sym_any] = ACTIONS(1395), - [anon_sym_DOLLARtypeof] = ACTIONS(1395), - [anon_sym_DOLLARtypefrom] = ACTIONS(1395), - [anon_sym_DOLLARevaltype] = ACTIONS(1395), - [anon_sym_DOLLARvatype] = ACTIONS(1395), - [sym_real_literal] = ACTIONS(1397), - }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_doc_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [sym_ident] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1409), - [sym_bytes_literal] = ACTIONS(1409), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1407), - [sym_at_ident] = ACTIONS(1409), - [sym_hash_ident] = ACTIONS(1409), - [sym_type_ident] = ACTIONS(1409), - [sym_ct_type_ident] = ACTIONS(1409), - [sym_const_ident] = ACTIONS(1407), - [sym_builtin] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_tlocal] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_var] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_defer] = ACTIONS(1407), - [anon_sym_assert] = ACTIONS(1407), - [anon_sym_nextcase] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_foreach] = ACTIONS(1407), - [anon_sym_foreach_r] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_int] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym_DOLLARassert] = ACTIONS(1407), - [anon_sym_DOLLARerror] = ACTIONS(1407), - [anon_sym_DOLLARecho] = ACTIONS(1407), - [anon_sym_DOLLARif] = ACTIONS(1407), - [anon_sym_DOLLARcase] = ACTIONS(1407), - [anon_sym_DOLLARdefault] = ACTIONS(1407), - [anon_sym_DOLLARswitch] = ACTIONS(1407), - [anon_sym_DOLLARendswitch] = ACTIONS(1407), - [anon_sym_DOLLARfor] = ACTIONS(1407), - [anon_sym_DOLLARforeach] = ACTIONS(1407), - [anon_sym_DOLLARalignof] = ACTIONS(1407), - [anon_sym_DOLLARextnameof] = ACTIONS(1407), - [anon_sym_DOLLARnameof] = ACTIONS(1407), - [anon_sym_DOLLARoffsetof] = ACTIONS(1407), - [anon_sym_DOLLARqnameof] = ACTIONS(1407), - [anon_sym_DOLLARvaconst] = ACTIONS(1407), - [anon_sym_DOLLARvaarg] = ACTIONS(1407), - [anon_sym_DOLLARvaref] = ACTIONS(1407), - [anon_sym_DOLLARvaexpr] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [anon_sym_null] = ACTIONS(1407), - [anon_sym_DOLLARvacount] = ACTIONS(1407), - [anon_sym_DOLLAReval] = ACTIONS(1407), - [anon_sym_DOLLARis_const] = ACTIONS(1407), - [anon_sym_DOLLARsizeof] = ACTIONS(1407), - [anon_sym_DOLLARstringify] = ACTIONS(1407), - [anon_sym_DOLLARappend] = ACTIONS(1407), - [anon_sym_DOLLARconcat] = ACTIONS(1407), - [anon_sym_DOLLARdefined] = ACTIONS(1407), - [anon_sym_DOLLARembed] = ACTIONS(1407), - [anon_sym_DOLLARand] = ACTIONS(1407), - [anon_sym_DOLLARor] = ACTIONS(1407), - [anon_sym_DOLLARfeature] = ACTIONS(1407), - [anon_sym_DOLLARassignable] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_typeid] = ACTIONS(1407), - [anon_sym_LBRACE_PIPE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1407), - [anon_sym_bool] = ACTIONS(1407), - [anon_sym_char] = ACTIONS(1407), - [anon_sym_ichar] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_ushort] = ACTIONS(1407), - [anon_sym_uint] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_ulong] = ACTIONS(1407), - [anon_sym_int128] = ACTIONS(1407), - [anon_sym_uint128] = ACTIONS(1407), - [anon_sym_float] = ACTIONS(1407), - [anon_sym_double] = ACTIONS(1407), - [anon_sym_float16] = ACTIONS(1407), - [anon_sym_bfloat16] = ACTIONS(1407), - [anon_sym_float128] = ACTIONS(1407), - [anon_sym_iptr] = ACTIONS(1407), - [anon_sym_uptr] = ACTIONS(1407), - [anon_sym_isz] = ACTIONS(1407), - [anon_sym_usz] = ACTIONS(1407), - [anon_sym_anyfault] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_DOLLARtypeof] = ACTIONS(1407), - [anon_sym_DOLLARtypefrom] = ACTIONS(1407), - [anon_sym_DOLLARevaltype] = ACTIONS(1407), - [anon_sym_DOLLARvatype] = ACTIONS(1407), - [sym_real_literal] = ACTIONS(1409), - }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_doc_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARcase] = ACTIONS(1475), - [anon_sym_DOLLARdefault] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARendswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARappend] = ACTIONS(1475), - [anon_sym_DOLLARconcat] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), - }, - [456] = { - [sym_line_comment] = STATE(456), - [sym_doc_comment] = STATE(456), - [sym_block_comment] = STATE(456), - [sym_ident] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [anon_sym_BQUOTE] = ACTIONS(1511), - [sym_bytes_literal] = ACTIONS(1511), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1509), - [sym_at_ident] = ACTIONS(1511), - [sym_hash_ident] = ACTIONS(1511), - [sym_type_ident] = ACTIONS(1511), - [sym_ct_type_ident] = ACTIONS(1511), - [sym_const_ident] = ACTIONS(1509), - [sym_builtin] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_tlocal] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_var] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_defer] = ACTIONS(1509), - [anon_sym_assert] = ACTIONS(1509), - [anon_sym_nextcase] = ACTIONS(1509), - [anon_sym_switch] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_foreach] = ACTIONS(1509), - [anon_sym_foreach_r] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_do] = ACTIONS(1509), - [anon_sym_int] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_asm] = ACTIONS(1509), - [anon_sym_DOLLARassert] = ACTIONS(1509), - [anon_sym_DOLLARerror] = ACTIONS(1509), - [anon_sym_DOLLARecho] = ACTIONS(1509), - [anon_sym_DOLLARif] = ACTIONS(1509), - [anon_sym_DOLLARcase] = ACTIONS(1509), - [anon_sym_DOLLARdefault] = ACTIONS(1509), - [anon_sym_DOLLARswitch] = ACTIONS(1509), - [anon_sym_DOLLARendswitch] = ACTIONS(1509), - [anon_sym_DOLLARfor] = ACTIONS(1509), - [anon_sym_DOLLARforeach] = ACTIONS(1509), - [anon_sym_DOLLARalignof] = ACTIONS(1509), - [anon_sym_DOLLARextnameof] = ACTIONS(1509), - [anon_sym_DOLLARnameof] = ACTIONS(1509), - [anon_sym_DOLLARoffsetof] = ACTIONS(1509), - [anon_sym_DOLLARqnameof] = ACTIONS(1509), - [anon_sym_DOLLARvaconst] = ACTIONS(1509), - [anon_sym_DOLLARvaarg] = ACTIONS(1509), - [anon_sym_DOLLARvaref] = ACTIONS(1509), - [anon_sym_DOLLARvaexpr] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_null] = ACTIONS(1509), - [anon_sym_DOLLARvacount] = ACTIONS(1509), - [anon_sym_DOLLAReval] = ACTIONS(1509), - [anon_sym_DOLLARis_const] = ACTIONS(1509), - [anon_sym_DOLLARsizeof] = ACTIONS(1509), - [anon_sym_DOLLARstringify] = ACTIONS(1509), - [anon_sym_DOLLARappend] = ACTIONS(1509), - [anon_sym_DOLLARconcat] = ACTIONS(1509), - [anon_sym_DOLLARdefined] = ACTIONS(1509), - [anon_sym_DOLLARembed] = ACTIONS(1509), - [anon_sym_DOLLARand] = ACTIONS(1509), - [anon_sym_DOLLARor] = ACTIONS(1509), - [anon_sym_DOLLARfeature] = ACTIONS(1509), - [anon_sym_DOLLARassignable] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_typeid] = ACTIONS(1509), - [anon_sym_LBRACE_PIPE] = ACTIONS(1511), - [anon_sym_void] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_ichar] = ACTIONS(1509), - [anon_sym_short] = ACTIONS(1509), - [anon_sym_ushort] = ACTIONS(1509), - [anon_sym_uint] = ACTIONS(1509), - [anon_sym_long] = ACTIONS(1509), - [anon_sym_ulong] = ACTIONS(1509), - [anon_sym_int128] = ACTIONS(1509), - [anon_sym_uint128] = ACTIONS(1509), - [anon_sym_float] = ACTIONS(1509), - [anon_sym_double] = ACTIONS(1509), - [anon_sym_float16] = ACTIONS(1509), - [anon_sym_bfloat16] = ACTIONS(1509), - [anon_sym_float128] = ACTIONS(1509), - [anon_sym_iptr] = ACTIONS(1509), - [anon_sym_uptr] = ACTIONS(1509), - [anon_sym_isz] = ACTIONS(1509), - [anon_sym_usz] = ACTIONS(1509), - [anon_sym_anyfault] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_DOLLARtypeof] = ACTIONS(1509), - [anon_sym_DOLLARtypefrom] = ACTIONS(1509), - [anon_sym_DOLLARevaltype] = ACTIONS(1509), - [anon_sym_DOLLARvatype] = ACTIONS(1509), - [sym_real_literal] = ACTIONS(1511), - }, - [457] = { - [sym_line_comment] = STATE(457), - [sym_doc_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [sym_ident] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [anon_sym_BQUOTE] = ACTIONS(1519), - [sym_bytes_literal] = ACTIONS(1519), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1517), - [sym_at_ident] = ACTIONS(1519), - [sym_hash_ident] = ACTIONS(1519), - [sym_type_ident] = ACTIONS(1519), - [sym_ct_type_ident] = ACTIONS(1519), - [sym_const_ident] = ACTIONS(1517), - [sym_builtin] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_tlocal] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_var] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_defer] = ACTIONS(1517), - [anon_sym_assert] = ACTIONS(1517), - [anon_sym_nextcase] = ACTIONS(1517), - [anon_sym_switch] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_foreach] = ACTIONS(1517), - [anon_sym_foreach_r] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_int] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_asm] = ACTIONS(1517), - [anon_sym_DOLLARassert] = ACTIONS(1517), - [anon_sym_DOLLARerror] = ACTIONS(1517), - [anon_sym_DOLLARecho] = ACTIONS(1517), - [anon_sym_DOLLARif] = ACTIONS(1517), - [anon_sym_DOLLARcase] = ACTIONS(1517), - [anon_sym_DOLLARdefault] = ACTIONS(1517), - [anon_sym_DOLLARswitch] = ACTIONS(1517), - [anon_sym_DOLLARendswitch] = ACTIONS(1517), - [anon_sym_DOLLARfor] = ACTIONS(1517), - [anon_sym_DOLLARforeach] = ACTIONS(1517), - [anon_sym_DOLLARalignof] = ACTIONS(1517), - [anon_sym_DOLLARextnameof] = ACTIONS(1517), - [anon_sym_DOLLARnameof] = ACTIONS(1517), - [anon_sym_DOLLARoffsetof] = ACTIONS(1517), - [anon_sym_DOLLARqnameof] = ACTIONS(1517), - [anon_sym_DOLLARvaconst] = ACTIONS(1517), - [anon_sym_DOLLARvaarg] = ACTIONS(1517), - [anon_sym_DOLLARvaref] = ACTIONS(1517), - [anon_sym_DOLLARvaexpr] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_null] = ACTIONS(1517), - [anon_sym_DOLLARvacount] = ACTIONS(1517), - [anon_sym_DOLLAReval] = ACTIONS(1517), - [anon_sym_DOLLARis_const] = ACTIONS(1517), - [anon_sym_DOLLARsizeof] = ACTIONS(1517), - [anon_sym_DOLLARstringify] = ACTIONS(1517), - [anon_sym_DOLLARappend] = ACTIONS(1517), - [anon_sym_DOLLARconcat] = ACTIONS(1517), - [anon_sym_DOLLARdefined] = ACTIONS(1517), - [anon_sym_DOLLARembed] = ACTIONS(1517), - [anon_sym_DOLLARand] = ACTIONS(1517), - [anon_sym_DOLLARor] = ACTIONS(1517), - [anon_sym_DOLLARfeature] = ACTIONS(1517), - [anon_sym_DOLLARassignable] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_typeid] = ACTIONS(1517), - [anon_sym_LBRACE_PIPE] = ACTIONS(1519), - [anon_sym_void] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_ichar] = ACTIONS(1517), - [anon_sym_short] = ACTIONS(1517), - [anon_sym_ushort] = ACTIONS(1517), - [anon_sym_uint] = ACTIONS(1517), - [anon_sym_long] = ACTIONS(1517), - [anon_sym_ulong] = ACTIONS(1517), - [anon_sym_int128] = ACTIONS(1517), - [anon_sym_uint128] = ACTIONS(1517), - [anon_sym_float] = ACTIONS(1517), - [anon_sym_double] = ACTIONS(1517), - [anon_sym_float16] = ACTIONS(1517), - [anon_sym_bfloat16] = ACTIONS(1517), - [anon_sym_float128] = ACTIONS(1517), - [anon_sym_iptr] = ACTIONS(1517), - [anon_sym_uptr] = ACTIONS(1517), - [anon_sym_isz] = ACTIONS(1517), - [anon_sym_usz] = ACTIONS(1517), - [anon_sym_anyfault] = ACTIONS(1517), - [anon_sym_any] = ACTIONS(1517), - [anon_sym_DOLLARtypeof] = ACTIONS(1517), - [anon_sym_DOLLARtypefrom] = ACTIONS(1517), - [anon_sym_DOLLARevaltype] = ACTIONS(1517), - [anon_sym_DOLLARvatype] = ACTIONS(1517), - [sym_real_literal] = ACTIONS(1519), - }, - [458] = { - [sym_line_comment] = STATE(458), - [sym_doc_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [sym_ident] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_bytes_literal] = ACTIONS(1461), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1459), - [sym_at_ident] = ACTIONS(1461), - [sym_hash_ident] = ACTIONS(1461), - [sym_type_ident] = ACTIONS(1461), - [sym_ct_type_ident] = ACTIONS(1461), - [sym_const_ident] = ACTIONS(1459), - [sym_builtin] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_tlocal] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_var] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_defer] = ACTIONS(1459), - [anon_sym_assert] = ACTIONS(1459), - [anon_sym_nextcase] = ACTIONS(1459), - [anon_sym_switch] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_foreach] = ACTIONS(1459), - [anon_sym_foreach_r] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_int] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1459), - [anon_sym_DOLLARassert] = ACTIONS(1459), - [anon_sym_DOLLARerror] = ACTIONS(1459), - [anon_sym_DOLLARecho] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1459), - [anon_sym_DOLLARcase] = ACTIONS(1459), - [anon_sym_DOLLARdefault] = ACTIONS(1459), - [anon_sym_DOLLARswitch] = ACTIONS(1459), - [anon_sym_DOLLARendswitch] = ACTIONS(1459), - [anon_sym_DOLLARfor] = ACTIONS(1459), - [anon_sym_DOLLARforeach] = ACTIONS(1459), - [anon_sym_DOLLARalignof] = ACTIONS(1459), - [anon_sym_DOLLARextnameof] = ACTIONS(1459), - [anon_sym_DOLLARnameof] = ACTIONS(1459), - [anon_sym_DOLLARoffsetof] = ACTIONS(1459), - [anon_sym_DOLLARqnameof] = ACTIONS(1459), - [anon_sym_DOLLARvaconst] = ACTIONS(1459), - [anon_sym_DOLLARvaarg] = ACTIONS(1459), - [anon_sym_DOLLARvaref] = ACTIONS(1459), - [anon_sym_DOLLARvaexpr] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1459), - [anon_sym_DOLLARvacount] = ACTIONS(1459), - [anon_sym_DOLLAReval] = ACTIONS(1459), - [anon_sym_DOLLARis_const] = ACTIONS(1459), - [anon_sym_DOLLARsizeof] = ACTIONS(1459), - [anon_sym_DOLLARstringify] = ACTIONS(1459), - [anon_sym_DOLLARappend] = ACTIONS(1459), - [anon_sym_DOLLARconcat] = ACTIONS(1459), - [anon_sym_DOLLARdefined] = ACTIONS(1459), - [anon_sym_DOLLARembed] = ACTIONS(1459), - [anon_sym_DOLLARand] = ACTIONS(1459), - [anon_sym_DOLLARor] = ACTIONS(1459), - [anon_sym_DOLLARfeature] = ACTIONS(1459), - [anon_sym_DOLLARassignable] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_typeid] = ACTIONS(1459), - [anon_sym_LBRACE_PIPE] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_ichar] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [anon_sym_ushort] = ACTIONS(1459), - [anon_sym_uint] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_ulong] = ACTIONS(1459), - [anon_sym_int128] = ACTIONS(1459), - [anon_sym_uint128] = ACTIONS(1459), - [anon_sym_float] = ACTIONS(1459), - [anon_sym_double] = ACTIONS(1459), - [anon_sym_float16] = ACTIONS(1459), - [anon_sym_bfloat16] = ACTIONS(1459), - [anon_sym_float128] = ACTIONS(1459), - [anon_sym_iptr] = ACTIONS(1459), - [anon_sym_uptr] = ACTIONS(1459), - [anon_sym_isz] = ACTIONS(1459), - [anon_sym_usz] = ACTIONS(1459), - [anon_sym_anyfault] = ACTIONS(1459), - [anon_sym_any] = ACTIONS(1459), - [anon_sym_DOLLARtypeof] = ACTIONS(1459), - [anon_sym_DOLLARtypefrom] = ACTIONS(1459), - [anon_sym_DOLLARevaltype] = ACTIONS(1459), - [anon_sym_DOLLARvatype] = ACTIONS(1459), - [sym_real_literal] = ACTIONS(1461), - }, - [459] = { - [sym_line_comment] = STATE(459), - [sym_doc_comment] = STATE(459), - [sym_block_comment] = STATE(459), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARcase] = ACTIONS(1467), - [anon_sym_DOLLARdefault] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARendswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARappend] = ACTIONS(1467), - [anon_sym_DOLLARconcat] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), - }, - [460] = { - [sym_line_comment] = STATE(460), - [sym_doc_comment] = STATE(460), - [sym_block_comment] = STATE(460), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARcase] = ACTIONS(1471), - [anon_sym_DOLLARdefault] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARendswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARappend] = ACTIONS(1471), - [anon_sym_DOLLARconcat] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), - }, - [461] = { - [sym_line_comment] = STATE(461), - [sym_doc_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARcase] = ACTIONS(1495), - [anon_sym_DOLLARdefault] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARendswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARappend] = ACTIONS(1495), - [anon_sym_DOLLARconcat] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), - }, - [462] = { - [sym_line_comment] = STATE(462), - [sym_doc_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARcase] = ACTIONS(1503), - [anon_sym_DOLLARdefault] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARendswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARappend] = ACTIONS(1503), - [anon_sym_DOLLARconcat] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), - }, - [463] = { - [sym_line_comment] = STATE(463), - [sym_doc_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_ident] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [anon_sym_BQUOTE] = ACTIONS(1523), - [sym_bytes_literal] = ACTIONS(1523), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1521), - [sym_at_ident] = ACTIONS(1523), - [sym_hash_ident] = ACTIONS(1523), - [sym_type_ident] = ACTIONS(1523), - [sym_ct_type_ident] = ACTIONS(1523), - [sym_const_ident] = ACTIONS(1521), - [sym_builtin] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_tlocal] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_defer] = ACTIONS(1521), - [anon_sym_assert] = ACTIONS(1521), - [anon_sym_nextcase] = ACTIONS(1521), - [anon_sym_switch] = ACTIONS(1521), - [anon_sym_AMP_AMP] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_foreach] = ACTIONS(1521), - [anon_sym_foreach_r] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_do] = ACTIONS(1521), - [anon_sym_int] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_asm] = ACTIONS(1521), - [anon_sym_DOLLARassert] = ACTIONS(1521), - [anon_sym_DOLLARerror] = ACTIONS(1521), - [anon_sym_DOLLARecho] = ACTIONS(1521), - [anon_sym_DOLLARif] = ACTIONS(1521), - [anon_sym_DOLLARcase] = ACTIONS(1521), - [anon_sym_DOLLARdefault] = ACTIONS(1521), - [anon_sym_DOLLARswitch] = ACTIONS(1521), - [anon_sym_DOLLARendswitch] = ACTIONS(1521), - [anon_sym_DOLLARfor] = ACTIONS(1521), - [anon_sym_DOLLARforeach] = ACTIONS(1521), - [anon_sym_DOLLARalignof] = ACTIONS(1521), - [anon_sym_DOLLARextnameof] = ACTIONS(1521), - [anon_sym_DOLLARnameof] = ACTIONS(1521), - [anon_sym_DOLLARoffsetof] = ACTIONS(1521), - [anon_sym_DOLLARqnameof] = ACTIONS(1521), - [anon_sym_DOLLARvaconst] = ACTIONS(1521), - [anon_sym_DOLLARvaarg] = ACTIONS(1521), - [anon_sym_DOLLARvaref] = ACTIONS(1521), - [anon_sym_DOLLARvaexpr] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [anon_sym_DOLLARvacount] = ACTIONS(1521), - [anon_sym_DOLLAReval] = ACTIONS(1521), - [anon_sym_DOLLARis_const] = ACTIONS(1521), - [anon_sym_DOLLARsizeof] = ACTIONS(1521), - [anon_sym_DOLLARstringify] = ACTIONS(1521), - [anon_sym_DOLLARappend] = ACTIONS(1521), - [anon_sym_DOLLARconcat] = ACTIONS(1521), - [anon_sym_DOLLARdefined] = ACTIONS(1521), - [anon_sym_DOLLARembed] = ACTIONS(1521), - [anon_sym_DOLLARand] = ACTIONS(1521), - [anon_sym_DOLLARor] = ACTIONS(1521), - [anon_sym_DOLLARfeature] = ACTIONS(1521), - [anon_sym_DOLLARassignable] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_typeid] = ACTIONS(1521), - [anon_sym_LBRACE_PIPE] = ACTIONS(1523), - [anon_sym_void] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_ichar] = ACTIONS(1521), - [anon_sym_short] = ACTIONS(1521), - [anon_sym_ushort] = ACTIONS(1521), - [anon_sym_uint] = ACTIONS(1521), - [anon_sym_long] = ACTIONS(1521), - [anon_sym_ulong] = ACTIONS(1521), - [anon_sym_int128] = ACTIONS(1521), - [anon_sym_uint128] = ACTIONS(1521), - [anon_sym_float] = ACTIONS(1521), - [anon_sym_double] = ACTIONS(1521), - [anon_sym_float16] = ACTIONS(1521), - [anon_sym_bfloat16] = ACTIONS(1521), - [anon_sym_float128] = ACTIONS(1521), - [anon_sym_iptr] = ACTIONS(1521), - [anon_sym_uptr] = ACTIONS(1521), - [anon_sym_isz] = ACTIONS(1521), - [anon_sym_usz] = ACTIONS(1521), - [anon_sym_anyfault] = ACTIONS(1521), - [anon_sym_any] = ACTIONS(1521), - [anon_sym_DOLLARtypeof] = ACTIONS(1521), - [anon_sym_DOLLARtypefrom] = ACTIONS(1521), - [anon_sym_DOLLARevaltype] = ACTIONS(1521), - [anon_sym_DOLLARvatype] = ACTIONS(1521), - [sym_real_literal] = ACTIONS(1523), - }, - [464] = { - [sym_line_comment] = STATE(464), - [sym_doc_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [sym_ident] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1535), - [sym_bytes_literal] = ACTIONS(1535), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1533), - [sym_at_ident] = ACTIONS(1535), - [sym_hash_ident] = ACTIONS(1535), - [sym_type_ident] = ACTIONS(1535), - [sym_ct_type_ident] = ACTIONS(1535), - [sym_const_ident] = ACTIONS(1533), - [sym_builtin] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_tlocal] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_var] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_defer] = ACTIONS(1533), - [anon_sym_assert] = ACTIONS(1533), - [anon_sym_nextcase] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_foreach] = ACTIONS(1533), - [anon_sym_foreach_r] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_int] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_asm] = ACTIONS(1533), - [anon_sym_DOLLARassert] = ACTIONS(1533), - [anon_sym_DOLLARerror] = ACTIONS(1533), - [anon_sym_DOLLARecho] = ACTIONS(1533), - [anon_sym_DOLLARif] = ACTIONS(1533), - [anon_sym_DOLLARcase] = ACTIONS(1533), - [anon_sym_DOLLARdefault] = ACTIONS(1533), - [anon_sym_DOLLARswitch] = ACTIONS(1533), - [anon_sym_DOLLARendswitch] = ACTIONS(1533), - [anon_sym_DOLLARfor] = ACTIONS(1533), - [anon_sym_DOLLARforeach] = ACTIONS(1533), - [anon_sym_DOLLARalignof] = ACTIONS(1533), - [anon_sym_DOLLARextnameof] = ACTIONS(1533), - [anon_sym_DOLLARnameof] = ACTIONS(1533), - [anon_sym_DOLLARoffsetof] = ACTIONS(1533), - [anon_sym_DOLLARqnameof] = ACTIONS(1533), - [anon_sym_DOLLARvaconst] = ACTIONS(1533), - [anon_sym_DOLLARvaarg] = ACTIONS(1533), - [anon_sym_DOLLARvaref] = ACTIONS(1533), - [anon_sym_DOLLARvaexpr] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_null] = ACTIONS(1533), - [anon_sym_DOLLARvacount] = ACTIONS(1533), - [anon_sym_DOLLAReval] = ACTIONS(1533), - [anon_sym_DOLLARis_const] = ACTIONS(1533), - [anon_sym_DOLLARsizeof] = ACTIONS(1533), - [anon_sym_DOLLARstringify] = ACTIONS(1533), - [anon_sym_DOLLARappend] = ACTIONS(1533), - [anon_sym_DOLLARconcat] = ACTIONS(1533), - [anon_sym_DOLLARdefined] = ACTIONS(1533), - [anon_sym_DOLLARembed] = ACTIONS(1533), - [anon_sym_DOLLARand] = ACTIONS(1533), - [anon_sym_DOLLARor] = ACTIONS(1533), - [anon_sym_DOLLARfeature] = ACTIONS(1533), - [anon_sym_DOLLARassignable] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_typeid] = ACTIONS(1533), - [anon_sym_LBRACE_PIPE] = ACTIONS(1535), - [anon_sym_void] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_ichar] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_ushort] = ACTIONS(1533), - [anon_sym_uint] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_ulong] = ACTIONS(1533), - [anon_sym_int128] = ACTIONS(1533), - [anon_sym_uint128] = ACTIONS(1533), - [anon_sym_float] = ACTIONS(1533), - [anon_sym_double] = ACTIONS(1533), - [anon_sym_float16] = ACTIONS(1533), - [anon_sym_bfloat16] = ACTIONS(1533), - [anon_sym_float128] = ACTIONS(1533), - [anon_sym_iptr] = ACTIONS(1533), - [anon_sym_uptr] = ACTIONS(1533), - [anon_sym_isz] = ACTIONS(1533), - [anon_sym_usz] = ACTIONS(1533), - [anon_sym_anyfault] = ACTIONS(1533), - [anon_sym_any] = ACTIONS(1533), - [anon_sym_DOLLARtypeof] = ACTIONS(1533), - [anon_sym_DOLLARtypefrom] = ACTIONS(1533), - [anon_sym_DOLLARevaltype] = ACTIONS(1533), - [anon_sym_DOLLARvatype] = ACTIONS(1533), - [sym_real_literal] = ACTIONS(1535), - }, - [465] = { - [sym_line_comment] = STATE(465), - [sym_doc_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [sym_ident] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [anon_sym_BQUOTE] = ACTIONS(1543), - [sym_bytes_literal] = ACTIONS(1543), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1541), - [sym_at_ident] = ACTIONS(1543), - [sym_hash_ident] = ACTIONS(1543), - [sym_type_ident] = ACTIONS(1543), - [sym_ct_type_ident] = ACTIONS(1543), - [sym_const_ident] = ACTIONS(1541), - [sym_builtin] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_tlocal] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_defer] = ACTIONS(1541), - [anon_sym_assert] = ACTIONS(1541), - [anon_sym_nextcase] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_foreach] = ACTIONS(1541), - [anon_sym_foreach_r] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_int] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_asm] = ACTIONS(1541), - [anon_sym_DOLLARassert] = ACTIONS(1541), - [anon_sym_DOLLARerror] = ACTIONS(1541), - [anon_sym_DOLLARecho] = ACTIONS(1541), - [anon_sym_DOLLARif] = ACTIONS(1541), - [anon_sym_DOLLARcase] = ACTIONS(1541), - [anon_sym_DOLLARdefault] = ACTIONS(1541), - [anon_sym_DOLLARswitch] = ACTIONS(1541), - [anon_sym_DOLLARendswitch] = ACTIONS(1541), - [anon_sym_DOLLARfor] = ACTIONS(1541), - [anon_sym_DOLLARforeach] = ACTIONS(1541), - [anon_sym_DOLLARalignof] = ACTIONS(1541), - [anon_sym_DOLLARextnameof] = ACTIONS(1541), - [anon_sym_DOLLARnameof] = ACTIONS(1541), - [anon_sym_DOLLARoffsetof] = ACTIONS(1541), - [anon_sym_DOLLARqnameof] = ACTIONS(1541), - [anon_sym_DOLLARvaconst] = ACTIONS(1541), - [anon_sym_DOLLARvaarg] = ACTIONS(1541), - [anon_sym_DOLLARvaref] = ACTIONS(1541), - [anon_sym_DOLLARvaexpr] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_null] = ACTIONS(1541), - [anon_sym_DOLLARvacount] = ACTIONS(1541), - [anon_sym_DOLLAReval] = ACTIONS(1541), - [anon_sym_DOLLARis_const] = ACTIONS(1541), - [anon_sym_DOLLARsizeof] = ACTIONS(1541), - [anon_sym_DOLLARstringify] = ACTIONS(1541), - [anon_sym_DOLLARappend] = ACTIONS(1541), - [anon_sym_DOLLARconcat] = ACTIONS(1541), - [anon_sym_DOLLARdefined] = ACTIONS(1541), - [anon_sym_DOLLARembed] = ACTIONS(1541), - [anon_sym_DOLLARand] = ACTIONS(1541), - [anon_sym_DOLLARor] = ACTIONS(1541), - [anon_sym_DOLLARfeature] = ACTIONS(1541), - [anon_sym_DOLLARassignable] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_typeid] = ACTIONS(1541), - [anon_sym_LBRACE_PIPE] = ACTIONS(1543), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_ichar] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [anon_sym_ushort] = ACTIONS(1541), - [anon_sym_uint] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_ulong] = ACTIONS(1541), - [anon_sym_int128] = ACTIONS(1541), - [anon_sym_uint128] = ACTIONS(1541), - [anon_sym_float] = ACTIONS(1541), - [anon_sym_double] = ACTIONS(1541), - [anon_sym_float16] = ACTIONS(1541), - [anon_sym_bfloat16] = ACTIONS(1541), - [anon_sym_float128] = ACTIONS(1541), - [anon_sym_iptr] = ACTIONS(1541), - [anon_sym_uptr] = ACTIONS(1541), - [anon_sym_isz] = ACTIONS(1541), - [anon_sym_usz] = ACTIONS(1541), - [anon_sym_anyfault] = ACTIONS(1541), - [anon_sym_any] = ACTIONS(1541), - [anon_sym_DOLLARtypeof] = ACTIONS(1541), - [anon_sym_DOLLARtypefrom] = ACTIONS(1541), - [anon_sym_DOLLARevaltype] = ACTIONS(1541), - [anon_sym_DOLLARvatype] = ACTIONS(1541), - [sym_real_literal] = ACTIONS(1543), - }, - [466] = { - [sym_line_comment] = STATE(466), - [sym_doc_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [sym_ident] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1547), - [sym_bytes_literal] = ACTIONS(1547), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1545), - [sym_at_ident] = ACTIONS(1547), - [sym_hash_ident] = ACTIONS(1547), - [sym_type_ident] = ACTIONS(1547), - [sym_ct_type_ident] = ACTIONS(1547), - [sym_const_ident] = ACTIONS(1545), - [sym_builtin] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_tlocal] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_fn] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_var] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_defer] = ACTIONS(1545), - [anon_sym_assert] = ACTIONS(1545), - [anon_sym_nextcase] = ACTIONS(1545), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_foreach] = ACTIONS(1545), - [anon_sym_foreach_r] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_int] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym_DOLLARassert] = ACTIONS(1545), - [anon_sym_DOLLARerror] = ACTIONS(1545), - [anon_sym_DOLLARecho] = ACTIONS(1545), - [anon_sym_DOLLARif] = ACTIONS(1545), - [anon_sym_DOLLARcase] = ACTIONS(1545), - [anon_sym_DOLLARdefault] = ACTIONS(1545), - [anon_sym_DOLLARswitch] = ACTIONS(1545), - [anon_sym_DOLLARendswitch] = ACTIONS(1545), - [anon_sym_DOLLARfor] = ACTIONS(1545), - [anon_sym_DOLLARforeach] = ACTIONS(1545), - [anon_sym_DOLLARalignof] = ACTIONS(1545), - [anon_sym_DOLLARextnameof] = ACTIONS(1545), - [anon_sym_DOLLARnameof] = ACTIONS(1545), - [anon_sym_DOLLARoffsetof] = ACTIONS(1545), - [anon_sym_DOLLARqnameof] = ACTIONS(1545), - [anon_sym_DOLLARvaconst] = ACTIONS(1545), - [anon_sym_DOLLARvaarg] = ACTIONS(1545), - [anon_sym_DOLLARvaref] = ACTIONS(1545), - [anon_sym_DOLLARvaexpr] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_null] = ACTIONS(1545), - [anon_sym_DOLLARvacount] = ACTIONS(1545), - [anon_sym_DOLLAReval] = ACTIONS(1545), - [anon_sym_DOLLARis_const] = ACTIONS(1545), - [anon_sym_DOLLARsizeof] = ACTIONS(1545), - [anon_sym_DOLLARstringify] = ACTIONS(1545), - [anon_sym_DOLLARappend] = ACTIONS(1545), - [anon_sym_DOLLARconcat] = ACTIONS(1545), - [anon_sym_DOLLARdefined] = ACTIONS(1545), - [anon_sym_DOLLARembed] = ACTIONS(1545), - [anon_sym_DOLLARand] = ACTIONS(1545), - [anon_sym_DOLLARor] = ACTIONS(1545), - [anon_sym_DOLLARfeature] = ACTIONS(1545), - [anon_sym_DOLLARassignable] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_typeid] = ACTIONS(1545), - [anon_sym_LBRACE_PIPE] = ACTIONS(1547), - [anon_sym_void] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_ichar] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [anon_sym_ushort] = ACTIONS(1545), - [anon_sym_uint] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_ulong] = ACTIONS(1545), - [anon_sym_int128] = ACTIONS(1545), - [anon_sym_uint128] = ACTIONS(1545), - [anon_sym_float] = ACTIONS(1545), - [anon_sym_double] = ACTIONS(1545), - [anon_sym_float16] = ACTIONS(1545), - [anon_sym_bfloat16] = ACTIONS(1545), - [anon_sym_float128] = ACTIONS(1545), - [anon_sym_iptr] = ACTIONS(1545), - [anon_sym_uptr] = ACTIONS(1545), - [anon_sym_isz] = ACTIONS(1545), - [anon_sym_usz] = ACTIONS(1545), - [anon_sym_anyfault] = ACTIONS(1545), - [anon_sym_any] = ACTIONS(1545), - [anon_sym_DOLLARtypeof] = ACTIONS(1545), - [anon_sym_DOLLARtypefrom] = ACTIONS(1545), - [anon_sym_DOLLARevaltype] = ACTIONS(1545), - [anon_sym_DOLLARvatype] = ACTIONS(1545), - [sym_real_literal] = ACTIONS(1547), - }, - [467] = { - [sym_line_comment] = STATE(467), - [sym_doc_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [sym_ident] = ACTIONS(1557), - [sym_integer_literal] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [sym_bytes_literal] = ACTIONS(1559), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1557), - [sym_at_ident] = ACTIONS(1559), - [sym_hash_ident] = ACTIONS(1559), - [sym_type_ident] = ACTIONS(1559), - [sym_ct_type_ident] = ACTIONS(1559), - [sym_const_ident] = ACTIONS(1557), - [sym_builtin] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_tlocal] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_fn] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_var] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_defer] = ACTIONS(1557), - [anon_sym_assert] = ACTIONS(1557), - [anon_sym_nextcase] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_foreach] = ACTIONS(1557), - [anon_sym_foreach_r] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_int] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_asm] = ACTIONS(1557), - [anon_sym_DOLLARassert] = ACTIONS(1557), - [anon_sym_DOLLARerror] = ACTIONS(1557), - [anon_sym_DOLLARecho] = ACTIONS(1557), - [anon_sym_DOLLARif] = ACTIONS(1557), - [anon_sym_DOLLARcase] = ACTIONS(1557), - [anon_sym_DOLLARdefault] = ACTIONS(1557), - [anon_sym_DOLLARswitch] = ACTIONS(1557), - [anon_sym_DOLLARendswitch] = ACTIONS(1557), - [anon_sym_DOLLARfor] = ACTIONS(1557), - [anon_sym_DOLLARforeach] = ACTIONS(1557), - [anon_sym_DOLLARalignof] = ACTIONS(1557), - [anon_sym_DOLLARextnameof] = ACTIONS(1557), - [anon_sym_DOLLARnameof] = ACTIONS(1557), - [anon_sym_DOLLARoffsetof] = ACTIONS(1557), - [anon_sym_DOLLARqnameof] = ACTIONS(1557), - [anon_sym_DOLLARvaconst] = ACTIONS(1557), - [anon_sym_DOLLARvaarg] = ACTIONS(1557), - [anon_sym_DOLLARvaref] = ACTIONS(1557), - [anon_sym_DOLLARvaexpr] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [anon_sym_null] = ACTIONS(1557), - [anon_sym_DOLLARvacount] = ACTIONS(1557), - [anon_sym_DOLLAReval] = ACTIONS(1557), - [anon_sym_DOLLARis_const] = ACTIONS(1557), - [anon_sym_DOLLARsizeof] = ACTIONS(1557), - [anon_sym_DOLLARstringify] = ACTIONS(1557), - [anon_sym_DOLLARappend] = ACTIONS(1557), - [anon_sym_DOLLARconcat] = ACTIONS(1557), - [anon_sym_DOLLARdefined] = ACTIONS(1557), - [anon_sym_DOLLARembed] = ACTIONS(1557), - [anon_sym_DOLLARand] = ACTIONS(1557), - [anon_sym_DOLLARor] = ACTIONS(1557), - [anon_sym_DOLLARfeature] = ACTIONS(1557), - [anon_sym_DOLLARassignable] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_typeid] = ACTIONS(1557), - [anon_sym_LBRACE_PIPE] = ACTIONS(1559), - [anon_sym_void] = ACTIONS(1557), - [anon_sym_bool] = ACTIONS(1557), - [anon_sym_char] = ACTIONS(1557), - [anon_sym_ichar] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [anon_sym_ushort] = ACTIONS(1557), - [anon_sym_uint] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_ulong] = ACTIONS(1557), - [anon_sym_int128] = ACTIONS(1557), - [anon_sym_uint128] = ACTIONS(1557), - [anon_sym_float] = ACTIONS(1557), - [anon_sym_double] = ACTIONS(1557), - [anon_sym_float16] = ACTIONS(1557), - [anon_sym_bfloat16] = ACTIONS(1557), - [anon_sym_float128] = ACTIONS(1557), - [anon_sym_iptr] = ACTIONS(1557), - [anon_sym_uptr] = ACTIONS(1557), - [anon_sym_isz] = ACTIONS(1557), - [anon_sym_usz] = ACTIONS(1557), - [anon_sym_anyfault] = ACTIONS(1557), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_DOLLARtypeof] = ACTIONS(1557), - [anon_sym_DOLLARtypefrom] = ACTIONS(1557), - [anon_sym_DOLLARevaltype] = ACTIONS(1557), - [anon_sym_DOLLARvatype] = ACTIONS(1557), - [sym_real_literal] = ACTIONS(1559), - }, - [468] = { - [sym_line_comment] = STATE(468), - [sym_doc_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [sym_ident] = ACTIONS(1561), - [sym_integer_literal] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [sym_bytes_literal] = ACTIONS(1563), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1561), - [sym_at_ident] = ACTIONS(1563), - [sym_hash_ident] = ACTIONS(1563), - [sym_type_ident] = ACTIONS(1563), - [sym_ct_type_ident] = ACTIONS(1563), - [sym_const_ident] = ACTIONS(1561), - [sym_builtin] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_tlocal] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_fn] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_var] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_defer] = ACTIONS(1561), - [anon_sym_assert] = ACTIONS(1561), - [anon_sym_nextcase] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_foreach] = ACTIONS(1561), - [anon_sym_foreach_r] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_int] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_asm] = ACTIONS(1561), - [anon_sym_DOLLARassert] = ACTIONS(1561), - [anon_sym_DOLLARerror] = ACTIONS(1561), - [anon_sym_DOLLARecho] = ACTIONS(1561), - [anon_sym_DOLLARif] = ACTIONS(1561), - [anon_sym_DOLLARcase] = ACTIONS(1561), - [anon_sym_DOLLARdefault] = ACTIONS(1561), - [anon_sym_DOLLARswitch] = ACTIONS(1561), - [anon_sym_DOLLARendswitch] = ACTIONS(1561), - [anon_sym_DOLLARfor] = ACTIONS(1561), - [anon_sym_DOLLARforeach] = ACTIONS(1561), - [anon_sym_DOLLARalignof] = ACTIONS(1561), - [anon_sym_DOLLARextnameof] = ACTIONS(1561), - [anon_sym_DOLLARnameof] = ACTIONS(1561), - [anon_sym_DOLLARoffsetof] = ACTIONS(1561), - [anon_sym_DOLLARqnameof] = ACTIONS(1561), - [anon_sym_DOLLARvaconst] = ACTIONS(1561), - [anon_sym_DOLLARvaarg] = ACTIONS(1561), - [anon_sym_DOLLARvaref] = ACTIONS(1561), - [anon_sym_DOLLARvaexpr] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [anon_sym_DOLLARvacount] = ACTIONS(1561), - [anon_sym_DOLLAReval] = ACTIONS(1561), - [anon_sym_DOLLARis_const] = ACTIONS(1561), - [anon_sym_DOLLARsizeof] = ACTIONS(1561), - [anon_sym_DOLLARstringify] = ACTIONS(1561), - [anon_sym_DOLLARappend] = ACTIONS(1561), - [anon_sym_DOLLARconcat] = ACTIONS(1561), - [anon_sym_DOLLARdefined] = ACTIONS(1561), - [anon_sym_DOLLARembed] = ACTIONS(1561), - [anon_sym_DOLLARand] = ACTIONS(1561), - [anon_sym_DOLLARor] = ACTIONS(1561), - [anon_sym_DOLLARfeature] = ACTIONS(1561), - [anon_sym_DOLLARassignable] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_typeid] = ACTIONS(1561), - [anon_sym_LBRACE_PIPE] = ACTIONS(1563), - [anon_sym_void] = ACTIONS(1561), - [anon_sym_bool] = ACTIONS(1561), - [anon_sym_char] = ACTIONS(1561), - [anon_sym_ichar] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [anon_sym_ushort] = ACTIONS(1561), - [anon_sym_uint] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_ulong] = ACTIONS(1561), - [anon_sym_int128] = ACTIONS(1561), - [anon_sym_uint128] = ACTIONS(1561), - [anon_sym_float] = ACTIONS(1561), - [anon_sym_double] = ACTIONS(1561), - [anon_sym_float16] = ACTIONS(1561), - [anon_sym_bfloat16] = ACTIONS(1561), - [anon_sym_float128] = ACTIONS(1561), - [anon_sym_iptr] = ACTIONS(1561), - [anon_sym_uptr] = ACTIONS(1561), - [anon_sym_isz] = ACTIONS(1561), - [anon_sym_usz] = ACTIONS(1561), - [anon_sym_anyfault] = ACTIONS(1561), - [anon_sym_any] = ACTIONS(1561), - [anon_sym_DOLLARtypeof] = ACTIONS(1561), - [anon_sym_DOLLARtypefrom] = ACTIONS(1561), - [anon_sym_DOLLARevaltype] = ACTIONS(1561), - [anon_sym_DOLLARvatype] = ACTIONS(1561), - [sym_real_literal] = ACTIONS(1563), - }, - [469] = { - [sym_line_comment] = STATE(469), - [sym_doc_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [sym_ident] = ACTIONS(1573), - [sym_integer_literal] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [anon_sym_BQUOTE] = ACTIONS(1575), - [sym_bytes_literal] = ACTIONS(1575), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1573), - [sym_at_ident] = ACTIONS(1575), - [sym_hash_ident] = ACTIONS(1575), - [sym_type_ident] = ACTIONS(1575), - [sym_ct_type_ident] = ACTIONS(1575), - [sym_const_ident] = ACTIONS(1573), - [sym_builtin] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_tlocal] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_fn] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_var] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_defer] = ACTIONS(1573), - [anon_sym_assert] = ACTIONS(1573), - [anon_sym_nextcase] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_AMP_AMP] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_foreach] = ACTIONS(1573), - [anon_sym_foreach_r] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_int] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_asm] = ACTIONS(1573), - [anon_sym_DOLLARassert] = ACTIONS(1573), - [anon_sym_DOLLARerror] = ACTIONS(1573), - [anon_sym_DOLLARecho] = ACTIONS(1573), - [anon_sym_DOLLARif] = ACTIONS(1573), - [anon_sym_DOLLARcase] = ACTIONS(1573), - [anon_sym_DOLLARdefault] = ACTIONS(1573), - [anon_sym_DOLLARswitch] = ACTIONS(1573), - [anon_sym_DOLLARendswitch] = ACTIONS(1573), - [anon_sym_DOLLARfor] = ACTIONS(1573), - [anon_sym_DOLLARforeach] = ACTIONS(1573), - [anon_sym_DOLLARalignof] = ACTIONS(1573), - [anon_sym_DOLLARextnameof] = ACTIONS(1573), - [anon_sym_DOLLARnameof] = ACTIONS(1573), - [anon_sym_DOLLARoffsetof] = ACTIONS(1573), - [anon_sym_DOLLARqnameof] = ACTIONS(1573), - [anon_sym_DOLLARvaconst] = ACTIONS(1573), - [anon_sym_DOLLARvaarg] = ACTIONS(1573), - [anon_sym_DOLLARvaref] = ACTIONS(1573), - [anon_sym_DOLLARvaexpr] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [anon_sym_null] = ACTIONS(1573), - [anon_sym_DOLLARvacount] = ACTIONS(1573), - [anon_sym_DOLLAReval] = ACTIONS(1573), - [anon_sym_DOLLARis_const] = ACTIONS(1573), - [anon_sym_DOLLARsizeof] = ACTIONS(1573), - [anon_sym_DOLLARstringify] = ACTIONS(1573), - [anon_sym_DOLLARappend] = ACTIONS(1573), - [anon_sym_DOLLARconcat] = ACTIONS(1573), - [anon_sym_DOLLARdefined] = ACTIONS(1573), - [anon_sym_DOLLARembed] = ACTIONS(1573), - [anon_sym_DOLLARand] = ACTIONS(1573), - [anon_sym_DOLLARor] = ACTIONS(1573), - [anon_sym_DOLLARfeature] = ACTIONS(1573), - [anon_sym_DOLLARassignable] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_typeid] = ACTIONS(1573), - [anon_sym_LBRACE_PIPE] = ACTIONS(1575), - [anon_sym_void] = ACTIONS(1573), - [anon_sym_bool] = ACTIONS(1573), - [anon_sym_char] = ACTIONS(1573), - [anon_sym_ichar] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [anon_sym_ushort] = ACTIONS(1573), - [anon_sym_uint] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_ulong] = ACTIONS(1573), - [anon_sym_int128] = ACTIONS(1573), - [anon_sym_uint128] = ACTIONS(1573), - [anon_sym_float] = ACTIONS(1573), - [anon_sym_double] = ACTIONS(1573), - [anon_sym_float16] = ACTIONS(1573), - [anon_sym_bfloat16] = ACTIONS(1573), - [anon_sym_float128] = ACTIONS(1573), - [anon_sym_iptr] = ACTIONS(1573), - [anon_sym_uptr] = ACTIONS(1573), - [anon_sym_isz] = ACTIONS(1573), - [anon_sym_usz] = ACTIONS(1573), - [anon_sym_anyfault] = ACTIONS(1573), - [anon_sym_any] = ACTIONS(1573), - [anon_sym_DOLLARtypeof] = ACTIONS(1573), - [anon_sym_DOLLARtypefrom] = ACTIONS(1573), - [anon_sym_DOLLARevaltype] = ACTIONS(1573), - [anon_sym_DOLLARvatype] = ACTIONS(1573), - [sym_real_literal] = ACTIONS(1575), - }, - [470] = { - [sym_line_comment] = STATE(470), - [sym_doc_comment] = STATE(470), - [sym_block_comment] = STATE(470), - [sym_ident] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_bytes_literal] = ACTIONS(1583), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1581), - [sym_at_ident] = ACTIONS(1583), - [sym_hash_ident] = ACTIONS(1583), - [sym_type_ident] = ACTIONS(1583), - [sym_ct_type_ident] = ACTIONS(1583), - [sym_const_ident] = ACTIONS(1581), - [sym_builtin] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_tlocal] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_fn] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_var] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_defer] = ACTIONS(1581), - [anon_sym_assert] = ACTIONS(1581), - [anon_sym_nextcase] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_foreach] = ACTIONS(1581), - [anon_sym_foreach_r] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_int] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_asm] = ACTIONS(1581), - [anon_sym_DOLLARassert] = ACTIONS(1581), - [anon_sym_DOLLARerror] = ACTIONS(1581), - [anon_sym_DOLLARecho] = ACTIONS(1581), - [anon_sym_DOLLARif] = ACTIONS(1581), - [anon_sym_DOLLARcase] = ACTIONS(1581), - [anon_sym_DOLLARdefault] = ACTIONS(1581), - [anon_sym_DOLLARswitch] = ACTIONS(1581), - [anon_sym_DOLLARendswitch] = ACTIONS(1581), - [anon_sym_DOLLARfor] = ACTIONS(1581), - [anon_sym_DOLLARforeach] = ACTIONS(1581), - [anon_sym_DOLLARalignof] = ACTIONS(1581), - [anon_sym_DOLLARextnameof] = ACTIONS(1581), - [anon_sym_DOLLARnameof] = ACTIONS(1581), - [anon_sym_DOLLARoffsetof] = ACTIONS(1581), - [anon_sym_DOLLARqnameof] = ACTIONS(1581), - [anon_sym_DOLLARvaconst] = ACTIONS(1581), - [anon_sym_DOLLARvaarg] = ACTIONS(1581), - [anon_sym_DOLLARvaref] = ACTIONS(1581), - [anon_sym_DOLLARvaexpr] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1581), - [anon_sym_false] = ACTIONS(1581), - [anon_sym_null] = ACTIONS(1581), - [anon_sym_DOLLARvacount] = ACTIONS(1581), - [anon_sym_DOLLAReval] = ACTIONS(1581), - [anon_sym_DOLLARis_const] = ACTIONS(1581), - [anon_sym_DOLLARsizeof] = ACTIONS(1581), - [anon_sym_DOLLARstringify] = ACTIONS(1581), - [anon_sym_DOLLARappend] = ACTIONS(1581), - [anon_sym_DOLLARconcat] = ACTIONS(1581), - [anon_sym_DOLLARdefined] = ACTIONS(1581), - [anon_sym_DOLLARembed] = ACTIONS(1581), - [anon_sym_DOLLARand] = ACTIONS(1581), - [anon_sym_DOLLARor] = ACTIONS(1581), - [anon_sym_DOLLARfeature] = ACTIONS(1581), - [anon_sym_DOLLARassignable] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_typeid] = ACTIONS(1581), - [anon_sym_LBRACE_PIPE] = ACTIONS(1583), - [anon_sym_void] = ACTIONS(1581), - [anon_sym_bool] = ACTIONS(1581), - [anon_sym_char] = ACTIONS(1581), - [anon_sym_ichar] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [anon_sym_ushort] = ACTIONS(1581), - [anon_sym_uint] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_ulong] = ACTIONS(1581), - [anon_sym_int128] = ACTIONS(1581), - [anon_sym_uint128] = ACTIONS(1581), - [anon_sym_float] = ACTIONS(1581), - [anon_sym_double] = ACTIONS(1581), - [anon_sym_float16] = ACTIONS(1581), - [anon_sym_bfloat16] = ACTIONS(1581), - [anon_sym_float128] = ACTIONS(1581), - [anon_sym_iptr] = ACTIONS(1581), - [anon_sym_uptr] = ACTIONS(1581), - [anon_sym_isz] = ACTIONS(1581), - [anon_sym_usz] = ACTIONS(1581), - [anon_sym_anyfault] = ACTIONS(1581), - [anon_sym_any] = ACTIONS(1581), - [anon_sym_DOLLARtypeof] = ACTIONS(1581), - [anon_sym_DOLLARtypefrom] = ACTIONS(1581), - [anon_sym_DOLLARevaltype] = ACTIONS(1581), - [anon_sym_DOLLARvatype] = ACTIONS(1581), - [sym_real_literal] = ACTIONS(1583), - }, - [471] = { - [sym_line_comment] = STATE(471), - [sym_doc_comment] = STATE(471), - [sym_block_comment] = STATE(471), - [sym_ident] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [anon_sym_BQUOTE] = ACTIONS(1587), - [sym_bytes_literal] = ACTIONS(1587), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1585), - [sym_at_ident] = ACTIONS(1587), - [sym_hash_ident] = ACTIONS(1587), - [sym_type_ident] = ACTIONS(1587), - [sym_ct_type_ident] = ACTIONS(1587), - [sym_const_ident] = ACTIONS(1585), - [sym_builtin] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_tlocal] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_fn] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_var] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_defer] = ACTIONS(1585), - [anon_sym_assert] = ACTIONS(1585), - [anon_sym_nextcase] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_foreach] = ACTIONS(1585), - [anon_sym_foreach_r] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_int] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_asm] = ACTIONS(1585), - [anon_sym_DOLLARassert] = ACTIONS(1585), - [anon_sym_DOLLARerror] = ACTIONS(1585), - [anon_sym_DOLLARecho] = ACTIONS(1585), - [anon_sym_DOLLARif] = ACTIONS(1585), - [anon_sym_DOLLARcase] = ACTIONS(1585), - [anon_sym_DOLLARdefault] = ACTIONS(1585), - [anon_sym_DOLLARswitch] = ACTIONS(1585), - [anon_sym_DOLLARendswitch] = ACTIONS(1585), - [anon_sym_DOLLARfor] = ACTIONS(1585), - [anon_sym_DOLLARforeach] = ACTIONS(1585), - [anon_sym_DOLLARalignof] = ACTIONS(1585), - [anon_sym_DOLLARextnameof] = ACTIONS(1585), - [anon_sym_DOLLARnameof] = ACTIONS(1585), - [anon_sym_DOLLARoffsetof] = ACTIONS(1585), - [anon_sym_DOLLARqnameof] = ACTIONS(1585), - [anon_sym_DOLLARvaconst] = ACTIONS(1585), - [anon_sym_DOLLARvaarg] = ACTIONS(1585), - [anon_sym_DOLLARvaref] = ACTIONS(1585), - [anon_sym_DOLLARvaexpr] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [anon_sym_null] = ACTIONS(1585), - [anon_sym_DOLLARvacount] = ACTIONS(1585), - [anon_sym_DOLLAReval] = ACTIONS(1585), - [anon_sym_DOLLARis_const] = ACTIONS(1585), - [anon_sym_DOLLARsizeof] = ACTIONS(1585), - [anon_sym_DOLLARstringify] = ACTIONS(1585), - [anon_sym_DOLLARappend] = ACTIONS(1585), - [anon_sym_DOLLARconcat] = ACTIONS(1585), - [anon_sym_DOLLARdefined] = ACTIONS(1585), - [anon_sym_DOLLARembed] = ACTIONS(1585), - [anon_sym_DOLLARand] = ACTIONS(1585), - [anon_sym_DOLLARor] = ACTIONS(1585), - [anon_sym_DOLLARfeature] = ACTIONS(1585), - [anon_sym_DOLLARassignable] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_typeid] = ACTIONS(1585), - [anon_sym_LBRACE_PIPE] = ACTIONS(1587), - [anon_sym_void] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_ichar] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_ushort] = ACTIONS(1585), - [anon_sym_uint] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_ulong] = ACTIONS(1585), - [anon_sym_int128] = ACTIONS(1585), - [anon_sym_uint128] = ACTIONS(1585), - [anon_sym_float] = ACTIONS(1585), - [anon_sym_double] = ACTIONS(1585), - [anon_sym_float16] = ACTIONS(1585), - [anon_sym_bfloat16] = ACTIONS(1585), - [anon_sym_float128] = ACTIONS(1585), - [anon_sym_iptr] = ACTIONS(1585), - [anon_sym_uptr] = ACTIONS(1585), - [anon_sym_isz] = ACTIONS(1585), - [anon_sym_usz] = ACTIONS(1585), - [anon_sym_anyfault] = ACTIONS(1585), - [anon_sym_any] = ACTIONS(1585), - [anon_sym_DOLLARtypeof] = ACTIONS(1585), - [anon_sym_DOLLARtypefrom] = ACTIONS(1585), - [anon_sym_DOLLARevaltype] = ACTIONS(1585), - [anon_sym_DOLLARvatype] = ACTIONS(1585), - [sym_real_literal] = ACTIONS(1587), - }, - [472] = { - [sym_line_comment] = STATE(472), - [sym_doc_comment] = STATE(472), - [sym_block_comment] = STATE(472), - [sym_ident] = ACTIONS(1637), - [sym_integer_literal] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [anon_sym_BQUOTE] = ACTIONS(1639), - [sym_bytes_literal] = ACTIONS(1639), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1637), - [sym_at_ident] = ACTIONS(1639), - [sym_hash_ident] = ACTIONS(1639), - [sym_type_ident] = ACTIONS(1639), - [sym_ct_type_ident] = ACTIONS(1639), - [sym_const_ident] = ACTIONS(1637), - [sym_builtin] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_tlocal] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_fn] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_var] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_defer] = ACTIONS(1637), - [anon_sym_assert] = ACTIONS(1637), - [anon_sym_nextcase] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_foreach] = ACTIONS(1637), - [anon_sym_foreach_r] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_int] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_asm] = ACTIONS(1637), - [anon_sym_DOLLARassert] = ACTIONS(1637), - [anon_sym_DOLLARerror] = ACTIONS(1637), - [anon_sym_DOLLARecho] = ACTIONS(1637), - [anon_sym_DOLLARif] = ACTIONS(1637), - [anon_sym_DOLLARcase] = ACTIONS(1637), - [anon_sym_DOLLARdefault] = ACTIONS(1637), - [anon_sym_DOLLARswitch] = ACTIONS(1637), - [anon_sym_DOLLARendswitch] = ACTIONS(1637), - [anon_sym_DOLLARfor] = ACTIONS(1637), - [anon_sym_DOLLARforeach] = ACTIONS(1637), - [anon_sym_DOLLARalignof] = ACTIONS(1637), - [anon_sym_DOLLARextnameof] = ACTIONS(1637), - [anon_sym_DOLLARnameof] = ACTIONS(1637), - [anon_sym_DOLLARoffsetof] = ACTIONS(1637), - [anon_sym_DOLLARqnameof] = ACTIONS(1637), - [anon_sym_DOLLARvaconst] = ACTIONS(1637), - [anon_sym_DOLLARvaarg] = ACTIONS(1637), - [anon_sym_DOLLARvaref] = ACTIONS(1637), - [anon_sym_DOLLARvaexpr] = ACTIONS(1637), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [anon_sym_null] = ACTIONS(1637), - [anon_sym_DOLLARvacount] = ACTIONS(1637), - [anon_sym_DOLLAReval] = ACTIONS(1637), - [anon_sym_DOLLARis_const] = ACTIONS(1637), - [anon_sym_DOLLARsizeof] = ACTIONS(1637), - [anon_sym_DOLLARstringify] = ACTIONS(1637), - [anon_sym_DOLLARappend] = ACTIONS(1637), - [anon_sym_DOLLARconcat] = ACTIONS(1637), - [anon_sym_DOLLARdefined] = ACTIONS(1637), - [anon_sym_DOLLARembed] = ACTIONS(1637), - [anon_sym_DOLLARand] = ACTIONS(1637), - [anon_sym_DOLLARor] = ACTIONS(1637), - [anon_sym_DOLLARfeature] = ACTIONS(1637), - [anon_sym_DOLLARassignable] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_typeid] = ACTIONS(1637), - [anon_sym_LBRACE_PIPE] = ACTIONS(1639), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_char] = ACTIONS(1637), - [anon_sym_ichar] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [anon_sym_ushort] = ACTIONS(1637), - [anon_sym_uint] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_ulong] = ACTIONS(1637), - [anon_sym_int128] = ACTIONS(1637), - [anon_sym_uint128] = ACTIONS(1637), - [anon_sym_float] = ACTIONS(1637), - [anon_sym_double] = ACTIONS(1637), - [anon_sym_float16] = ACTIONS(1637), - [anon_sym_bfloat16] = ACTIONS(1637), - [anon_sym_float128] = ACTIONS(1637), - [anon_sym_iptr] = ACTIONS(1637), - [anon_sym_uptr] = ACTIONS(1637), - [anon_sym_isz] = ACTIONS(1637), - [anon_sym_usz] = ACTIONS(1637), - [anon_sym_anyfault] = ACTIONS(1637), - [anon_sym_any] = ACTIONS(1637), - [anon_sym_DOLLARtypeof] = ACTIONS(1637), - [anon_sym_DOLLARtypefrom] = ACTIONS(1637), - [anon_sym_DOLLARevaltype] = ACTIONS(1637), - [anon_sym_DOLLARvatype] = ACTIONS(1637), - [sym_real_literal] = ACTIONS(1639), - }, - [473] = { - [sym_line_comment] = STATE(473), - [sym_doc_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [sym_ident] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_bytes_literal] = ACTIONS(1655), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1653), - [sym_at_ident] = ACTIONS(1655), - [sym_hash_ident] = ACTIONS(1655), - [sym_type_ident] = ACTIONS(1655), - [sym_ct_type_ident] = ACTIONS(1655), - [sym_const_ident] = ACTIONS(1653), - [sym_builtin] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_tlocal] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_var] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_assert] = ACTIONS(1653), - [anon_sym_nextcase] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_foreach] = ACTIONS(1653), - [anon_sym_foreach_r] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_asm] = ACTIONS(1653), - [anon_sym_DOLLARassert] = ACTIONS(1653), - [anon_sym_DOLLARerror] = ACTIONS(1653), - [anon_sym_DOLLARecho] = ACTIONS(1653), - [anon_sym_DOLLARif] = ACTIONS(1653), - [anon_sym_DOLLARcase] = ACTIONS(1653), - [anon_sym_DOLLARdefault] = ACTIONS(1653), - [anon_sym_DOLLARswitch] = ACTIONS(1653), - [anon_sym_DOLLARendswitch] = ACTIONS(1653), - [anon_sym_DOLLARfor] = ACTIONS(1653), - [anon_sym_DOLLARforeach] = ACTIONS(1653), - [anon_sym_DOLLARalignof] = ACTIONS(1653), - [anon_sym_DOLLARextnameof] = ACTIONS(1653), - [anon_sym_DOLLARnameof] = ACTIONS(1653), - [anon_sym_DOLLARoffsetof] = ACTIONS(1653), - [anon_sym_DOLLARqnameof] = ACTIONS(1653), - [anon_sym_DOLLARvaconst] = ACTIONS(1653), - [anon_sym_DOLLARvaarg] = ACTIONS(1653), - [anon_sym_DOLLARvaref] = ACTIONS(1653), - [anon_sym_DOLLARvaexpr] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_DOLLARvacount] = ACTIONS(1653), - [anon_sym_DOLLAReval] = ACTIONS(1653), - [anon_sym_DOLLARis_const] = ACTIONS(1653), - [anon_sym_DOLLARsizeof] = ACTIONS(1653), - [anon_sym_DOLLARstringify] = ACTIONS(1653), - [anon_sym_DOLLARappend] = ACTIONS(1653), - [anon_sym_DOLLARconcat] = ACTIONS(1653), - [anon_sym_DOLLARdefined] = ACTIONS(1653), - [anon_sym_DOLLARembed] = ACTIONS(1653), - [anon_sym_DOLLARand] = ACTIONS(1653), - [anon_sym_DOLLARor] = ACTIONS(1653), - [anon_sym_DOLLARfeature] = ACTIONS(1653), - [anon_sym_DOLLARassignable] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_typeid] = ACTIONS(1653), - [anon_sym_LBRACE_PIPE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_ichar] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [anon_sym_ushort] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_ulong] = ACTIONS(1653), - [anon_sym_int128] = ACTIONS(1653), - [anon_sym_uint128] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_double] = ACTIONS(1653), - [anon_sym_float16] = ACTIONS(1653), - [anon_sym_bfloat16] = ACTIONS(1653), - [anon_sym_float128] = ACTIONS(1653), - [anon_sym_iptr] = ACTIONS(1653), - [anon_sym_uptr] = ACTIONS(1653), - [anon_sym_isz] = ACTIONS(1653), - [anon_sym_usz] = ACTIONS(1653), - [anon_sym_anyfault] = ACTIONS(1653), - [anon_sym_any] = ACTIONS(1653), - [anon_sym_DOLLARtypeof] = ACTIONS(1653), - [anon_sym_DOLLARtypefrom] = ACTIONS(1653), - [anon_sym_DOLLARevaltype] = ACTIONS(1653), - [anon_sym_DOLLARvatype] = ACTIONS(1653), - [sym_real_literal] = ACTIONS(1655), - }, - [474] = { - [sym_line_comment] = STATE(474), - [sym_doc_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [sym_ident] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [sym_bytes_literal] = ACTIONS(1385), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1383), - [sym_at_ident] = ACTIONS(1385), - [sym_hash_ident] = ACTIONS(1385), - [sym_type_ident] = ACTIONS(1385), - [sym_ct_type_ident] = ACTIONS(1385), - [sym_const_ident] = ACTIONS(1383), - [sym_builtin] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_tlocal] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_var] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_defer] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_nextcase] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_AMP_AMP] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_foreach] = ACTIONS(1383), - [anon_sym_foreach_r] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_int] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym_DOLLARassert] = ACTIONS(1383), - [anon_sym_DOLLARerror] = ACTIONS(1383), - [anon_sym_DOLLARecho] = ACTIONS(1383), - [anon_sym_DOLLARif] = ACTIONS(1383), - [anon_sym_DOLLARcase] = ACTIONS(1383), - [anon_sym_DOLLARdefault] = ACTIONS(1383), - [anon_sym_DOLLARswitch] = ACTIONS(1383), - [anon_sym_DOLLARendswitch] = ACTIONS(1383), - [anon_sym_DOLLARfor] = ACTIONS(1383), - [anon_sym_DOLLARforeach] = ACTIONS(1383), - [anon_sym_DOLLARalignof] = ACTIONS(1383), - [anon_sym_DOLLARextnameof] = ACTIONS(1383), - [anon_sym_DOLLARnameof] = ACTIONS(1383), - [anon_sym_DOLLARoffsetof] = ACTIONS(1383), - [anon_sym_DOLLARqnameof] = ACTIONS(1383), - [anon_sym_DOLLARvaconst] = ACTIONS(1383), - [anon_sym_DOLLARvaarg] = ACTIONS(1383), - [anon_sym_DOLLARvaref] = ACTIONS(1383), - [anon_sym_DOLLARvaexpr] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1383), - [anon_sym_DOLLARvacount] = ACTIONS(1383), - [anon_sym_DOLLAReval] = ACTIONS(1383), - [anon_sym_DOLLARis_const] = ACTIONS(1383), - [anon_sym_DOLLARsizeof] = ACTIONS(1383), - [anon_sym_DOLLARstringify] = ACTIONS(1383), - [anon_sym_DOLLARappend] = ACTIONS(1383), - [anon_sym_DOLLARconcat] = ACTIONS(1383), - [anon_sym_DOLLARdefined] = ACTIONS(1383), - [anon_sym_DOLLARembed] = ACTIONS(1383), - [anon_sym_DOLLARand] = ACTIONS(1383), - [anon_sym_DOLLARor] = ACTIONS(1383), - [anon_sym_DOLLARfeature] = ACTIONS(1383), - [anon_sym_DOLLARassignable] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_typeid] = ACTIONS(1383), - [anon_sym_LBRACE_PIPE] = ACTIONS(1385), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_bool] = ACTIONS(1383), - [anon_sym_char] = ACTIONS(1383), - [anon_sym_ichar] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_ushort] = ACTIONS(1383), - [anon_sym_uint] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_ulong] = ACTIONS(1383), - [anon_sym_int128] = ACTIONS(1383), - [anon_sym_uint128] = ACTIONS(1383), - [anon_sym_float] = ACTIONS(1383), - [anon_sym_double] = ACTIONS(1383), - [anon_sym_float16] = ACTIONS(1383), - [anon_sym_bfloat16] = ACTIONS(1383), - [anon_sym_float128] = ACTIONS(1383), - [anon_sym_iptr] = ACTIONS(1383), - [anon_sym_uptr] = ACTIONS(1383), - [anon_sym_isz] = ACTIONS(1383), - [anon_sym_usz] = ACTIONS(1383), - [anon_sym_anyfault] = ACTIONS(1383), - [anon_sym_any] = ACTIONS(1383), - [anon_sym_DOLLARtypeof] = ACTIONS(1383), - [anon_sym_DOLLARtypefrom] = ACTIONS(1383), - [anon_sym_DOLLARevaltype] = ACTIONS(1383), - [anon_sym_DOLLARvatype] = ACTIONS(1383), - [sym_real_literal] = ACTIONS(1385), - }, - [475] = { - [sym_line_comment] = STATE(475), - [sym_doc_comment] = STATE(475), - [sym_block_comment] = STATE(475), - [sym_ident] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [anon_sym_BQUOTE] = ACTIONS(1413), - [sym_bytes_literal] = ACTIONS(1413), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1411), - [sym_at_ident] = ACTIONS(1413), - [sym_hash_ident] = ACTIONS(1413), - [sym_type_ident] = ACTIONS(1413), - [sym_ct_type_ident] = ACTIONS(1413), - [sym_const_ident] = ACTIONS(1411), - [sym_builtin] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_tlocal] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_var] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_defer] = ACTIONS(1411), - [anon_sym_assert] = ACTIONS(1411), - [anon_sym_nextcase] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_foreach] = ACTIONS(1411), - [anon_sym_foreach_r] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_int] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym_DOLLARassert] = ACTIONS(1411), - [anon_sym_DOLLARerror] = ACTIONS(1411), - [anon_sym_DOLLARecho] = ACTIONS(1411), - [anon_sym_DOLLARif] = ACTIONS(1411), - [anon_sym_DOLLARcase] = ACTIONS(1411), - [anon_sym_DOLLARdefault] = ACTIONS(1411), - [anon_sym_DOLLARswitch] = ACTIONS(1411), - [anon_sym_DOLLARendswitch] = ACTIONS(1411), - [anon_sym_DOLLARfor] = ACTIONS(1411), - [anon_sym_DOLLARforeach] = ACTIONS(1411), - [anon_sym_DOLLARalignof] = ACTIONS(1411), - [anon_sym_DOLLARextnameof] = ACTIONS(1411), - [anon_sym_DOLLARnameof] = ACTIONS(1411), - [anon_sym_DOLLARoffsetof] = ACTIONS(1411), - [anon_sym_DOLLARqnameof] = ACTIONS(1411), - [anon_sym_DOLLARvaconst] = ACTIONS(1411), - [anon_sym_DOLLARvaarg] = ACTIONS(1411), - [anon_sym_DOLLARvaref] = ACTIONS(1411), - [anon_sym_DOLLARvaexpr] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_DOLLARvacount] = ACTIONS(1411), - [anon_sym_DOLLAReval] = ACTIONS(1411), - [anon_sym_DOLLARis_const] = ACTIONS(1411), - [anon_sym_DOLLARsizeof] = ACTIONS(1411), - [anon_sym_DOLLARstringify] = ACTIONS(1411), - [anon_sym_DOLLARappend] = ACTIONS(1411), - [anon_sym_DOLLARconcat] = ACTIONS(1411), - [anon_sym_DOLLARdefined] = ACTIONS(1411), - [anon_sym_DOLLARembed] = ACTIONS(1411), - [anon_sym_DOLLARand] = ACTIONS(1411), - [anon_sym_DOLLARor] = ACTIONS(1411), - [anon_sym_DOLLARfeature] = ACTIONS(1411), - [anon_sym_DOLLARassignable] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_typeid] = ACTIONS(1411), - [anon_sym_LBRACE_PIPE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_bool] = ACTIONS(1411), - [anon_sym_char] = ACTIONS(1411), - [anon_sym_ichar] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_ushort] = ACTIONS(1411), - [anon_sym_uint] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_ulong] = ACTIONS(1411), - [anon_sym_int128] = ACTIONS(1411), - [anon_sym_uint128] = ACTIONS(1411), - [anon_sym_float] = ACTIONS(1411), - [anon_sym_double] = ACTIONS(1411), - [anon_sym_float16] = ACTIONS(1411), - [anon_sym_bfloat16] = ACTIONS(1411), - [anon_sym_float128] = ACTIONS(1411), - [anon_sym_iptr] = ACTIONS(1411), - [anon_sym_uptr] = ACTIONS(1411), - [anon_sym_isz] = ACTIONS(1411), - [anon_sym_usz] = ACTIONS(1411), - [anon_sym_anyfault] = ACTIONS(1411), - [anon_sym_any] = ACTIONS(1411), - [anon_sym_DOLLARtypeof] = ACTIONS(1411), - [anon_sym_DOLLARtypefrom] = ACTIONS(1411), - [anon_sym_DOLLARevaltype] = ACTIONS(1411), - [anon_sym_DOLLARvatype] = ACTIONS(1411), - [sym_real_literal] = ACTIONS(1413), - }, - [476] = { - [sym_line_comment] = STATE(476), - [sym_doc_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [sym_ident] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [sym_bytes_literal] = ACTIONS(1417), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1415), - [sym_at_ident] = ACTIONS(1417), - [sym_hash_ident] = ACTIONS(1417), - [sym_type_ident] = ACTIONS(1417), - [sym_ct_type_ident] = ACTIONS(1417), - [sym_const_ident] = ACTIONS(1415), - [sym_builtin] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_tlocal] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_var] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_defer] = ACTIONS(1415), - [anon_sym_assert] = ACTIONS(1415), - [anon_sym_nextcase] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_foreach] = ACTIONS(1415), - [anon_sym_foreach_r] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_int] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym_DOLLARassert] = ACTIONS(1415), - [anon_sym_DOLLARerror] = ACTIONS(1415), - [anon_sym_DOLLARecho] = ACTIONS(1415), - [anon_sym_DOLLARif] = ACTIONS(1415), - [anon_sym_DOLLARcase] = ACTIONS(1415), - [anon_sym_DOLLARdefault] = ACTIONS(1415), - [anon_sym_DOLLARswitch] = ACTIONS(1415), - [anon_sym_DOLLARendswitch] = ACTIONS(1415), - [anon_sym_DOLLARfor] = ACTIONS(1415), - [anon_sym_DOLLARforeach] = ACTIONS(1415), - [anon_sym_DOLLARalignof] = ACTIONS(1415), - [anon_sym_DOLLARextnameof] = ACTIONS(1415), - [anon_sym_DOLLARnameof] = ACTIONS(1415), - [anon_sym_DOLLARoffsetof] = ACTIONS(1415), - [anon_sym_DOLLARqnameof] = ACTIONS(1415), - [anon_sym_DOLLARvaconst] = ACTIONS(1415), - [anon_sym_DOLLARvaarg] = ACTIONS(1415), - [anon_sym_DOLLARvaref] = ACTIONS(1415), - [anon_sym_DOLLARvaexpr] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_null] = ACTIONS(1415), - [anon_sym_DOLLARvacount] = ACTIONS(1415), - [anon_sym_DOLLAReval] = ACTIONS(1415), - [anon_sym_DOLLARis_const] = ACTIONS(1415), - [anon_sym_DOLLARsizeof] = ACTIONS(1415), - [anon_sym_DOLLARstringify] = ACTIONS(1415), - [anon_sym_DOLLARappend] = ACTIONS(1415), - [anon_sym_DOLLARconcat] = ACTIONS(1415), - [anon_sym_DOLLARdefined] = ACTIONS(1415), - [anon_sym_DOLLARembed] = ACTIONS(1415), - [anon_sym_DOLLARand] = ACTIONS(1415), - [anon_sym_DOLLARor] = ACTIONS(1415), - [anon_sym_DOLLARfeature] = ACTIONS(1415), - [anon_sym_DOLLARassignable] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_typeid] = ACTIONS(1415), - [anon_sym_LBRACE_PIPE] = ACTIONS(1417), - [anon_sym_void] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_ichar] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_ushort] = ACTIONS(1415), - [anon_sym_uint] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_ulong] = ACTIONS(1415), - [anon_sym_int128] = ACTIONS(1415), - [anon_sym_uint128] = ACTIONS(1415), - [anon_sym_float] = ACTIONS(1415), - [anon_sym_double] = ACTIONS(1415), - [anon_sym_float16] = ACTIONS(1415), - [anon_sym_bfloat16] = ACTIONS(1415), - [anon_sym_float128] = ACTIONS(1415), - [anon_sym_iptr] = ACTIONS(1415), - [anon_sym_uptr] = ACTIONS(1415), - [anon_sym_isz] = ACTIONS(1415), - [anon_sym_usz] = ACTIONS(1415), - [anon_sym_anyfault] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_DOLLARtypeof] = ACTIONS(1415), - [anon_sym_DOLLARtypefrom] = ACTIONS(1415), - [anon_sym_DOLLARevaltype] = ACTIONS(1415), - [anon_sym_DOLLARvatype] = ACTIONS(1415), - [sym_real_literal] = ACTIONS(1417), - }, - [477] = { - [sym_line_comment] = STATE(477), - [sym_doc_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [sym_ident] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [sym_bytes_literal] = ACTIONS(1421), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1419), - [sym_at_ident] = ACTIONS(1421), - [sym_hash_ident] = ACTIONS(1421), - [sym_type_ident] = ACTIONS(1421), - [sym_ct_type_ident] = ACTIONS(1421), - [sym_const_ident] = ACTIONS(1419), - [sym_builtin] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_tlocal] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_var] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_defer] = ACTIONS(1419), - [anon_sym_assert] = ACTIONS(1419), - [anon_sym_nextcase] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_foreach] = ACTIONS(1419), - [anon_sym_foreach_r] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_int] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym_DOLLARassert] = ACTIONS(1419), - [anon_sym_DOLLARerror] = ACTIONS(1419), - [anon_sym_DOLLARecho] = ACTIONS(1419), - [anon_sym_DOLLARif] = ACTIONS(1419), - [anon_sym_DOLLARcase] = ACTIONS(1419), - [anon_sym_DOLLARdefault] = ACTIONS(1419), - [anon_sym_DOLLARswitch] = ACTIONS(1419), - [anon_sym_DOLLARendswitch] = ACTIONS(1419), - [anon_sym_DOLLARfor] = ACTIONS(1419), - [anon_sym_DOLLARforeach] = ACTIONS(1419), - [anon_sym_DOLLARalignof] = ACTIONS(1419), - [anon_sym_DOLLARextnameof] = ACTIONS(1419), - [anon_sym_DOLLARnameof] = ACTIONS(1419), - [anon_sym_DOLLARoffsetof] = ACTIONS(1419), - [anon_sym_DOLLARqnameof] = ACTIONS(1419), - [anon_sym_DOLLARvaconst] = ACTIONS(1419), - [anon_sym_DOLLARvaarg] = ACTIONS(1419), - [anon_sym_DOLLARvaref] = ACTIONS(1419), - [anon_sym_DOLLARvaexpr] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1419), - [anon_sym_DOLLARvacount] = ACTIONS(1419), - [anon_sym_DOLLAReval] = ACTIONS(1419), - [anon_sym_DOLLARis_const] = ACTIONS(1419), - [anon_sym_DOLLARsizeof] = ACTIONS(1419), - [anon_sym_DOLLARstringify] = ACTIONS(1419), - [anon_sym_DOLLARappend] = ACTIONS(1419), - [anon_sym_DOLLARconcat] = ACTIONS(1419), - [anon_sym_DOLLARdefined] = ACTIONS(1419), - [anon_sym_DOLLARembed] = ACTIONS(1419), - [anon_sym_DOLLARand] = ACTIONS(1419), - [anon_sym_DOLLARor] = ACTIONS(1419), - [anon_sym_DOLLARfeature] = ACTIONS(1419), - [anon_sym_DOLLARassignable] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_typeid] = ACTIONS(1419), - [anon_sym_LBRACE_PIPE] = ACTIONS(1421), - [anon_sym_void] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_ichar] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_ushort] = ACTIONS(1419), - [anon_sym_uint] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_ulong] = ACTIONS(1419), - [anon_sym_int128] = ACTIONS(1419), - [anon_sym_uint128] = ACTIONS(1419), - [anon_sym_float] = ACTIONS(1419), - [anon_sym_double] = ACTIONS(1419), - [anon_sym_float16] = ACTIONS(1419), - [anon_sym_bfloat16] = ACTIONS(1419), - [anon_sym_float128] = ACTIONS(1419), - [anon_sym_iptr] = ACTIONS(1419), - [anon_sym_uptr] = ACTIONS(1419), - [anon_sym_isz] = ACTIONS(1419), - [anon_sym_usz] = ACTIONS(1419), - [anon_sym_anyfault] = ACTIONS(1419), - [anon_sym_any] = ACTIONS(1419), - [anon_sym_DOLLARtypeof] = ACTIONS(1419), - [anon_sym_DOLLARtypefrom] = ACTIONS(1419), - [anon_sym_DOLLARevaltype] = ACTIONS(1419), - [anon_sym_DOLLARvatype] = ACTIONS(1419), - [sym_real_literal] = ACTIONS(1421), - }, - [478] = { - [sym_line_comment] = STATE(478), - [sym_doc_comment] = STATE(478), - [sym_block_comment] = STATE(478), - [sym_ident] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1433), - [sym_bytes_literal] = ACTIONS(1433), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1431), - [sym_at_ident] = ACTIONS(1433), - [sym_hash_ident] = ACTIONS(1433), - [sym_type_ident] = ACTIONS(1433), - [sym_ct_type_ident] = ACTIONS(1433), - [sym_const_ident] = ACTIONS(1431), - [sym_builtin] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_tlocal] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_var] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_defer] = ACTIONS(1431), - [anon_sym_assert] = ACTIONS(1431), - [anon_sym_nextcase] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_foreach] = ACTIONS(1431), - [anon_sym_foreach_r] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_int] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1431), - [anon_sym_DOLLARassert] = ACTIONS(1431), - [anon_sym_DOLLARerror] = ACTIONS(1431), - [anon_sym_DOLLARecho] = ACTIONS(1431), - [anon_sym_DOLLARif] = ACTIONS(1431), - [anon_sym_DOLLARcase] = ACTIONS(1431), - [anon_sym_DOLLARdefault] = ACTIONS(1431), - [anon_sym_DOLLARswitch] = ACTIONS(1431), - [anon_sym_DOLLARendswitch] = ACTIONS(1431), - [anon_sym_DOLLARfor] = ACTIONS(1431), - [anon_sym_DOLLARforeach] = ACTIONS(1431), - [anon_sym_DOLLARalignof] = ACTIONS(1431), - [anon_sym_DOLLARextnameof] = ACTIONS(1431), - [anon_sym_DOLLARnameof] = ACTIONS(1431), - [anon_sym_DOLLARoffsetof] = ACTIONS(1431), - [anon_sym_DOLLARqnameof] = ACTIONS(1431), - [anon_sym_DOLLARvaconst] = ACTIONS(1431), - [anon_sym_DOLLARvaarg] = ACTIONS(1431), - [anon_sym_DOLLARvaref] = ACTIONS(1431), - [anon_sym_DOLLARvaexpr] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_null] = ACTIONS(1431), - [anon_sym_DOLLARvacount] = ACTIONS(1431), - [anon_sym_DOLLAReval] = ACTIONS(1431), - [anon_sym_DOLLARis_const] = ACTIONS(1431), - [anon_sym_DOLLARsizeof] = ACTIONS(1431), - [anon_sym_DOLLARstringify] = ACTIONS(1431), - [anon_sym_DOLLARappend] = ACTIONS(1431), - [anon_sym_DOLLARconcat] = ACTIONS(1431), - [anon_sym_DOLLARdefined] = ACTIONS(1431), - [anon_sym_DOLLARembed] = ACTIONS(1431), - [anon_sym_DOLLARand] = ACTIONS(1431), - [anon_sym_DOLLARor] = ACTIONS(1431), - [anon_sym_DOLLARfeature] = ACTIONS(1431), - [anon_sym_DOLLARassignable] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_typeid] = ACTIONS(1431), - [anon_sym_LBRACE_PIPE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_ichar] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_ushort] = ACTIONS(1431), - [anon_sym_uint] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_ulong] = ACTIONS(1431), - [anon_sym_int128] = ACTIONS(1431), - [anon_sym_uint128] = ACTIONS(1431), - [anon_sym_float] = ACTIONS(1431), - [anon_sym_double] = ACTIONS(1431), - [anon_sym_float16] = ACTIONS(1431), - [anon_sym_bfloat16] = ACTIONS(1431), - [anon_sym_float128] = ACTIONS(1431), - [anon_sym_iptr] = ACTIONS(1431), - [anon_sym_uptr] = ACTIONS(1431), - [anon_sym_isz] = ACTIONS(1431), - [anon_sym_usz] = ACTIONS(1431), - [anon_sym_anyfault] = ACTIONS(1431), - [anon_sym_any] = ACTIONS(1431), - [anon_sym_DOLLARtypeof] = ACTIONS(1431), - [anon_sym_DOLLARtypefrom] = ACTIONS(1431), - [anon_sym_DOLLARevaltype] = ACTIONS(1431), - [anon_sym_DOLLARvatype] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - }, - [479] = { - [sym_line_comment] = STATE(479), - [sym_doc_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [sym_ident] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_BQUOTE] = ACTIONS(1437), - [sym_bytes_literal] = ACTIONS(1437), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1435), - [sym_at_ident] = ACTIONS(1437), - [sym_hash_ident] = ACTIONS(1437), - [sym_type_ident] = ACTIONS(1437), - [sym_ct_type_ident] = ACTIONS(1437), - [sym_const_ident] = ACTIONS(1435), - [sym_builtin] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_tlocal] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_defer] = ACTIONS(1435), - [anon_sym_assert] = ACTIONS(1435), - [anon_sym_nextcase] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_foreach] = ACTIONS(1435), - [anon_sym_foreach_r] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_int] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1435), - [anon_sym_DOLLARassert] = ACTIONS(1435), - [anon_sym_DOLLARerror] = ACTIONS(1435), - [anon_sym_DOLLARecho] = ACTIONS(1435), - [anon_sym_DOLLARif] = ACTIONS(1435), - [anon_sym_DOLLARcase] = ACTIONS(1435), - [anon_sym_DOLLARdefault] = ACTIONS(1435), - [anon_sym_DOLLARswitch] = ACTIONS(1435), - [anon_sym_DOLLARendswitch] = ACTIONS(1435), - [anon_sym_DOLLARfor] = ACTIONS(1435), - [anon_sym_DOLLARforeach] = ACTIONS(1435), - [anon_sym_DOLLARalignof] = ACTIONS(1435), - [anon_sym_DOLLARextnameof] = ACTIONS(1435), - [anon_sym_DOLLARnameof] = ACTIONS(1435), - [anon_sym_DOLLARoffsetof] = ACTIONS(1435), - [anon_sym_DOLLARqnameof] = ACTIONS(1435), - [anon_sym_DOLLARvaconst] = ACTIONS(1435), - [anon_sym_DOLLARvaarg] = ACTIONS(1435), - [anon_sym_DOLLARvaref] = ACTIONS(1435), - [anon_sym_DOLLARvaexpr] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), - [anon_sym_null] = ACTIONS(1435), - [anon_sym_DOLLARvacount] = ACTIONS(1435), - [anon_sym_DOLLAReval] = ACTIONS(1435), - [anon_sym_DOLLARis_const] = ACTIONS(1435), - [anon_sym_DOLLARsizeof] = ACTIONS(1435), - [anon_sym_DOLLARstringify] = ACTIONS(1435), - [anon_sym_DOLLARappend] = ACTIONS(1435), - [anon_sym_DOLLARconcat] = ACTIONS(1435), - [anon_sym_DOLLARdefined] = ACTIONS(1435), - [anon_sym_DOLLARembed] = ACTIONS(1435), - [anon_sym_DOLLARand] = ACTIONS(1435), - [anon_sym_DOLLARor] = ACTIONS(1435), - [anon_sym_DOLLARfeature] = ACTIONS(1435), - [anon_sym_DOLLARassignable] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_typeid] = ACTIONS(1435), - [anon_sym_LBRACE_PIPE] = ACTIONS(1437), - [anon_sym_void] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_ichar] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_ushort] = ACTIONS(1435), - [anon_sym_uint] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_ulong] = ACTIONS(1435), - [anon_sym_int128] = ACTIONS(1435), - [anon_sym_uint128] = ACTIONS(1435), - [anon_sym_float] = ACTIONS(1435), - [anon_sym_double] = ACTIONS(1435), - [anon_sym_float16] = ACTIONS(1435), - [anon_sym_bfloat16] = ACTIONS(1435), - [anon_sym_float128] = ACTIONS(1435), - [anon_sym_iptr] = ACTIONS(1435), - [anon_sym_uptr] = ACTIONS(1435), - [anon_sym_isz] = ACTIONS(1435), - [anon_sym_usz] = ACTIONS(1435), - [anon_sym_anyfault] = ACTIONS(1435), - [anon_sym_any] = ACTIONS(1435), - [anon_sym_DOLLARtypeof] = ACTIONS(1435), - [anon_sym_DOLLARtypefrom] = ACTIONS(1435), - [anon_sym_DOLLARevaltype] = ACTIONS(1435), - [anon_sym_DOLLARvatype] = ACTIONS(1435), - [sym_real_literal] = ACTIONS(1437), - }, - [480] = { - [sym_line_comment] = STATE(480), - [sym_doc_comment] = STATE(480), - [sym_block_comment] = STATE(480), - [sym_ident] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [anon_sym_BQUOTE] = ACTIONS(1441), - [sym_bytes_literal] = ACTIONS(1441), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1439), - [sym_at_ident] = ACTIONS(1441), - [sym_hash_ident] = ACTIONS(1441), - [sym_type_ident] = ACTIONS(1441), - [sym_ct_type_ident] = ACTIONS(1441), - [sym_const_ident] = ACTIONS(1439), - [sym_builtin] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_tlocal] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_var] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_defer] = ACTIONS(1439), - [anon_sym_assert] = ACTIONS(1439), - [anon_sym_nextcase] = ACTIONS(1439), - [anon_sym_switch] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_foreach] = ACTIONS(1439), - [anon_sym_foreach_r] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_do] = ACTIONS(1439), - [anon_sym_int] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1439), - [anon_sym_DOLLARassert] = ACTIONS(1439), - [anon_sym_DOLLARerror] = ACTIONS(1439), - [anon_sym_DOLLARecho] = ACTIONS(1439), - [anon_sym_DOLLARif] = ACTIONS(1439), - [anon_sym_DOLLARcase] = ACTIONS(1439), - [anon_sym_DOLLARdefault] = ACTIONS(1439), - [anon_sym_DOLLARswitch] = ACTIONS(1439), - [anon_sym_DOLLARendswitch] = ACTIONS(1439), - [anon_sym_DOLLARfor] = ACTIONS(1439), - [anon_sym_DOLLARforeach] = ACTIONS(1439), - [anon_sym_DOLLARalignof] = ACTIONS(1439), - [anon_sym_DOLLARextnameof] = ACTIONS(1439), - [anon_sym_DOLLARnameof] = ACTIONS(1439), - [anon_sym_DOLLARoffsetof] = ACTIONS(1439), - [anon_sym_DOLLARqnameof] = ACTIONS(1439), - [anon_sym_DOLLARvaconst] = ACTIONS(1439), - [anon_sym_DOLLARvaarg] = ACTIONS(1439), - [anon_sym_DOLLARvaref] = ACTIONS(1439), - [anon_sym_DOLLARvaexpr] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_DOLLARvacount] = ACTIONS(1439), - [anon_sym_DOLLAReval] = ACTIONS(1439), - [anon_sym_DOLLARis_const] = ACTIONS(1439), - [anon_sym_DOLLARsizeof] = ACTIONS(1439), - [anon_sym_DOLLARstringify] = ACTIONS(1439), - [anon_sym_DOLLARappend] = ACTIONS(1439), - [anon_sym_DOLLARconcat] = ACTIONS(1439), - [anon_sym_DOLLARdefined] = ACTIONS(1439), - [anon_sym_DOLLARembed] = ACTIONS(1439), - [anon_sym_DOLLARand] = ACTIONS(1439), - [anon_sym_DOLLARor] = ACTIONS(1439), - [anon_sym_DOLLARfeature] = ACTIONS(1439), - [anon_sym_DOLLARassignable] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_typeid] = ACTIONS(1439), - [anon_sym_LBRACE_PIPE] = ACTIONS(1441), - [anon_sym_void] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_ichar] = ACTIONS(1439), - [anon_sym_short] = ACTIONS(1439), - [anon_sym_ushort] = ACTIONS(1439), - [anon_sym_uint] = ACTIONS(1439), - [anon_sym_long] = ACTIONS(1439), - [anon_sym_ulong] = ACTIONS(1439), - [anon_sym_int128] = ACTIONS(1439), - [anon_sym_uint128] = ACTIONS(1439), - [anon_sym_float] = ACTIONS(1439), - [anon_sym_double] = ACTIONS(1439), - [anon_sym_float16] = ACTIONS(1439), - [anon_sym_bfloat16] = ACTIONS(1439), - [anon_sym_float128] = ACTIONS(1439), - [anon_sym_iptr] = ACTIONS(1439), - [anon_sym_uptr] = ACTIONS(1439), - [anon_sym_isz] = ACTIONS(1439), - [anon_sym_usz] = ACTIONS(1439), - [anon_sym_anyfault] = ACTIONS(1439), - [anon_sym_any] = ACTIONS(1439), - [anon_sym_DOLLARtypeof] = ACTIONS(1439), - [anon_sym_DOLLARtypefrom] = ACTIONS(1439), - [anon_sym_DOLLARevaltype] = ACTIONS(1439), - [anon_sym_DOLLARvatype] = ACTIONS(1439), - [sym_real_literal] = ACTIONS(1441), - }, - [481] = { - [sym_line_comment] = STATE(481), - [sym_doc_comment] = STATE(481), - [sym_block_comment] = STATE(481), - [sym_ident] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_BQUOTE] = ACTIONS(1445), - [sym_bytes_literal] = ACTIONS(1445), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1443), - [sym_at_ident] = ACTIONS(1445), - [sym_hash_ident] = ACTIONS(1445), - [sym_type_ident] = ACTIONS(1445), - [sym_ct_type_ident] = ACTIONS(1445), - [sym_const_ident] = ACTIONS(1443), - [sym_builtin] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_tlocal] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_var] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_defer] = ACTIONS(1443), - [anon_sym_assert] = ACTIONS(1443), - [anon_sym_nextcase] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_foreach] = ACTIONS(1443), - [anon_sym_foreach_r] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_int] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_asm] = ACTIONS(1443), - [anon_sym_DOLLARassert] = ACTIONS(1443), - [anon_sym_DOLLARerror] = ACTIONS(1443), - [anon_sym_DOLLARecho] = ACTIONS(1443), - [anon_sym_DOLLARif] = ACTIONS(1443), - [anon_sym_DOLLARcase] = ACTIONS(1443), - [anon_sym_DOLLARdefault] = ACTIONS(1443), - [anon_sym_DOLLARswitch] = ACTIONS(1443), - [anon_sym_DOLLARendswitch] = ACTIONS(1443), - [anon_sym_DOLLARfor] = ACTIONS(1443), - [anon_sym_DOLLARforeach] = ACTIONS(1443), - [anon_sym_DOLLARalignof] = ACTIONS(1443), - [anon_sym_DOLLARextnameof] = ACTIONS(1443), - [anon_sym_DOLLARnameof] = ACTIONS(1443), - [anon_sym_DOLLARoffsetof] = ACTIONS(1443), - [anon_sym_DOLLARqnameof] = ACTIONS(1443), - [anon_sym_DOLLARvaconst] = ACTIONS(1443), - [anon_sym_DOLLARvaarg] = ACTIONS(1443), - [anon_sym_DOLLARvaref] = ACTIONS(1443), - [anon_sym_DOLLARvaexpr] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_null] = ACTIONS(1443), - [anon_sym_DOLLARvacount] = ACTIONS(1443), - [anon_sym_DOLLAReval] = ACTIONS(1443), - [anon_sym_DOLLARis_const] = ACTIONS(1443), - [anon_sym_DOLLARsizeof] = ACTIONS(1443), - [anon_sym_DOLLARstringify] = ACTIONS(1443), - [anon_sym_DOLLARappend] = ACTIONS(1443), - [anon_sym_DOLLARconcat] = ACTIONS(1443), - [anon_sym_DOLLARdefined] = ACTIONS(1443), - [anon_sym_DOLLARembed] = ACTIONS(1443), - [anon_sym_DOLLARand] = ACTIONS(1443), - [anon_sym_DOLLARor] = ACTIONS(1443), - [anon_sym_DOLLARfeature] = ACTIONS(1443), - [anon_sym_DOLLARassignable] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_typeid] = ACTIONS(1443), - [anon_sym_LBRACE_PIPE] = ACTIONS(1445), - [anon_sym_void] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_ichar] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [anon_sym_ushort] = ACTIONS(1443), - [anon_sym_uint] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_ulong] = ACTIONS(1443), - [anon_sym_int128] = ACTIONS(1443), - [anon_sym_uint128] = ACTIONS(1443), - [anon_sym_float] = ACTIONS(1443), - [anon_sym_double] = ACTIONS(1443), - [anon_sym_float16] = ACTIONS(1443), - [anon_sym_bfloat16] = ACTIONS(1443), - [anon_sym_float128] = ACTIONS(1443), - [anon_sym_iptr] = ACTIONS(1443), - [anon_sym_uptr] = ACTIONS(1443), - [anon_sym_isz] = ACTIONS(1443), - [anon_sym_usz] = ACTIONS(1443), - [anon_sym_anyfault] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_DOLLARtypeof] = ACTIONS(1443), - [anon_sym_DOLLARtypefrom] = ACTIONS(1443), - [anon_sym_DOLLARevaltype] = ACTIONS(1443), - [anon_sym_DOLLARvatype] = ACTIONS(1443), - [sym_real_literal] = ACTIONS(1445), - }, - [482] = { - [sym_line_comment] = STATE(482), - [sym_doc_comment] = STATE(482), - [sym_block_comment] = STATE(482), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARcase] = ACTIONS(1487), - [anon_sym_DOLLARdefault] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARendswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARappend] = ACTIONS(1487), - [anon_sym_DOLLARconcat] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), - }, - [483] = { - [sym_line_comment] = STATE(483), - [sym_doc_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [sym_ident] = ACTIONS(1621), - [sym_integer_literal] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [anon_sym_BQUOTE] = ACTIONS(1623), - [sym_bytes_literal] = ACTIONS(1623), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1621), - [sym_at_ident] = ACTIONS(1623), - [sym_hash_ident] = ACTIONS(1623), - [sym_type_ident] = ACTIONS(1623), - [sym_ct_type_ident] = ACTIONS(1623), - [sym_const_ident] = ACTIONS(1621), - [sym_builtin] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_tlocal] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_var] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_defer] = ACTIONS(1621), - [anon_sym_assert] = ACTIONS(1621), - [anon_sym_nextcase] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_foreach] = ACTIONS(1621), - [anon_sym_foreach_r] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_int] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_asm] = ACTIONS(1621), - [anon_sym_DOLLARassert] = ACTIONS(1621), - [anon_sym_DOLLARerror] = ACTIONS(1621), - [anon_sym_DOLLARecho] = ACTIONS(1621), - [anon_sym_DOLLARif] = ACTIONS(1621), - [anon_sym_DOLLARcase] = ACTIONS(1621), - [anon_sym_DOLLARdefault] = ACTIONS(1621), - [anon_sym_DOLLARswitch] = ACTIONS(1621), - [anon_sym_DOLLARendswitch] = ACTIONS(1621), - [anon_sym_DOLLARfor] = ACTIONS(1621), - [anon_sym_DOLLARforeach] = ACTIONS(1621), - [anon_sym_DOLLARalignof] = ACTIONS(1621), - [anon_sym_DOLLARextnameof] = ACTIONS(1621), - [anon_sym_DOLLARnameof] = ACTIONS(1621), - [anon_sym_DOLLARoffsetof] = ACTIONS(1621), - [anon_sym_DOLLARqnameof] = ACTIONS(1621), - [anon_sym_DOLLARvaconst] = ACTIONS(1621), - [anon_sym_DOLLARvaarg] = ACTIONS(1621), - [anon_sym_DOLLARvaref] = ACTIONS(1621), - [anon_sym_DOLLARvaexpr] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1621), - [anon_sym_false] = ACTIONS(1621), - [anon_sym_null] = ACTIONS(1621), - [anon_sym_DOLLARvacount] = ACTIONS(1621), - [anon_sym_DOLLAReval] = ACTIONS(1621), - [anon_sym_DOLLARis_const] = ACTIONS(1621), - [anon_sym_DOLLARsizeof] = ACTIONS(1621), - [anon_sym_DOLLARstringify] = ACTIONS(1621), - [anon_sym_DOLLARappend] = ACTIONS(1621), - [anon_sym_DOLLARconcat] = ACTIONS(1621), - [anon_sym_DOLLARdefined] = ACTIONS(1621), - [anon_sym_DOLLARembed] = ACTIONS(1621), - [anon_sym_DOLLARand] = ACTIONS(1621), - [anon_sym_DOLLARor] = ACTIONS(1621), - [anon_sym_DOLLARfeature] = ACTIONS(1621), - [anon_sym_DOLLARassignable] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_typeid] = ACTIONS(1621), - [anon_sym_LBRACE_PIPE] = ACTIONS(1623), - [anon_sym_void] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_char] = ACTIONS(1621), - [anon_sym_ichar] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [anon_sym_ushort] = ACTIONS(1621), - [anon_sym_uint] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_ulong] = ACTIONS(1621), - [anon_sym_int128] = ACTIONS(1621), - [anon_sym_uint128] = ACTIONS(1621), - [anon_sym_float] = ACTIONS(1621), - [anon_sym_double] = ACTIONS(1621), - [anon_sym_float16] = ACTIONS(1621), - [anon_sym_bfloat16] = ACTIONS(1621), - [anon_sym_float128] = ACTIONS(1621), - [anon_sym_iptr] = ACTIONS(1621), - [anon_sym_uptr] = ACTIONS(1621), - [anon_sym_isz] = ACTIONS(1621), - [anon_sym_usz] = ACTIONS(1621), - [anon_sym_anyfault] = ACTIONS(1621), - [anon_sym_any] = ACTIONS(1621), - [anon_sym_DOLLARtypeof] = ACTIONS(1621), - [anon_sym_DOLLARtypefrom] = ACTIONS(1621), - [anon_sym_DOLLARevaltype] = ACTIONS(1621), - [anon_sym_DOLLARvatype] = ACTIONS(1621), - [sym_real_literal] = ACTIONS(1623), - }, - [484] = { - [sym_line_comment] = STATE(484), - [sym_doc_comment] = STATE(484), - [sym_block_comment] = STATE(484), - [sym_ident] = ACTIONS(1399), - [sym_integer_literal] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_BQUOTE] = ACTIONS(1401), - [sym_bytes_literal] = ACTIONS(1401), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1399), - [sym_at_ident] = ACTIONS(1401), - [sym_hash_ident] = ACTIONS(1401), - [sym_type_ident] = ACTIONS(1401), - [sym_ct_type_ident] = ACTIONS(1401), - [sym_const_ident] = ACTIONS(1399), - [sym_builtin] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_static] = ACTIONS(1399), - [anon_sym_tlocal] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_var] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_defer] = ACTIONS(1399), - [anon_sym_assert] = ACTIONS(1399), - [anon_sym_nextcase] = ACTIONS(1399), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_foreach] = ACTIONS(1399), - [anon_sym_foreach_r] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_int] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_asm] = ACTIONS(1399), - [anon_sym_DOLLARassert] = ACTIONS(1399), - [anon_sym_DOLLARerror] = ACTIONS(1399), - [anon_sym_DOLLARecho] = ACTIONS(1399), - [anon_sym_DOLLARif] = ACTIONS(1399), - [anon_sym_DOLLARcase] = ACTIONS(1399), - [anon_sym_DOLLARdefault] = ACTIONS(1399), - [anon_sym_DOLLARswitch] = ACTIONS(1399), - [anon_sym_DOLLARendswitch] = ACTIONS(1399), - [anon_sym_DOLLARfor] = ACTIONS(1399), - [anon_sym_DOLLARforeach] = ACTIONS(1399), - [anon_sym_DOLLARalignof] = ACTIONS(1399), - [anon_sym_DOLLARextnameof] = ACTIONS(1399), - [anon_sym_DOLLARnameof] = ACTIONS(1399), - [anon_sym_DOLLARoffsetof] = ACTIONS(1399), - [anon_sym_DOLLARqnameof] = ACTIONS(1399), - [anon_sym_DOLLARvaconst] = ACTIONS(1399), - [anon_sym_DOLLARvaarg] = ACTIONS(1399), - [anon_sym_DOLLARvaref] = ACTIONS(1399), - [anon_sym_DOLLARvaexpr] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_DOLLARvacount] = ACTIONS(1399), - [anon_sym_DOLLAReval] = ACTIONS(1399), - [anon_sym_DOLLARis_const] = ACTIONS(1399), - [anon_sym_DOLLARsizeof] = ACTIONS(1399), - [anon_sym_DOLLARstringify] = ACTIONS(1399), - [anon_sym_DOLLARappend] = ACTIONS(1399), - [anon_sym_DOLLARconcat] = ACTIONS(1399), - [anon_sym_DOLLARdefined] = ACTIONS(1399), - [anon_sym_DOLLARembed] = ACTIONS(1399), - [anon_sym_DOLLARand] = ACTIONS(1399), - [anon_sym_DOLLARor] = ACTIONS(1399), - [anon_sym_DOLLARfeature] = ACTIONS(1399), - [anon_sym_DOLLARassignable] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_typeid] = ACTIONS(1399), - [anon_sym_LBRACE_PIPE] = ACTIONS(1401), - [anon_sym_void] = ACTIONS(1399), - [anon_sym_bool] = ACTIONS(1399), - [anon_sym_char] = ACTIONS(1399), - [anon_sym_ichar] = ACTIONS(1399), - [anon_sym_short] = ACTIONS(1399), - [anon_sym_ushort] = ACTIONS(1399), - [anon_sym_uint] = ACTIONS(1399), - [anon_sym_long] = ACTIONS(1399), - [anon_sym_ulong] = ACTIONS(1399), - [anon_sym_int128] = ACTIONS(1399), - [anon_sym_uint128] = ACTIONS(1399), - [anon_sym_float] = ACTIONS(1399), - [anon_sym_double] = ACTIONS(1399), - [anon_sym_float16] = ACTIONS(1399), - [anon_sym_bfloat16] = ACTIONS(1399), - [anon_sym_float128] = ACTIONS(1399), - [anon_sym_iptr] = ACTIONS(1399), - [anon_sym_uptr] = ACTIONS(1399), - [anon_sym_isz] = ACTIONS(1399), - [anon_sym_usz] = ACTIONS(1399), - [anon_sym_anyfault] = ACTIONS(1399), - [anon_sym_any] = ACTIONS(1399), - [anon_sym_DOLLARtypeof] = ACTIONS(1399), - [anon_sym_DOLLARtypefrom] = ACTIONS(1399), - [anon_sym_DOLLARevaltype] = ACTIONS(1399), - [anon_sym_DOLLARvatype] = ACTIONS(1399), - [sym_real_literal] = ACTIONS(1401), - }, - [485] = { - [sym_line_comment] = STATE(485), - [sym_doc_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [sym_ident] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_BQUOTE] = ACTIONS(1425), - [sym_bytes_literal] = ACTIONS(1425), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1423), - [sym_at_ident] = ACTIONS(1425), - [sym_hash_ident] = ACTIONS(1425), - [sym_type_ident] = ACTIONS(1425), - [sym_ct_type_ident] = ACTIONS(1425), - [sym_const_ident] = ACTIONS(1423), - [sym_builtin] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_tlocal] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_var] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_defer] = ACTIONS(1423), - [anon_sym_assert] = ACTIONS(1423), - [anon_sym_nextcase] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_foreach] = ACTIONS(1423), - [anon_sym_foreach_r] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_int] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1423), - [anon_sym_DOLLARassert] = ACTIONS(1423), - [anon_sym_DOLLARerror] = ACTIONS(1423), - [anon_sym_DOLLARecho] = ACTIONS(1423), - [anon_sym_DOLLARif] = ACTIONS(1423), - [anon_sym_DOLLARcase] = ACTIONS(1423), - [anon_sym_DOLLARdefault] = ACTIONS(1423), - [anon_sym_DOLLARswitch] = ACTIONS(1423), - [anon_sym_DOLLARendswitch] = ACTIONS(1423), - [anon_sym_DOLLARfor] = ACTIONS(1423), - [anon_sym_DOLLARforeach] = ACTIONS(1423), - [anon_sym_DOLLARalignof] = ACTIONS(1423), - [anon_sym_DOLLARextnameof] = ACTIONS(1423), - [anon_sym_DOLLARnameof] = ACTIONS(1423), - [anon_sym_DOLLARoffsetof] = ACTIONS(1423), - [anon_sym_DOLLARqnameof] = ACTIONS(1423), - [anon_sym_DOLLARvaconst] = ACTIONS(1423), - [anon_sym_DOLLARvaarg] = ACTIONS(1423), - [anon_sym_DOLLARvaref] = ACTIONS(1423), - [anon_sym_DOLLARvaexpr] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_null] = ACTIONS(1423), - [anon_sym_DOLLARvacount] = ACTIONS(1423), - [anon_sym_DOLLAReval] = ACTIONS(1423), - [anon_sym_DOLLARis_const] = ACTIONS(1423), - [anon_sym_DOLLARsizeof] = ACTIONS(1423), - [anon_sym_DOLLARstringify] = ACTIONS(1423), - [anon_sym_DOLLARappend] = ACTIONS(1423), - [anon_sym_DOLLARconcat] = ACTIONS(1423), - [anon_sym_DOLLARdefined] = ACTIONS(1423), - [anon_sym_DOLLARembed] = ACTIONS(1423), - [anon_sym_DOLLARand] = ACTIONS(1423), - [anon_sym_DOLLARor] = ACTIONS(1423), - [anon_sym_DOLLARfeature] = ACTIONS(1423), - [anon_sym_DOLLARassignable] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_typeid] = ACTIONS(1423), - [anon_sym_LBRACE_PIPE] = ACTIONS(1425), - [anon_sym_void] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_ichar] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [anon_sym_ushort] = ACTIONS(1423), - [anon_sym_uint] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_ulong] = ACTIONS(1423), - [anon_sym_int128] = ACTIONS(1423), - [anon_sym_uint128] = ACTIONS(1423), - [anon_sym_float] = ACTIONS(1423), - [anon_sym_double] = ACTIONS(1423), - [anon_sym_float16] = ACTIONS(1423), - [anon_sym_bfloat16] = ACTIONS(1423), - [anon_sym_float128] = ACTIONS(1423), - [anon_sym_iptr] = ACTIONS(1423), - [anon_sym_uptr] = ACTIONS(1423), - [anon_sym_isz] = ACTIONS(1423), - [anon_sym_usz] = ACTIONS(1423), - [anon_sym_anyfault] = ACTIONS(1423), - [anon_sym_any] = ACTIONS(1423), - [anon_sym_DOLLARtypeof] = ACTIONS(1423), - [anon_sym_DOLLARtypefrom] = ACTIONS(1423), - [anon_sym_DOLLARevaltype] = ACTIONS(1423), - [anon_sym_DOLLARvatype] = ACTIONS(1423), - [sym_real_literal] = ACTIONS(1425), - }, - [486] = { - [sym_line_comment] = STATE(486), - [sym_doc_comment] = STATE(486), - [sym_block_comment] = STATE(486), - [sym_ident] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_BQUOTE] = ACTIONS(1381), - [sym_bytes_literal] = ACTIONS(1381), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1379), - [sym_at_ident] = ACTIONS(1381), - [sym_hash_ident] = ACTIONS(1381), - [sym_type_ident] = ACTIONS(1381), - [sym_ct_type_ident] = ACTIONS(1381), - [sym_const_ident] = ACTIONS(1379), - [sym_builtin] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_tlocal] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_fn] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_var] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_defer] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_nextcase] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_foreach] = ACTIONS(1379), - [anon_sym_foreach_r] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_int] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym_DOLLARassert] = ACTIONS(1379), - [anon_sym_DOLLARerror] = ACTIONS(1379), - [anon_sym_DOLLARecho] = ACTIONS(1379), - [anon_sym_DOLLARif] = ACTIONS(1379), - [anon_sym_DOLLARcase] = ACTIONS(1379), - [anon_sym_DOLLARdefault] = ACTIONS(1379), - [anon_sym_DOLLARswitch] = ACTIONS(1379), - [anon_sym_DOLLARendswitch] = ACTIONS(1379), - [anon_sym_DOLLARfor] = ACTIONS(1379), - [anon_sym_DOLLARforeach] = ACTIONS(1379), - [anon_sym_DOLLARalignof] = ACTIONS(1379), - [anon_sym_DOLLARextnameof] = ACTIONS(1379), - [anon_sym_DOLLARnameof] = ACTIONS(1379), - [anon_sym_DOLLARoffsetof] = ACTIONS(1379), - [anon_sym_DOLLARqnameof] = ACTIONS(1379), - [anon_sym_DOLLARvaconst] = ACTIONS(1379), - [anon_sym_DOLLARvaarg] = ACTIONS(1379), - [anon_sym_DOLLARvaref] = ACTIONS(1379), - [anon_sym_DOLLARvaexpr] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1379), - [anon_sym_false] = ACTIONS(1379), - [anon_sym_null] = ACTIONS(1379), - [anon_sym_DOLLARvacount] = ACTIONS(1379), - [anon_sym_DOLLAReval] = ACTIONS(1379), - [anon_sym_DOLLARis_const] = ACTIONS(1379), - [anon_sym_DOLLARsizeof] = ACTIONS(1379), - [anon_sym_DOLLARstringify] = ACTIONS(1379), - [anon_sym_DOLLARappend] = ACTIONS(1379), - [anon_sym_DOLLARconcat] = ACTIONS(1379), - [anon_sym_DOLLARdefined] = ACTIONS(1379), - [anon_sym_DOLLARembed] = ACTIONS(1379), - [anon_sym_DOLLARand] = ACTIONS(1379), - [anon_sym_DOLLARor] = ACTIONS(1379), - [anon_sym_DOLLARfeature] = ACTIONS(1379), - [anon_sym_DOLLARassignable] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_typeid] = ACTIONS(1379), - [anon_sym_LBRACE_PIPE] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1379), - [anon_sym_bool] = ACTIONS(1379), - [anon_sym_char] = ACTIONS(1379), - [anon_sym_ichar] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_ushort] = ACTIONS(1379), - [anon_sym_uint] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_ulong] = ACTIONS(1379), - [anon_sym_int128] = ACTIONS(1379), - [anon_sym_uint128] = ACTIONS(1379), - [anon_sym_float] = ACTIONS(1379), - [anon_sym_double] = ACTIONS(1379), - [anon_sym_float16] = ACTIONS(1379), - [anon_sym_bfloat16] = ACTIONS(1379), - [anon_sym_float128] = ACTIONS(1379), - [anon_sym_iptr] = ACTIONS(1379), - [anon_sym_uptr] = ACTIONS(1379), - [anon_sym_isz] = ACTIONS(1379), - [anon_sym_usz] = ACTIONS(1379), - [anon_sym_anyfault] = ACTIONS(1379), - [anon_sym_any] = ACTIONS(1379), - [anon_sym_DOLLARtypeof] = ACTIONS(1379), - [anon_sym_DOLLARtypefrom] = ACTIONS(1379), - [anon_sym_DOLLARevaltype] = ACTIONS(1379), - [anon_sym_DOLLARvatype] = ACTIONS(1379), - [sym_real_literal] = ACTIONS(1381), - }, - [487] = { - [sym_line_comment] = STATE(487), - [sym_doc_comment] = STATE(487), - [sym_block_comment] = STATE(487), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARcase] = ACTIONS(1451), - [anon_sym_DOLLARdefault] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARendswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), - }, - [488] = { - [sym_line_comment] = STATE(488), - [sym_doc_comment] = STATE(488), - [sym_block_comment] = STATE(488), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARcase] = ACTIONS(1451), - [anon_sym_DOLLARdefault] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARendswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), - }, - [489] = { - [sym_line_comment] = STATE(489), - [sym_doc_comment] = STATE(489), - [sym_block_comment] = STATE(489), - [sym_ident] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_BQUOTE] = ACTIONS(1457), - [sym_bytes_literal] = ACTIONS(1457), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1455), - [sym_at_ident] = ACTIONS(1457), - [sym_hash_ident] = ACTIONS(1457), - [sym_type_ident] = ACTIONS(1457), - [sym_ct_type_ident] = ACTIONS(1457), - [sym_const_ident] = ACTIONS(1455), - [sym_builtin] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_tlocal] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_var] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_defer] = ACTIONS(1455), - [anon_sym_assert] = ACTIONS(1455), - [anon_sym_nextcase] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_foreach] = ACTIONS(1455), - [anon_sym_foreach_r] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_int] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1455), - [anon_sym_DOLLARassert] = ACTIONS(1455), - [anon_sym_DOLLARerror] = ACTIONS(1455), - [anon_sym_DOLLARecho] = ACTIONS(1455), - [anon_sym_DOLLARif] = ACTIONS(1455), - [anon_sym_DOLLARcase] = ACTIONS(1455), - [anon_sym_DOLLARdefault] = ACTIONS(1455), - [anon_sym_DOLLARswitch] = ACTIONS(1455), - [anon_sym_DOLLARendswitch] = ACTIONS(1455), - [anon_sym_DOLLARfor] = ACTIONS(1455), - [anon_sym_DOLLARforeach] = ACTIONS(1455), - [anon_sym_DOLLARalignof] = ACTIONS(1455), - [anon_sym_DOLLARextnameof] = ACTIONS(1455), - [anon_sym_DOLLARnameof] = ACTIONS(1455), - [anon_sym_DOLLARoffsetof] = ACTIONS(1455), - [anon_sym_DOLLARqnameof] = ACTIONS(1455), - [anon_sym_DOLLARvaconst] = ACTIONS(1455), - [anon_sym_DOLLARvaarg] = ACTIONS(1455), - [anon_sym_DOLLARvaref] = ACTIONS(1455), - [anon_sym_DOLLARvaexpr] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_DOLLARvacount] = ACTIONS(1455), - [anon_sym_DOLLAReval] = ACTIONS(1455), - [anon_sym_DOLLARis_const] = ACTIONS(1455), - [anon_sym_DOLLARsizeof] = ACTIONS(1455), - [anon_sym_DOLLARstringify] = ACTIONS(1455), - [anon_sym_DOLLARappend] = ACTIONS(1455), - [anon_sym_DOLLARconcat] = ACTIONS(1455), - [anon_sym_DOLLARdefined] = ACTIONS(1455), - [anon_sym_DOLLARembed] = ACTIONS(1455), - [anon_sym_DOLLARand] = ACTIONS(1455), - [anon_sym_DOLLARor] = ACTIONS(1455), - [anon_sym_DOLLARfeature] = ACTIONS(1455), - [anon_sym_DOLLARassignable] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_typeid] = ACTIONS(1455), - [anon_sym_LBRACE_PIPE] = ACTIONS(1457), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_ichar] = ACTIONS(1455), - [anon_sym_short] = ACTIONS(1455), - [anon_sym_ushort] = ACTIONS(1455), - [anon_sym_uint] = ACTIONS(1455), - [anon_sym_long] = ACTIONS(1455), - [anon_sym_ulong] = ACTIONS(1455), - [anon_sym_int128] = ACTIONS(1455), - [anon_sym_uint128] = ACTIONS(1455), - [anon_sym_float] = ACTIONS(1455), - [anon_sym_double] = ACTIONS(1455), - [anon_sym_float16] = ACTIONS(1455), - [anon_sym_bfloat16] = ACTIONS(1455), - [anon_sym_float128] = ACTIONS(1455), - [anon_sym_iptr] = ACTIONS(1455), - [anon_sym_uptr] = ACTIONS(1455), - [anon_sym_isz] = ACTIONS(1455), - [anon_sym_usz] = ACTIONS(1455), - [anon_sym_anyfault] = ACTIONS(1455), - [anon_sym_any] = ACTIONS(1455), - [anon_sym_DOLLARtypeof] = ACTIONS(1455), - [anon_sym_DOLLARtypefrom] = ACTIONS(1455), - [anon_sym_DOLLARevaltype] = ACTIONS(1455), - [anon_sym_DOLLARvatype] = ACTIONS(1455), - [sym_real_literal] = ACTIONS(1457), - }, - [490] = { - [sym_line_comment] = STATE(490), - [sym_doc_comment] = STATE(490), - [sym_block_comment] = STATE(490), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARcase] = ACTIONS(1483), - [anon_sym_DOLLARdefault] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARendswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARappend] = ACTIONS(1483), - [anon_sym_DOLLARconcat] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), - }, - [491] = { - [sym_line_comment] = STATE(491), - [sym_doc_comment] = STATE(491), - [sym_block_comment] = STATE(491), - [sym_ident] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_bytes_literal] = ACTIONS(1539), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1537), - [sym_at_ident] = ACTIONS(1539), - [sym_hash_ident] = ACTIONS(1539), - [sym_type_ident] = ACTIONS(1539), - [sym_ct_type_ident] = ACTIONS(1539), - [sym_const_ident] = ACTIONS(1537), - [sym_builtin] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_tlocal] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_defer] = ACTIONS(1537), - [anon_sym_assert] = ACTIONS(1537), - [anon_sym_nextcase] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_foreach] = ACTIONS(1537), - [anon_sym_foreach_r] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_int] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym_DOLLARassert] = ACTIONS(1537), - [anon_sym_DOLLARerror] = ACTIONS(1537), - [anon_sym_DOLLARecho] = ACTIONS(1537), - [anon_sym_DOLLARif] = ACTIONS(1537), - [anon_sym_DOLLARcase] = ACTIONS(1537), - [anon_sym_DOLLARdefault] = ACTIONS(1537), - [anon_sym_DOLLARswitch] = ACTIONS(1537), - [anon_sym_DOLLARendswitch] = ACTIONS(1537), - [anon_sym_DOLLARfor] = ACTIONS(1537), - [anon_sym_DOLLARforeach] = ACTIONS(1537), - [anon_sym_DOLLARalignof] = ACTIONS(1537), - [anon_sym_DOLLARextnameof] = ACTIONS(1537), - [anon_sym_DOLLARnameof] = ACTIONS(1537), - [anon_sym_DOLLARoffsetof] = ACTIONS(1537), - [anon_sym_DOLLARqnameof] = ACTIONS(1537), - [anon_sym_DOLLARvaconst] = ACTIONS(1537), - [anon_sym_DOLLARvaarg] = ACTIONS(1537), - [anon_sym_DOLLARvaref] = ACTIONS(1537), - [anon_sym_DOLLARvaexpr] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [anon_sym_DOLLARvacount] = ACTIONS(1537), - [anon_sym_DOLLAReval] = ACTIONS(1537), - [anon_sym_DOLLARis_const] = ACTIONS(1537), - [anon_sym_DOLLARsizeof] = ACTIONS(1537), - [anon_sym_DOLLARstringify] = ACTIONS(1537), - [anon_sym_DOLLARappend] = ACTIONS(1537), - [anon_sym_DOLLARconcat] = ACTIONS(1537), - [anon_sym_DOLLARdefined] = ACTIONS(1537), - [anon_sym_DOLLARembed] = ACTIONS(1537), - [anon_sym_DOLLARand] = ACTIONS(1537), - [anon_sym_DOLLARor] = ACTIONS(1537), - [anon_sym_DOLLARfeature] = ACTIONS(1537), - [anon_sym_DOLLARassignable] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_typeid] = ACTIONS(1537), - [anon_sym_LBRACE_PIPE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_ichar] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [anon_sym_ushort] = ACTIONS(1537), - [anon_sym_uint] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_ulong] = ACTIONS(1537), - [anon_sym_int128] = ACTIONS(1537), - [anon_sym_uint128] = ACTIONS(1537), - [anon_sym_float] = ACTIONS(1537), - [anon_sym_double] = ACTIONS(1537), - [anon_sym_float16] = ACTIONS(1537), - [anon_sym_bfloat16] = ACTIONS(1537), - [anon_sym_float128] = ACTIONS(1537), - [anon_sym_iptr] = ACTIONS(1537), - [anon_sym_uptr] = ACTIONS(1537), - [anon_sym_isz] = ACTIONS(1537), - [anon_sym_usz] = ACTIONS(1537), - [anon_sym_anyfault] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_DOLLARtypeof] = ACTIONS(1537), - [anon_sym_DOLLARtypefrom] = ACTIONS(1537), - [anon_sym_DOLLARevaltype] = ACTIONS(1537), - [anon_sym_DOLLARvatype] = ACTIONS(1537), - [sym_real_literal] = ACTIONS(1539), - }, - [492] = { - [sym_line_comment] = STATE(492), - [sym_doc_comment] = STATE(492), - [sym_block_comment] = STATE(492), - [sym_ident] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_BQUOTE] = ACTIONS(1551), - [sym_bytes_literal] = ACTIONS(1551), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1549), - [sym_at_ident] = ACTIONS(1551), - [sym_hash_ident] = ACTIONS(1551), - [sym_type_ident] = ACTIONS(1551), - [sym_ct_type_ident] = ACTIONS(1551), - [sym_const_ident] = ACTIONS(1549), - [sym_builtin] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_tlocal] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_fn] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_var] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_defer] = ACTIONS(1549), - [anon_sym_assert] = ACTIONS(1549), - [anon_sym_nextcase] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_foreach] = ACTIONS(1549), - [anon_sym_foreach_r] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_int] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_asm] = ACTIONS(1549), - [anon_sym_DOLLARassert] = ACTIONS(1549), - [anon_sym_DOLLARerror] = ACTIONS(1549), - [anon_sym_DOLLARecho] = ACTIONS(1549), - [anon_sym_DOLLARif] = ACTIONS(1549), - [anon_sym_DOLLARcase] = ACTIONS(1549), - [anon_sym_DOLLARdefault] = ACTIONS(1549), - [anon_sym_DOLLARswitch] = ACTIONS(1549), - [anon_sym_DOLLARendswitch] = ACTIONS(1549), - [anon_sym_DOLLARfor] = ACTIONS(1549), - [anon_sym_DOLLARforeach] = ACTIONS(1549), - [anon_sym_DOLLARalignof] = ACTIONS(1549), - [anon_sym_DOLLARextnameof] = ACTIONS(1549), - [anon_sym_DOLLARnameof] = ACTIONS(1549), - [anon_sym_DOLLARoffsetof] = ACTIONS(1549), - [anon_sym_DOLLARqnameof] = ACTIONS(1549), - [anon_sym_DOLLARvaconst] = ACTIONS(1549), - [anon_sym_DOLLARvaarg] = ACTIONS(1549), - [anon_sym_DOLLARvaref] = ACTIONS(1549), - [anon_sym_DOLLARvaexpr] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [anon_sym_DOLLARvacount] = ACTIONS(1549), - [anon_sym_DOLLAReval] = ACTIONS(1549), - [anon_sym_DOLLARis_const] = ACTIONS(1549), - [anon_sym_DOLLARsizeof] = ACTIONS(1549), - [anon_sym_DOLLARstringify] = ACTIONS(1549), - [anon_sym_DOLLARappend] = ACTIONS(1549), - [anon_sym_DOLLARconcat] = ACTIONS(1549), - [anon_sym_DOLLARdefined] = ACTIONS(1549), - [anon_sym_DOLLARembed] = ACTIONS(1549), - [anon_sym_DOLLARand] = ACTIONS(1549), - [anon_sym_DOLLARor] = ACTIONS(1549), - [anon_sym_DOLLARfeature] = ACTIONS(1549), - [anon_sym_DOLLARassignable] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_typeid] = ACTIONS(1549), - [anon_sym_LBRACE_PIPE] = ACTIONS(1551), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_ichar] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [anon_sym_ushort] = ACTIONS(1549), - [anon_sym_uint] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_ulong] = ACTIONS(1549), - [anon_sym_int128] = ACTIONS(1549), - [anon_sym_uint128] = ACTIONS(1549), - [anon_sym_float] = ACTIONS(1549), - [anon_sym_double] = ACTIONS(1549), - [anon_sym_float16] = ACTIONS(1549), - [anon_sym_bfloat16] = ACTIONS(1549), - [anon_sym_float128] = ACTIONS(1549), - [anon_sym_iptr] = ACTIONS(1549), - [anon_sym_uptr] = ACTIONS(1549), - [anon_sym_isz] = ACTIONS(1549), - [anon_sym_usz] = ACTIONS(1549), - [anon_sym_anyfault] = ACTIONS(1549), - [anon_sym_any] = ACTIONS(1549), - [anon_sym_DOLLARtypeof] = ACTIONS(1549), - [anon_sym_DOLLARtypefrom] = ACTIONS(1549), - [anon_sym_DOLLARevaltype] = ACTIONS(1549), - [anon_sym_DOLLARvatype] = ACTIONS(1549), - [sym_real_literal] = ACTIONS(1551), - }, - [493] = { - [sym_line_comment] = STATE(493), - [sym_doc_comment] = STATE(493), - [sym_block_comment] = STATE(493), - [sym_ident] = ACTIONS(1189), - [sym_integer_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [anon_sym_BQUOTE] = ACTIONS(1191), - [sym_bytes_literal] = ACTIONS(1191), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1189), - [sym_at_ident] = ACTIONS(1191), - [sym_hash_ident] = ACTIONS(1191), - [sym_type_ident] = ACTIONS(1191), - [sym_ct_type_ident] = ACTIONS(1191), - [sym_const_ident] = ACTIONS(1189), - [sym_builtin] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_tlocal] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym_fn] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_defer] = ACTIONS(1189), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_nextcase] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_foreach] = ACTIONS(1189), - [anon_sym_foreach_r] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_int] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym_DOLLARassert] = ACTIONS(1189), - [anon_sym_DOLLARerror] = ACTIONS(1189), - [anon_sym_DOLLARecho] = ACTIONS(1189), - [anon_sym_DOLLARif] = ACTIONS(1189), - [anon_sym_DOLLARcase] = ACTIONS(1189), - [anon_sym_DOLLARdefault] = ACTIONS(1189), - [anon_sym_DOLLARswitch] = ACTIONS(1189), - [anon_sym_DOLLARendswitch] = ACTIONS(1189), - [anon_sym_DOLLARfor] = ACTIONS(1189), - [anon_sym_DOLLARforeach] = ACTIONS(1189), - [anon_sym_DOLLARalignof] = ACTIONS(1189), - [anon_sym_DOLLARextnameof] = ACTIONS(1189), - [anon_sym_DOLLARnameof] = ACTIONS(1189), - [anon_sym_DOLLARoffsetof] = ACTIONS(1189), - [anon_sym_DOLLARqnameof] = ACTIONS(1189), - [anon_sym_DOLLARvaconst] = ACTIONS(1189), - [anon_sym_DOLLARvaarg] = ACTIONS(1189), - [anon_sym_DOLLARvaref] = ACTIONS(1189), - [anon_sym_DOLLARvaexpr] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_DOLLARvacount] = ACTIONS(1189), - [anon_sym_DOLLAReval] = ACTIONS(1189), - [anon_sym_DOLLARis_const] = ACTIONS(1189), - [anon_sym_DOLLARsizeof] = ACTIONS(1189), - [anon_sym_DOLLARstringify] = ACTIONS(1189), - [anon_sym_DOLLARappend] = ACTIONS(1189), - [anon_sym_DOLLARconcat] = ACTIONS(1189), - [anon_sym_DOLLARdefined] = ACTIONS(1189), - [anon_sym_DOLLARembed] = ACTIONS(1189), - [anon_sym_DOLLARand] = ACTIONS(1189), - [anon_sym_DOLLARor] = ACTIONS(1189), - [anon_sym_DOLLARfeature] = ACTIONS(1189), - [anon_sym_DOLLARassignable] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_typeid] = ACTIONS(1189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1191), - [anon_sym_void] = ACTIONS(1189), - [anon_sym_bool] = ACTIONS(1189), - [anon_sym_char] = ACTIONS(1189), - [anon_sym_ichar] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_ushort] = ACTIONS(1189), - [anon_sym_uint] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_ulong] = ACTIONS(1189), - [anon_sym_int128] = ACTIONS(1189), - [anon_sym_uint128] = ACTIONS(1189), - [anon_sym_float] = ACTIONS(1189), - [anon_sym_double] = ACTIONS(1189), - [anon_sym_float16] = ACTIONS(1189), - [anon_sym_bfloat16] = ACTIONS(1189), - [anon_sym_float128] = ACTIONS(1189), - [anon_sym_iptr] = ACTIONS(1189), - [anon_sym_uptr] = ACTIONS(1189), - [anon_sym_isz] = ACTIONS(1189), - [anon_sym_usz] = ACTIONS(1189), - [anon_sym_anyfault] = ACTIONS(1189), - [anon_sym_any] = ACTIONS(1189), - [anon_sym_DOLLARtypeof] = ACTIONS(1189), - [anon_sym_DOLLARtypefrom] = ACTIONS(1189), - [anon_sym_DOLLARevaltype] = ACTIONS(1189), - [anon_sym_DOLLARvatype] = ACTIONS(1189), - [sym_real_literal] = ACTIONS(1191), - }, - [494] = { - [sym_line_comment] = STATE(494), - [sym_doc_comment] = STATE(494), - [sym_block_comment] = STATE(494), - [sym_ident] = ACTIONS(1613), - [sym_integer_literal] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [anon_sym_BQUOTE] = ACTIONS(1615), - [sym_bytes_literal] = ACTIONS(1615), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1613), - [sym_at_ident] = ACTIONS(1615), - [sym_hash_ident] = ACTIONS(1615), - [sym_type_ident] = ACTIONS(1615), - [sym_ct_type_ident] = ACTIONS(1615), - [sym_const_ident] = ACTIONS(1613), - [sym_builtin] = ACTIONS(1615), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_static] = ACTIONS(1613), - [anon_sym_tlocal] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1615), - [anon_sym_fn] = ACTIONS(1613), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1613), - [anon_sym_var] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_defer] = ACTIONS(1613), - [anon_sym_assert] = ACTIONS(1613), - [anon_sym_nextcase] = ACTIONS(1613), - [anon_sym_switch] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_foreach] = ACTIONS(1613), - [anon_sym_foreach_r] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_do] = ACTIONS(1613), - [anon_sym_int] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_asm] = ACTIONS(1613), - [anon_sym_DOLLARassert] = ACTIONS(1613), - [anon_sym_DOLLARerror] = ACTIONS(1613), - [anon_sym_DOLLARecho] = ACTIONS(1613), - [anon_sym_DOLLARif] = ACTIONS(1613), - [anon_sym_DOLLARcase] = ACTIONS(1613), - [anon_sym_DOLLARdefault] = ACTIONS(1613), - [anon_sym_DOLLARswitch] = ACTIONS(1613), - [anon_sym_DOLLARendswitch] = ACTIONS(1613), - [anon_sym_DOLLARfor] = ACTIONS(1613), - [anon_sym_DOLLARforeach] = ACTIONS(1613), - [anon_sym_DOLLARalignof] = ACTIONS(1613), - [anon_sym_DOLLARextnameof] = ACTIONS(1613), - [anon_sym_DOLLARnameof] = ACTIONS(1613), - [anon_sym_DOLLARoffsetof] = ACTIONS(1613), - [anon_sym_DOLLARqnameof] = ACTIONS(1613), - [anon_sym_DOLLARvaconst] = ACTIONS(1613), - [anon_sym_DOLLARvaarg] = ACTIONS(1613), - [anon_sym_DOLLARvaref] = ACTIONS(1613), - [anon_sym_DOLLARvaexpr] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_null] = ACTIONS(1613), - [anon_sym_DOLLARvacount] = ACTIONS(1613), - [anon_sym_DOLLAReval] = ACTIONS(1613), - [anon_sym_DOLLARis_const] = ACTIONS(1613), - [anon_sym_DOLLARsizeof] = ACTIONS(1613), - [anon_sym_DOLLARstringify] = ACTIONS(1613), - [anon_sym_DOLLARappend] = ACTIONS(1613), - [anon_sym_DOLLARconcat] = ACTIONS(1613), - [anon_sym_DOLLARdefined] = ACTIONS(1613), - [anon_sym_DOLLARembed] = ACTIONS(1613), - [anon_sym_DOLLARand] = ACTIONS(1613), - [anon_sym_DOLLARor] = ACTIONS(1613), - [anon_sym_DOLLARfeature] = ACTIONS(1613), - [anon_sym_DOLLARassignable] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1615), - [anon_sym_TILDE] = ACTIONS(1615), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [anon_sym_typeid] = ACTIONS(1613), - [anon_sym_LBRACE_PIPE] = ACTIONS(1615), - [anon_sym_void] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_char] = ACTIONS(1613), - [anon_sym_ichar] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [anon_sym_ushort] = ACTIONS(1613), - [anon_sym_uint] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_ulong] = ACTIONS(1613), - [anon_sym_int128] = ACTIONS(1613), - [anon_sym_uint128] = ACTIONS(1613), - [anon_sym_float] = ACTIONS(1613), - [anon_sym_double] = ACTIONS(1613), - [anon_sym_float16] = ACTIONS(1613), - [anon_sym_bfloat16] = ACTIONS(1613), - [anon_sym_float128] = ACTIONS(1613), - [anon_sym_iptr] = ACTIONS(1613), - [anon_sym_uptr] = ACTIONS(1613), - [anon_sym_isz] = ACTIONS(1613), - [anon_sym_usz] = ACTIONS(1613), - [anon_sym_anyfault] = ACTIONS(1613), - [anon_sym_any] = ACTIONS(1613), - [anon_sym_DOLLARtypeof] = ACTIONS(1613), - [anon_sym_DOLLARtypefrom] = ACTIONS(1613), - [anon_sym_DOLLARevaltype] = ACTIONS(1613), - [anon_sym_DOLLARvatype] = ACTIONS(1613), - [sym_real_literal] = ACTIONS(1615), - }, - [495] = { - [sym_line_comment] = STATE(495), - [sym_doc_comment] = STATE(495), - [sym_block_comment] = STATE(495), - [sym_ident] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_BQUOTE] = ACTIONS(1643), - [sym_bytes_literal] = ACTIONS(1643), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1641), - [sym_at_ident] = ACTIONS(1643), - [sym_hash_ident] = ACTIONS(1643), - [sym_type_ident] = ACTIONS(1643), - [sym_ct_type_ident] = ACTIONS(1643), - [sym_const_ident] = ACTIONS(1641), - [sym_builtin] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_tlocal] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_fn] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_var] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_defer] = ACTIONS(1641), - [anon_sym_assert] = ACTIONS(1641), - [anon_sym_nextcase] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_foreach] = ACTIONS(1641), - [anon_sym_foreach_r] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_int] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_asm] = ACTIONS(1641), - [anon_sym_DOLLARassert] = ACTIONS(1641), - [anon_sym_DOLLARerror] = ACTIONS(1641), - [anon_sym_DOLLARecho] = ACTIONS(1641), - [anon_sym_DOLLARif] = ACTIONS(1641), - [anon_sym_DOLLARcase] = ACTIONS(1641), - [anon_sym_DOLLARdefault] = ACTIONS(1641), - [anon_sym_DOLLARswitch] = ACTIONS(1641), - [anon_sym_DOLLARendswitch] = ACTIONS(1641), - [anon_sym_DOLLARfor] = ACTIONS(1641), - [anon_sym_DOLLARforeach] = ACTIONS(1641), - [anon_sym_DOLLARalignof] = ACTIONS(1641), - [anon_sym_DOLLARextnameof] = ACTIONS(1641), - [anon_sym_DOLLARnameof] = ACTIONS(1641), - [anon_sym_DOLLARoffsetof] = ACTIONS(1641), - [anon_sym_DOLLARqnameof] = ACTIONS(1641), - [anon_sym_DOLLARvaconst] = ACTIONS(1641), - [anon_sym_DOLLARvaarg] = ACTIONS(1641), - [anon_sym_DOLLARvaref] = ACTIONS(1641), - [anon_sym_DOLLARvaexpr] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [anon_sym_DOLLARvacount] = ACTIONS(1641), - [anon_sym_DOLLAReval] = ACTIONS(1641), - [anon_sym_DOLLARis_const] = ACTIONS(1641), - [anon_sym_DOLLARsizeof] = ACTIONS(1641), - [anon_sym_DOLLARstringify] = ACTIONS(1641), - [anon_sym_DOLLARappend] = ACTIONS(1641), - [anon_sym_DOLLARconcat] = ACTIONS(1641), - [anon_sym_DOLLARdefined] = ACTIONS(1641), - [anon_sym_DOLLARembed] = ACTIONS(1641), - [anon_sym_DOLLARand] = ACTIONS(1641), - [anon_sym_DOLLARor] = ACTIONS(1641), - [anon_sym_DOLLARfeature] = ACTIONS(1641), - [anon_sym_DOLLARassignable] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_typeid] = ACTIONS(1641), - [anon_sym_LBRACE_PIPE] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_char] = ACTIONS(1641), - [anon_sym_ichar] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [anon_sym_ushort] = ACTIONS(1641), - [anon_sym_uint] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_ulong] = ACTIONS(1641), - [anon_sym_int128] = ACTIONS(1641), - [anon_sym_uint128] = ACTIONS(1641), - [anon_sym_float] = ACTIONS(1641), - [anon_sym_double] = ACTIONS(1641), - [anon_sym_float16] = ACTIONS(1641), - [anon_sym_bfloat16] = ACTIONS(1641), - [anon_sym_float128] = ACTIONS(1641), - [anon_sym_iptr] = ACTIONS(1641), - [anon_sym_uptr] = ACTIONS(1641), - [anon_sym_isz] = ACTIONS(1641), - [anon_sym_usz] = ACTIONS(1641), - [anon_sym_anyfault] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_DOLLARtypeof] = ACTIONS(1641), - [anon_sym_DOLLARtypefrom] = ACTIONS(1641), - [anon_sym_DOLLARevaltype] = ACTIONS(1641), - [anon_sym_DOLLARvatype] = ACTIONS(1641), - [sym_real_literal] = ACTIONS(1643), - }, - [496] = { - [sym_line_comment] = STATE(496), - [sym_doc_comment] = STATE(496), - [sym_block_comment] = STATE(496), - [sym_ident] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [anon_sym_BQUOTE] = ACTIONS(1531), - [sym_bytes_literal] = ACTIONS(1531), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1529), - [sym_at_ident] = ACTIONS(1531), - [sym_hash_ident] = ACTIONS(1531), - [sym_type_ident] = ACTIONS(1531), - [sym_ct_type_ident] = ACTIONS(1531), - [sym_const_ident] = ACTIONS(1529), - [sym_builtin] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_tlocal] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_var] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_defer] = ACTIONS(1529), - [anon_sym_assert] = ACTIONS(1529), - [anon_sym_nextcase] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_foreach] = ACTIONS(1529), - [anon_sym_foreach_r] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_int] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_asm] = ACTIONS(1529), - [anon_sym_DOLLARassert] = ACTIONS(1529), - [anon_sym_DOLLARerror] = ACTIONS(1529), - [anon_sym_DOLLARecho] = ACTIONS(1529), - [anon_sym_DOLLARif] = ACTIONS(1529), - [anon_sym_DOLLARcase] = ACTIONS(1529), - [anon_sym_DOLLARdefault] = ACTIONS(1529), - [anon_sym_DOLLARswitch] = ACTIONS(1529), - [anon_sym_DOLLARendswitch] = ACTIONS(1529), - [anon_sym_DOLLARfor] = ACTIONS(1529), - [anon_sym_DOLLARforeach] = ACTIONS(1529), - [anon_sym_DOLLARalignof] = ACTIONS(1529), - [anon_sym_DOLLARextnameof] = ACTIONS(1529), - [anon_sym_DOLLARnameof] = ACTIONS(1529), - [anon_sym_DOLLARoffsetof] = ACTIONS(1529), - [anon_sym_DOLLARqnameof] = ACTIONS(1529), - [anon_sym_DOLLARvaconst] = ACTIONS(1529), - [anon_sym_DOLLARvaarg] = ACTIONS(1529), - [anon_sym_DOLLARvaref] = ACTIONS(1529), - [anon_sym_DOLLARvaexpr] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), - [anon_sym_null] = ACTIONS(1529), - [anon_sym_DOLLARvacount] = ACTIONS(1529), - [anon_sym_DOLLAReval] = ACTIONS(1529), - [anon_sym_DOLLARis_const] = ACTIONS(1529), - [anon_sym_DOLLARsizeof] = ACTIONS(1529), - [anon_sym_DOLLARstringify] = ACTIONS(1529), - [anon_sym_DOLLARappend] = ACTIONS(1529), - [anon_sym_DOLLARconcat] = ACTIONS(1529), - [anon_sym_DOLLARdefined] = ACTIONS(1529), - [anon_sym_DOLLARembed] = ACTIONS(1529), - [anon_sym_DOLLARand] = ACTIONS(1529), - [anon_sym_DOLLARor] = ACTIONS(1529), - [anon_sym_DOLLARfeature] = ACTIONS(1529), - [anon_sym_DOLLARassignable] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_typeid] = ACTIONS(1529), - [anon_sym_LBRACE_PIPE] = ACTIONS(1531), - [anon_sym_void] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_ichar] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [anon_sym_ushort] = ACTIONS(1529), - [anon_sym_uint] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_ulong] = ACTIONS(1529), - [anon_sym_int128] = ACTIONS(1529), - [anon_sym_uint128] = ACTIONS(1529), - [anon_sym_float] = ACTIONS(1529), - [anon_sym_double] = ACTIONS(1529), - [anon_sym_float16] = ACTIONS(1529), - [anon_sym_bfloat16] = ACTIONS(1529), - [anon_sym_float128] = ACTIONS(1529), - [anon_sym_iptr] = ACTIONS(1529), - [anon_sym_uptr] = ACTIONS(1529), - [anon_sym_isz] = ACTIONS(1529), - [anon_sym_usz] = ACTIONS(1529), - [anon_sym_anyfault] = ACTIONS(1529), - [anon_sym_any] = ACTIONS(1529), - [anon_sym_DOLLARtypeof] = ACTIONS(1529), - [anon_sym_DOLLARtypefrom] = ACTIONS(1529), - [anon_sym_DOLLARevaltype] = ACTIONS(1529), - [anon_sym_DOLLARvatype] = ACTIONS(1529), - [sym_real_literal] = ACTIONS(1531), - }, - [497] = { - [sym_line_comment] = STATE(497), - [sym_doc_comment] = STATE(497), - [sym_block_comment] = STATE(497), - [sym_ident] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [anon_sym_BQUOTE] = ACTIONS(1579), - [sym_bytes_literal] = ACTIONS(1579), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1577), - [sym_at_ident] = ACTIONS(1579), - [sym_hash_ident] = ACTIONS(1579), - [sym_type_ident] = ACTIONS(1579), - [sym_ct_type_ident] = ACTIONS(1579), - [sym_const_ident] = ACTIONS(1577), - [sym_builtin] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_tlocal] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_fn] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_var] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_defer] = ACTIONS(1577), - [anon_sym_assert] = ACTIONS(1577), - [anon_sym_nextcase] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_foreach] = ACTIONS(1577), - [anon_sym_foreach_r] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_int] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_asm] = ACTIONS(1577), - [anon_sym_DOLLARassert] = ACTIONS(1577), - [anon_sym_DOLLARerror] = ACTIONS(1577), - [anon_sym_DOLLARecho] = ACTIONS(1577), - [anon_sym_DOLLARif] = ACTIONS(1577), - [anon_sym_DOLLARcase] = ACTIONS(1577), - [anon_sym_DOLLARdefault] = ACTIONS(1577), - [anon_sym_DOLLARswitch] = ACTIONS(1577), - [anon_sym_DOLLARendswitch] = ACTIONS(1577), - [anon_sym_DOLLARfor] = ACTIONS(1577), - [anon_sym_DOLLARforeach] = ACTIONS(1577), - [anon_sym_DOLLARalignof] = ACTIONS(1577), - [anon_sym_DOLLARextnameof] = ACTIONS(1577), - [anon_sym_DOLLARnameof] = ACTIONS(1577), - [anon_sym_DOLLARoffsetof] = ACTIONS(1577), - [anon_sym_DOLLARqnameof] = ACTIONS(1577), - [anon_sym_DOLLARvaconst] = ACTIONS(1577), - [anon_sym_DOLLARvaarg] = ACTIONS(1577), - [anon_sym_DOLLARvaref] = ACTIONS(1577), - [anon_sym_DOLLARvaexpr] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [anon_sym_null] = ACTIONS(1577), - [anon_sym_DOLLARvacount] = ACTIONS(1577), - [anon_sym_DOLLAReval] = ACTIONS(1577), - [anon_sym_DOLLARis_const] = ACTIONS(1577), - [anon_sym_DOLLARsizeof] = ACTIONS(1577), - [anon_sym_DOLLARstringify] = ACTIONS(1577), - [anon_sym_DOLLARappend] = ACTIONS(1577), - [anon_sym_DOLLARconcat] = ACTIONS(1577), - [anon_sym_DOLLARdefined] = ACTIONS(1577), - [anon_sym_DOLLARembed] = ACTIONS(1577), - [anon_sym_DOLLARand] = ACTIONS(1577), - [anon_sym_DOLLARor] = ACTIONS(1577), - [anon_sym_DOLLARfeature] = ACTIONS(1577), - [anon_sym_DOLLARassignable] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_typeid] = ACTIONS(1577), - [anon_sym_LBRACE_PIPE] = ACTIONS(1579), - [anon_sym_void] = ACTIONS(1577), - [anon_sym_bool] = ACTIONS(1577), - [anon_sym_char] = ACTIONS(1577), - [anon_sym_ichar] = ACTIONS(1577), - [anon_sym_short] = ACTIONS(1577), - [anon_sym_ushort] = ACTIONS(1577), - [anon_sym_uint] = ACTIONS(1577), - [anon_sym_long] = ACTIONS(1577), - [anon_sym_ulong] = ACTIONS(1577), - [anon_sym_int128] = ACTIONS(1577), - [anon_sym_uint128] = ACTIONS(1577), - [anon_sym_float] = ACTIONS(1577), - [anon_sym_double] = ACTIONS(1577), - [anon_sym_float16] = ACTIONS(1577), - [anon_sym_bfloat16] = ACTIONS(1577), - [anon_sym_float128] = ACTIONS(1577), - [anon_sym_iptr] = ACTIONS(1577), - [anon_sym_uptr] = ACTIONS(1577), - [anon_sym_isz] = ACTIONS(1577), - [anon_sym_usz] = ACTIONS(1577), - [anon_sym_anyfault] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_DOLLARtypeof] = ACTIONS(1577), - [anon_sym_DOLLARtypefrom] = ACTIONS(1577), - [anon_sym_DOLLARevaltype] = ACTIONS(1577), - [anon_sym_DOLLARvatype] = ACTIONS(1577), - [sym_real_literal] = ACTIONS(1579), - }, - [498] = { - [sym_line_comment] = STATE(498), - [sym_doc_comment] = STATE(498), - [sym_block_comment] = STATE(498), - [sym_ident] = ACTIONS(1605), - [sym_integer_literal] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [anon_sym_BQUOTE] = ACTIONS(1607), - [sym_bytes_literal] = ACTIONS(1607), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1605), - [sym_at_ident] = ACTIONS(1607), - [sym_hash_ident] = ACTIONS(1607), - [sym_type_ident] = ACTIONS(1607), - [sym_ct_type_ident] = ACTIONS(1607), - [sym_const_ident] = ACTIONS(1605), - [sym_builtin] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_tlocal] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_fn] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_var] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_defer] = ACTIONS(1605), - [anon_sym_assert] = ACTIONS(1605), - [anon_sym_nextcase] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_foreach] = ACTIONS(1605), - [anon_sym_foreach_r] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_int] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_asm] = ACTIONS(1605), - [anon_sym_DOLLARassert] = ACTIONS(1605), - [anon_sym_DOLLARerror] = ACTIONS(1605), - [anon_sym_DOLLARecho] = ACTIONS(1605), - [anon_sym_DOLLARif] = ACTIONS(1605), - [anon_sym_DOLLARcase] = ACTIONS(1605), - [anon_sym_DOLLARdefault] = ACTIONS(1605), - [anon_sym_DOLLARswitch] = ACTIONS(1605), - [anon_sym_DOLLARendswitch] = ACTIONS(1605), - [anon_sym_DOLLARfor] = ACTIONS(1605), - [anon_sym_DOLLARforeach] = ACTIONS(1605), - [anon_sym_DOLLARalignof] = ACTIONS(1605), - [anon_sym_DOLLARextnameof] = ACTIONS(1605), - [anon_sym_DOLLARnameof] = ACTIONS(1605), - [anon_sym_DOLLARoffsetof] = ACTIONS(1605), - [anon_sym_DOLLARqnameof] = ACTIONS(1605), - [anon_sym_DOLLARvaconst] = ACTIONS(1605), - [anon_sym_DOLLARvaarg] = ACTIONS(1605), - [anon_sym_DOLLARvaref] = ACTIONS(1605), - [anon_sym_DOLLARvaexpr] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1605), - [anon_sym_false] = ACTIONS(1605), - [anon_sym_null] = ACTIONS(1605), - [anon_sym_DOLLARvacount] = ACTIONS(1605), - [anon_sym_DOLLAReval] = ACTIONS(1605), - [anon_sym_DOLLARis_const] = ACTIONS(1605), - [anon_sym_DOLLARsizeof] = ACTIONS(1605), - [anon_sym_DOLLARstringify] = ACTIONS(1605), - [anon_sym_DOLLARappend] = ACTIONS(1605), - [anon_sym_DOLLARconcat] = ACTIONS(1605), - [anon_sym_DOLLARdefined] = ACTIONS(1605), - [anon_sym_DOLLARembed] = ACTIONS(1605), - [anon_sym_DOLLARand] = ACTIONS(1605), - [anon_sym_DOLLARor] = ACTIONS(1605), - [anon_sym_DOLLARfeature] = ACTIONS(1605), - [anon_sym_DOLLARassignable] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_typeid] = ACTIONS(1605), - [anon_sym_LBRACE_PIPE] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_char] = ACTIONS(1605), - [anon_sym_ichar] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [anon_sym_ushort] = ACTIONS(1605), - [anon_sym_uint] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_ulong] = ACTIONS(1605), - [anon_sym_int128] = ACTIONS(1605), - [anon_sym_uint128] = ACTIONS(1605), - [anon_sym_float] = ACTIONS(1605), - [anon_sym_double] = ACTIONS(1605), - [anon_sym_float16] = ACTIONS(1605), - [anon_sym_bfloat16] = ACTIONS(1605), - [anon_sym_float128] = ACTIONS(1605), - [anon_sym_iptr] = ACTIONS(1605), - [anon_sym_uptr] = ACTIONS(1605), - [anon_sym_isz] = ACTIONS(1605), - [anon_sym_usz] = ACTIONS(1605), - [anon_sym_anyfault] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1605), - [anon_sym_DOLLARtypeof] = ACTIONS(1605), - [anon_sym_DOLLARtypefrom] = ACTIONS(1605), - [anon_sym_DOLLARevaltype] = ACTIONS(1605), - [anon_sym_DOLLARvatype] = ACTIONS(1605), - [sym_real_literal] = ACTIONS(1607), - }, - [499] = { - [sym_line_comment] = STATE(499), - [sym_doc_comment] = STATE(499), - [sym_block_comment] = STATE(499), - [sym_ident] = ACTIONS(1597), - [sym_integer_literal] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [sym_bytes_literal] = ACTIONS(1599), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1597), - [sym_at_ident] = ACTIONS(1599), - [sym_hash_ident] = ACTIONS(1599), - [sym_type_ident] = ACTIONS(1599), - [sym_ct_type_ident] = ACTIONS(1599), - [sym_const_ident] = ACTIONS(1597), - [sym_builtin] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_tlocal] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_fn] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_defer] = ACTIONS(1597), - [anon_sym_assert] = ACTIONS(1597), - [anon_sym_nextcase] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_foreach] = ACTIONS(1597), - [anon_sym_foreach_r] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_int] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_asm] = ACTIONS(1597), - [anon_sym_DOLLARassert] = ACTIONS(1597), - [anon_sym_DOLLARerror] = ACTIONS(1597), - [anon_sym_DOLLARecho] = ACTIONS(1597), - [anon_sym_DOLLARif] = ACTIONS(1597), - [anon_sym_DOLLARendif] = ACTIONS(1597), - [anon_sym_DOLLARelse] = ACTIONS(1597), - [anon_sym_DOLLARswitch] = ACTIONS(1597), - [anon_sym_DOLLARfor] = ACTIONS(1597), - [anon_sym_DOLLARforeach] = ACTIONS(1597), - [anon_sym_DOLLARalignof] = ACTIONS(1597), - [anon_sym_DOLLARextnameof] = ACTIONS(1597), - [anon_sym_DOLLARnameof] = ACTIONS(1597), - [anon_sym_DOLLARoffsetof] = ACTIONS(1597), - [anon_sym_DOLLARqnameof] = ACTIONS(1597), - [anon_sym_DOLLARvaconst] = ACTIONS(1597), - [anon_sym_DOLLARvaarg] = ACTIONS(1597), - [anon_sym_DOLLARvaref] = ACTIONS(1597), - [anon_sym_DOLLARvaexpr] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_DOLLARvacount] = ACTIONS(1597), - [anon_sym_DOLLAReval] = ACTIONS(1597), - [anon_sym_DOLLARis_const] = ACTIONS(1597), - [anon_sym_DOLLARsizeof] = ACTIONS(1597), - [anon_sym_DOLLARstringify] = ACTIONS(1597), - [anon_sym_DOLLARappend] = ACTIONS(1597), - [anon_sym_DOLLARconcat] = ACTIONS(1597), - [anon_sym_DOLLARdefined] = ACTIONS(1597), - [anon_sym_DOLLARembed] = ACTIONS(1597), - [anon_sym_DOLLARand] = ACTIONS(1597), - [anon_sym_DOLLARor] = ACTIONS(1597), - [anon_sym_DOLLARfeature] = ACTIONS(1597), - [anon_sym_DOLLARassignable] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_typeid] = ACTIONS(1597), - [anon_sym_LBRACE_PIPE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_char] = ACTIONS(1597), - [anon_sym_ichar] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [anon_sym_ushort] = ACTIONS(1597), - [anon_sym_uint] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_ulong] = ACTIONS(1597), - [anon_sym_int128] = ACTIONS(1597), - [anon_sym_uint128] = ACTIONS(1597), - [anon_sym_float] = ACTIONS(1597), - [anon_sym_double] = ACTIONS(1597), - [anon_sym_float16] = ACTIONS(1597), - [anon_sym_bfloat16] = ACTIONS(1597), - [anon_sym_float128] = ACTIONS(1597), - [anon_sym_iptr] = ACTIONS(1597), - [anon_sym_uptr] = ACTIONS(1597), - [anon_sym_isz] = ACTIONS(1597), - [anon_sym_usz] = ACTIONS(1597), - [anon_sym_anyfault] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_DOLLARtypeof] = ACTIONS(1597), - [anon_sym_DOLLARtypefrom] = ACTIONS(1597), - [anon_sym_DOLLARevaltype] = ACTIONS(1597), - [anon_sym_DOLLARvatype] = ACTIONS(1597), - [sym_real_literal] = ACTIONS(1599), - }, - [500] = { - [sym_line_comment] = STATE(500), - [sym_doc_comment] = STATE(500), - [sym_block_comment] = STATE(500), - [sym_ident] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [anon_sym_BQUOTE] = ACTIONS(1555), - [sym_bytes_literal] = ACTIONS(1555), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1553), - [sym_at_ident] = ACTIONS(1555), - [sym_hash_ident] = ACTIONS(1555), - [sym_type_ident] = ACTIONS(1555), - [sym_ct_type_ident] = ACTIONS(1555), - [sym_const_ident] = ACTIONS(1553), - [sym_builtin] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_tlocal] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_var] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_defer] = ACTIONS(1553), - [anon_sym_assert] = ACTIONS(1553), - [anon_sym_nextcase] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_foreach] = ACTIONS(1553), - [anon_sym_foreach_r] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_int] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_asm] = ACTIONS(1553), - [anon_sym_DOLLARassert] = ACTIONS(1553), - [anon_sym_DOLLARerror] = ACTIONS(1553), - [anon_sym_DOLLARecho] = ACTIONS(1553), - [anon_sym_DOLLARif] = ACTIONS(1553), - [anon_sym_DOLLARendif] = ACTIONS(1553), - [anon_sym_DOLLARelse] = ACTIONS(1553), - [anon_sym_DOLLARswitch] = ACTIONS(1553), - [anon_sym_DOLLARfor] = ACTIONS(1553), - [anon_sym_DOLLARforeach] = ACTIONS(1553), - [anon_sym_DOLLARalignof] = ACTIONS(1553), - [anon_sym_DOLLARextnameof] = ACTIONS(1553), - [anon_sym_DOLLARnameof] = ACTIONS(1553), - [anon_sym_DOLLARoffsetof] = ACTIONS(1553), - [anon_sym_DOLLARqnameof] = ACTIONS(1553), - [anon_sym_DOLLARvaconst] = ACTIONS(1553), - [anon_sym_DOLLARvaarg] = ACTIONS(1553), - [anon_sym_DOLLARvaref] = ACTIONS(1553), - [anon_sym_DOLLARvaexpr] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_null] = ACTIONS(1553), - [anon_sym_DOLLARvacount] = ACTIONS(1553), - [anon_sym_DOLLAReval] = ACTIONS(1553), - [anon_sym_DOLLARis_const] = ACTIONS(1553), - [anon_sym_DOLLARsizeof] = ACTIONS(1553), - [anon_sym_DOLLARstringify] = ACTIONS(1553), - [anon_sym_DOLLARappend] = ACTIONS(1553), - [anon_sym_DOLLARconcat] = ACTIONS(1553), - [anon_sym_DOLLARdefined] = ACTIONS(1553), - [anon_sym_DOLLARembed] = ACTIONS(1553), - [anon_sym_DOLLARand] = ACTIONS(1553), - [anon_sym_DOLLARor] = ACTIONS(1553), - [anon_sym_DOLLARfeature] = ACTIONS(1553), - [anon_sym_DOLLARassignable] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_typeid] = ACTIONS(1553), - [anon_sym_LBRACE_PIPE] = ACTIONS(1555), - [anon_sym_void] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [anon_sym_ichar] = ACTIONS(1553), - [anon_sym_short] = ACTIONS(1553), - [anon_sym_ushort] = ACTIONS(1553), - [anon_sym_uint] = ACTIONS(1553), - [anon_sym_long] = ACTIONS(1553), - [anon_sym_ulong] = ACTIONS(1553), - [anon_sym_int128] = ACTIONS(1553), - [anon_sym_uint128] = ACTIONS(1553), - [anon_sym_float] = ACTIONS(1553), - [anon_sym_double] = ACTIONS(1553), - [anon_sym_float16] = ACTIONS(1553), - [anon_sym_bfloat16] = ACTIONS(1553), - [anon_sym_float128] = ACTIONS(1553), - [anon_sym_iptr] = ACTIONS(1553), - [anon_sym_uptr] = ACTIONS(1553), - [anon_sym_isz] = ACTIONS(1553), - [anon_sym_usz] = ACTIONS(1553), - [anon_sym_anyfault] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_DOLLARtypeof] = ACTIONS(1553), - [anon_sym_DOLLARtypefrom] = ACTIONS(1553), - [anon_sym_DOLLARevaltype] = ACTIONS(1553), - [anon_sym_DOLLARvatype] = ACTIONS(1553), - [sym_real_literal] = ACTIONS(1555), - }, - [501] = { - [sym_line_comment] = STATE(501), - [sym_doc_comment] = STATE(501), - [sym_block_comment] = STATE(501), - [sym_ident] = ACTIONS(1373), - [sym_integer_literal] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [anon_sym_BQUOTE] = ACTIONS(1375), - [sym_bytes_literal] = ACTIONS(1375), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1373), - [sym_at_ident] = ACTIONS(1375), - [sym_hash_ident] = ACTIONS(1375), - [sym_type_ident] = ACTIONS(1375), - [sym_ct_type_ident] = ACTIONS(1375), - [sym_const_ident] = ACTIONS(1373), - [sym_builtin] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_tlocal] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_fn] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_var] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_defer] = ACTIONS(1373), - [anon_sym_assert] = ACTIONS(1373), - [anon_sym_nextcase] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_AMP_AMP] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_foreach] = ACTIONS(1373), - [anon_sym_foreach_r] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_int] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_asm] = ACTIONS(1373), - [anon_sym_DOLLARassert] = ACTIONS(1373), - [anon_sym_DOLLARerror] = ACTIONS(1373), - [anon_sym_DOLLARecho] = ACTIONS(1373), - [anon_sym_DOLLARif] = ACTIONS(1373), - [anon_sym_DOLLARendif] = ACTIONS(1373), - [anon_sym_DOLLARswitch] = ACTIONS(1373), - [anon_sym_DOLLARfor] = ACTIONS(1373), - [anon_sym_DOLLARforeach] = ACTIONS(1373), - [anon_sym_DOLLARalignof] = ACTIONS(1373), - [anon_sym_DOLLARextnameof] = ACTIONS(1373), - [anon_sym_DOLLARnameof] = ACTIONS(1373), - [anon_sym_DOLLARoffsetof] = ACTIONS(1373), - [anon_sym_DOLLARqnameof] = ACTIONS(1373), - [anon_sym_DOLLARvaconst] = ACTIONS(1373), - [anon_sym_DOLLARvaarg] = ACTIONS(1373), - [anon_sym_DOLLARvaref] = ACTIONS(1373), - [anon_sym_DOLLARvaexpr] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), - [anon_sym_null] = ACTIONS(1373), - [anon_sym_DOLLARvacount] = ACTIONS(1373), - [anon_sym_DOLLAReval] = ACTIONS(1373), - [anon_sym_DOLLARis_const] = ACTIONS(1373), - [anon_sym_DOLLARsizeof] = ACTIONS(1373), - [anon_sym_DOLLARstringify] = ACTIONS(1373), - [anon_sym_DOLLARappend] = ACTIONS(1373), - [anon_sym_DOLLARconcat] = ACTIONS(1373), - [anon_sym_DOLLARdefined] = ACTIONS(1373), - [anon_sym_DOLLARembed] = ACTIONS(1373), - [anon_sym_DOLLARand] = ACTIONS(1373), - [anon_sym_DOLLARor] = ACTIONS(1373), - [anon_sym_DOLLARfeature] = ACTIONS(1373), - [anon_sym_DOLLARassignable] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_typeid] = ACTIONS(1373), - [anon_sym_LBRACE_PIPE] = ACTIONS(1375), - [anon_sym_void] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_ichar] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_ushort] = ACTIONS(1373), - [anon_sym_uint] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_ulong] = ACTIONS(1373), - [anon_sym_int128] = ACTIONS(1373), - [anon_sym_uint128] = ACTIONS(1373), - [anon_sym_float] = ACTIONS(1373), - [anon_sym_double] = ACTIONS(1373), - [anon_sym_float16] = ACTIONS(1373), - [anon_sym_bfloat16] = ACTIONS(1373), - [anon_sym_float128] = ACTIONS(1373), - [anon_sym_iptr] = ACTIONS(1373), - [anon_sym_uptr] = ACTIONS(1373), - [anon_sym_isz] = ACTIONS(1373), - [anon_sym_usz] = ACTIONS(1373), - [anon_sym_anyfault] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_DOLLARtypeof] = ACTIONS(1373), - [anon_sym_DOLLARtypefrom] = ACTIONS(1373), - [anon_sym_DOLLARevaltype] = ACTIONS(1373), - [anon_sym_DOLLARvatype] = ACTIONS(1373), - [sym_real_literal] = ACTIONS(1375), - }, - [502] = { - [sym_line_comment] = STATE(502), - [sym_doc_comment] = STATE(502), - [sym_block_comment] = STATE(502), - [sym_ident] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_bytes_literal] = ACTIONS(1655), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1653), - [sym_at_ident] = ACTIONS(1655), - [sym_hash_ident] = ACTIONS(1655), - [sym_type_ident] = ACTIONS(1655), - [sym_ct_type_ident] = ACTIONS(1655), - [sym_const_ident] = ACTIONS(1653), - [sym_builtin] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_tlocal] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_var] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_assert] = ACTIONS(1653), - [anon_sym_nextcase] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_foreach] = ACTIONS(1653), - [anon_sym_foreach_r] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_asm] = ACTIONS(1653), - [anon_sym_DOLLARassert] = ACTIONS(1653), - [anon_sym_DOLLARerror] = ACTIONS(1653), - [anon_sym_DOLLARecho] = ACTIONS(1653), - [anon_sym_DOLLARif] = ACTIONS(1653), - [anon_sym_DOLLARendif] = ACTIONS(1653), - [anon_sym_DOLLARelse] = ACTIONS(1653), - [anon_sym_DOLLARswitch] = ACTIONS(1653), - [anon_sym_DOLLARfor] = ACTIONS(1653), - [anon_sym_DOLLARforeach] = ACTIONS(1653), - [anon_sym_DOLLARalignof] = ACTIONS(1653), - [anon_sym_DOLLARextnameof] = ACTIONS(1653), - [anon_sym_DOLLARnameof] = ACTIONS(1653), - [anon_sym_DOLLARoffsetof] = ACTIONS(1653), - [anon_sym_DOLLARqnameof] = ACTIONS(1653), - [anon_sym_DOLLARvaconst] = ACTIONS(1653), - [anon_sym_DOLLARvaarg] = ACTIONS(1653), - [anon_sym_DOLLARvaref] = ACTIONS(1653), - [anon_sym_DOLLARvaexpr] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_DOLLARvacount] = ACTIONS(1653), - [anon_sym_DOLLAReval] = ACTIONS(1653), - [anon_sym_DOLLARis_const] = ACTIONS(1653), - [anon_sym_DOLLARsizeof] = ACTIONS(1653), - [anon_sym_DOLLARstringify] = ACTIONS(1653), - [anon_sym_DOLLARappend] = ACTIONS(1653), - [anon_sym_DOLLARconcat] = ACTIONS(1653), - [anon_sym_DOLLARdefined] = ACTIONS(1653), - [anon_sym_DOLLARembed] = ACTIONS(1653), - [anon_sym_DOLLARand] = ACTIONS(1653), - [anon_sym_DOLLARor] = ACTIONS(1653), - [anon_sym_DOLLARfeature] = ACTIONS(1653), - [anon_sym_DOLLARassignable] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_typeid] = ACTIONS(1653), - [anon_sym_LBRACE_PIPE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_ichar] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [anon_sym_ushort] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_ulong] = ACTIONS(1653), - [anon_sym_int128] = ACTIONS(1653), - [anon_sym_uint128] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_double] = ACTIONS(1653), - [anon_sym_float16] = ACTIONS(1653), - [anon_sym_bfloat16] = ACTIONS(1653), - [anon_sym_float128] = ACTIONS(1653), - [anon_sym_iptr] = ACTIONS(1653), - [anon_sym_uptr] = ACTIONS(1653), - [anon_sym_isz] = ACTIONS(1653), - [anon_sym_usz] = ACTIONS(1653), - [anon_sym_anyfault] = ACTIONS(1653), - [anon_sym_any] = ACTIONS(1653), - [anon_sym_DOLLARtypeof] = ACTIONS(1653), - [anon_sym_DOLLARtypefrom] = ACTIONS(1653), - [anon_sym_DOLLARevaltype] = ACTIONS(1653), - [anon_sym_DOLLARvatype] = ACTIONS(1653), - [sym_real_literal] = ACTIONS(1655), - }, - [503] = { - [sym_line_comment] = STATE(503), - [sym_doc_comment] = STATE(503), - [sym_block_comment] = STATE(503), - [sym_ident] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [sym_bytes_literal] = ACTIONS(1385), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1383), - [sym_at_ident] = ACTIONS(1385), - [sym_hash_ident] = ACTIONS(1385), - [sym_type_ident] = ACTIONS(1385), - [sym_ct_type_ident] = ACTIONS(1385), - [sym_const_ident] = ACTIONS(1383), - [sym_builtin] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_tlocal] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_var] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_defer] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_nextcase] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_AMP_AMP] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_foreach] = ACTIONS(1383), - [anon_sym_foreach_r] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_int] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym_DOLLARassert] = ACTIONS(1383), - [anon_sym_DOLLARerror] = ACTIONS(1383), - [anon_sym_DOLLARecho] = ACTIONS(1383), - [anon_sym_DOLLARif] = ACTIONS(1383), - [anon_sym_DOLLARendif] = ACTIONS(1383), - [anon_sym_DOLLARelse] = ACTIONS(1383), - [anon_sym_DOLLARswitch] = ACTIONS(1383), - [anon_sym_DOLLARfor] = ACTIONS(1383), - [anon_sym_DOLLARforeach] = ACTIONS(1383), - [anon_sym_DOLLARalignof] = ACTIONS(1383), - [anon_sym_DOLLARextnameof] = ACTIONS(1383), - [anon_sym_DOLLARnameof] = ACTIONS(1383), - [anon_sym_DOLLARoffsetof] = ACTIONS(1383), - [anon_sym_DOLLARqnameof] = ACTIONS(1383), - [anon_sym_DOLLARvaconst] = ACTIONS(1383), - [anon_sym_DOLLARvaarg] = ACTIONS(1383), - [anon_sym_DOLLARvaref] = ACTIONS(1383), - [anon_sym_DOLLARvaexpr] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1383), - [anon_sym_DOLLARvacount] = ACTIONS(1383), - [anon_sym_DOLLAReval] = ACTIONS(1383), - [anon_sym_DOLLARis_const] = ACTIONS(1383), - [anon_sym_DOLLARsizeof] = ACTIONS(1383), - [anon_sym_DOLLARstringify] = ACTIONS(1383), - [anon_sym_DOLLARappend] = ACTIONS(1383), - [anon_sym_DOLLARconcat] = ACTIONS(1383), - [anon_sym_DOLLARdefined] = ACTIONS(1383), - [anon_sym_DOLLARembed] = ACTIONS(1383), - [anon_sym_DOLLARand] = ACTIONS(1383), - [anon_sym_DOLLARor] = ACTIONS(1383), - [anon_sym_DOLLARfeature] = ACTIONS(1383), - [anon_sym_DOLLARassignable] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_typeid] = ACTIONS(1383), - [anon_sym_LBRACE_PIPE] = ACTIONS(1385), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_bool] = ACTIONS(1383), - [anon_sym_char] = ACTIONS(1383), - [anon_sym_ichar] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_ushort] = ACTIONS(1383), - [anon_sym_uint] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_ulong] = ACTIONS(1383), - [anon_sym_int128] = ACTIONS(1383), - [anon_sym_uint128] = ACTIONS(1383), - [anon_sym_float] = ACTIONS(1383), - [anon_sym_double] = ACTIONS(1383), - [anon_sym_float16] = ACTIONS(1383), - [anon_sym_bfloat16] = ACTIONS(1383), - [anon_sym_float128] = ACTIONS(1383), - [anon_sym_iptr] = ACTIONS(1383), - [anon_sym_uptr] = ACTIONS(1383), - [anon_sym_isz] = ACTIONS(1383), - [anon_sym_usz] = ACTIONS(1383), - [anon_sym_anyfault] = ACTIONS(1383), - [anon_sym_any] = ACTIONS(1383), - [anon_sym_DOLLARtypeof] = ACTIONS(1383), - [anon_sym_DOLLARtypefrom] = ACTIONS(1383), - [anon_sym_DOLLARevaltype] = ACTIONS(1383), - [anon_sym_DOLLARvatype] = ACTIONS(1383), - [sym_real_literal] = ACTIONS(1385), - }, - [504] = { - [sym_line_comment] = STATE(504), - [sym_doc_comment] = STATE(504), - [sym_block_comment] = STATE(504), - [sym_ident] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [anon_sym_BQUOTE] = ACTIONS(1413), - [sym_bytes_literal] = ACTIONS(1413), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1411), - [sym_at_ident] = ACTIONS(1413), - [sym_hash_ident] = ACTIONS(1413), - [sym_type_ident] = ACTIONS(1413), - [sym_ct_type_ident] = ACTIONS(1413), - [sym_const_ident] = ACTIONS(1411), - [sym_builtin] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_tlocal] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_var] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_defer] = ACTIONS(1411), - [anon_sym_assert] = ACTIONS(1411), - [anon_sym_nextcase] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_foreach] = ACTIONS(1411), - [anon_sym_foreach_r] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_int] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym_DOLLARassert] = ACTIONS(1411), - [anon_sym_DOLLARerror] = ACTIONS(1411), - [anon_sym_DOLLARecho] = ACTIONS(1411), - [anon_sym_DOLLARif] = ACTIONS(1411), - [anon_sym_DOLLARendif] = ACTIONS(1411), - [anon_sym_DOLLARelse] = ACTIONS(1411), - [anon_sym_DOLLARswitch] = ACTIONS(1411), - [anon_sym_DOLLARfor] = ACTIONS(1411), - [anon_sym_DOLLARforeach] = ACTIONS(1411), - [anon_sym_DOLLARalignof] = ACTIONS(1411), - [anon_sym_DOLLARextnameof] = ACTIONS(1411), - [anon_sym_DOLLARnameof] = ACTIONS(1411), - [anon_sym_DOLLARoffsetof] = ACTIONS(1411), - [anon_sym_DOLLARqnameof] = ACTIONS(1411), - [anon_sym_DOLLARvaconst] = ACTIONS(1411), - [anon_sym_DOLLARvaarg] = ACTIONS(1411), - [anon_sym_DOLLARvaref] = ACTIONS(1411), - [anon_sym_DOLLARvaexpr] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_DOLLARvacount] = ACTIONS(1411), - [anon_sym_DOLLAReval] = ACTIONS(1411), - [anon_sym_DOLLARis_const] = ACTIONS(1411), - [anon_sym_DOLLARsizeof] = ACTIONS(1411), - [anon_sym_DOLLARstringify] = ACTIONS(1411), - [anon_sym_DOLLARappend] = ACTIONS(1411), - [anon_sym_DOLLARconcat] = ACTIONS(1411), - [anon_sym_DOLLARdefined] = ACTIONS(1411), - [anon_sym_DOLLARembed] = ACTIONS(1411), - [anon_sym_DOLLARand] = ACTIONS(1411), - [anon_sym_DOLLARor] = ACTIONS(1411), - [anon_sym_DOLLARfeature] = ACTIONS(1411), - [anon_sym_DOLLARassignable] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_typeid] = ACTIONS(1411), - [anon_sym_LBRACE_PIPE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_bool] = ACTIONS(1411), - [anon_sym_char] = ACTIONS(1411), - [anon_sym_ichar] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_ushort] = ACTIONS(1411), - [anon_sym_uint] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_ulong] = ACTIONS(1411), - [anon_sym_int128] = ACTIONS(1411), - [anon_sym_uint128] = ACTIONS(1411), - [anon_sym_float] = ACTIONS(1411), - [anon_sym_double] = ACTIONS(1411), - [anon_sym_float16] = ACTIONS(1411), - [anon_sym_bfloat16] = ACTIONS(1411), - [anon_sym_float128] = ACTIONS(1411), - [anon_sym_iptr] = ACTIONS(1411), - [anon_sym_uptr] = ACTIONS(1411), - [anon_sym_isz] = ACTIONS(1411), - [anon_sym_usz] = ACTIONS(1411), - [anon_sym_anyfault] = ACTIONS(1411), - [anon_sym_any] = ACTIONS(1411), - [anon_sym_DOLLARtypeof] = ACTIONS(1411), - [anon_sym_DOLLARtypefrom] = ACTIONS(1411), - [anon_sym_DOLLARevaltype] = ACTIONS(1411), - [anon_sym_DOLLARvatype] = ACTIONS(1411), - [sym_real_literal] = ACTIONS(1413), - }, - [505] = { - [sym_line_comment] = STATE(505), - [sym_doc_comment] = STATE(505), - [sym_block_comment] = STATE(505), - [sym_ident] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_bytes_literal] = ACTIONS(1461), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1459), - [sym_at_ident] = ACTIONS(1461), - [sym_hash_ident] = ACTIONS(1461), - [sym_type_ident] = ACTIONS(1461), - [sym_ct_type_ident] = ACTIONS(1461), - [sym_const_ident] = ACTIONS(1459), - [sym_builtin] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_tlocal] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_var] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_defer] = ACTIONS(1459), - [anon_sym_assert] = ACTIONS(1459), - [anon_sym_nextcase] = ACTIONS(1459), - [anon_sym_switch] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_foreach] = ACTIONS(1459), - [anon_sym_foreach_r] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_int] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1459), - [anon_sym_DOLLARassert] = ACTIONS(1459), - [anon_sym_DOLLARerror] = ACTIONS(1459), - [anon_sym_DOLLARecho] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1459), - [anon_sym_DOLLARendif] = ACTIONS(1459), - [anon_sym_DOLLARelse] = ACTIONS(1459), - [anon_sym_DOLLARswitch] = ACTIONS(1459), - [anon_sym_DOLLARfor] = ACTIONS(1459), - [anon_sym_DOLLARforeach] = ACTIONS(1459), - [anon_sym_DOLLARalignof] = ACTIONS(1459), - [anon_sym_DOLLARextnameof] = ACTIONS(1459), - [anon_sym_DOLLARnameof] = ACTIONS(1459), - [anon_sym_DOLLARoffsetof] = ACTIONS(1459), - [anon_sym_DOLLARqnameof] = ACTIONS(1459), - [anon_sym_DOLLARvaconst] = ACTIONS(1459), - [anon_sym_DOLLARvaarg] = ACTIONS(1459), - [anon_sym_DOLLARvaref] = ACTIONS(1459), - [anon_sym_DOLLARvaexpr] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1459), - [anon_sym_DOLLARvacount] = ACTIONS(1459), - [anon_sym_DOLLAReval] = ACTIONS(1459), - [anon_sym_DOLLARis_const] = ACTIONS(1459), - [anon_sym_DOLLARsizeof] = ACTIONS(1459), - [anon_sym_DOLLARstringify] = ACTIONS(1459), - [anon_sym_DOLLARappend] = ACTIONS(1459), - [anon_sym_DOLLARconcat] = ACTIONS(1459), - [anon_sym_DOLLARdefined] = ACTIONS(1459), - [anon_sym_DOLLARembed] = ACTIONS(1459), - [anon_sym_DOLLARand] = ACTIONS(1459), - [anon_sym_DOLLARor] = ACTIONS(1459), - [anon_sym_DOLLARfeature] = ACTIONS(1459), - [anon_sym_DOLLARassignable] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_typeid] = ACTIONS(1459), - [anon_sym_LBRACE_PIPE] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_ichar] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [anon_sym_ushort] = ACTIONS(1459), - [anon_sym_uint] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_ulong] = ACTIONS(1459), - [anon_sym_int128] = ACTIONS(1459), - [anon_sym_uint128] = ACTIONS(1459), - [anon_sym_float] = ACTIONS(1459), - [anon_sym_double] = ACTIONS(1459), - [anon_sym_float16] = ACTIONS(1459), - [anon_sym_bfloat16] = ACTIONS(1459), - [anon_sym_float128] = ACTIONS(1459), - [anon_sym_iptr] = ACTIONS(1459), - [anon_sym_uptr] = ACTIONS(1459), - [anon_sym_isz] = ACTIONS(1459), - [anon_sym_usz] = ACTIONS(1459), - [anon_sym_anyfault] = ACTIONS(1459), - [anon_sym_any] = ACTIONS(1459), - [anon_sym_DOLLARtypeof] = ACTIONS(1459), - [anon_sym_DOLLARtypefrom] = ACTIONS(1459), - [anon_sym_DOLLARevaltype] = ACTIONS(1459), - [anon_sym_DOLLARvatype] = ACTIONS(1459), - [sym_real_literal] = ACTIONS(1461), - }, - [506] = { - [sym_line_comment] = STATE(506), - [sym_doc_comment] = STATE(506), - [sym_block_comment] = STATE(506), - [sym_ident] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [sym_bytes_literal] = ACTIONS(1417), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1415), - [sym_at_ident] = ACTIONS(1417), - [sym_hash_ident] = ACTIONS(1417), - [sym_type_ident] = ACTIONS(1417), - [sym_ct_type_ident] = ACTIONS(1417), - [sym_const_ident] = ACTIONS(1415), - [sym_builtin] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_tlocal] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_var] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_defer] = ACTIONS(1415), - [anon_sym_assert] = ACTIONS(1415), - [anon_sym_nextcase] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_foreach] = ACTIONS(1415), - [anon_sym_foreach_r] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_int] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym_DOLLARassert] = ACTIONS(1415), - [anon_sym_DOLLARerror] = ACTIONS(1415), - [anon_sym_DOLLARecho] = ACTIONS(1415), - [anon_sym_DOLLARif] = ACTIONS(1415), - [anon_sym_DOLLARendif] = ACTIONS(1415), - [anon_sym_DOLLARelse] = ACTIONS(1415), - [anon_sym_DOLLARswitch] = ACTIONS(1415), - [anon_sym_DOLLARfor] = ACTIONS(1415), - [anon_sym_DOLLARforeach] = ACTIONS(1415), - [anon_sym_DOLLARalignof] = ACTIONS(1415), - [anon_sym_DOLLARextnameof] = ACTIONS(1415), - [anon_sym_DOLLARnameof] = ACTIONS(1415), - [anon_sym_DOLLARoffsetof] = ACTIONS(1415), - [anon_sym_DOLLARqnameof] = ACTIONS(1415), - [anon_sym_DOLLARvaconst] = ACTIONS(1415), - [anon_sym_DOLLARvaarg] = ACTIONS(1415), - [anon_sym_DOLLARvaref] = ACTIONS(1415), - [anon_sym_DOLLARvaexpr] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_null] = ACTIONS(1415), - [anon_sym_DOLLARvacount] = ACTIONS(1415), - [anon_sym_DOLLAReval] = ACTIONS(1415), - [anon_sym_DOLLARis_const] = ACTIONS(1415), - [anon_sym_DOLLARsizeof] = ACTIONS(1415), - [anon_sym_DOLLARstringify] = ACTIONS(1415), - [anon_sym_DOLLARappend] = ACTIONS(1415), - [anon_sym_DOLLARconcat] = ACTIONS(1415), - [anon_sym_DOLLARdefined] = ACTIONS(1415), - [anon_sym_DOLLARembed] = ACTIONS(1415), - [anon_sym_DOLLARand] = ACTIONS(1415), - [anon_sym_DOLLARor] = ACTIONS(1415), - [anon_sym_DOLLARfeature] = ACTIONS(1415), - [anon_sym_DOLLARassignable] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_typeid] = ACTIONS(1415), - [anon_sym_LBRACE_PIPE] = ACTIONS(1417), - [anon_sym_void] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_ichar] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_ushort] = ACTIONS(1415), - [anon_sym_uint] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_ulong] = ACTIONS(1415), - [anon_sym_int128] = ACTIONS(1415), - [anon_sym_uint128] = ACTIONS(1415), - [anon_sym_float] = ACTIONS(1415), - [anon_sym_double] = ACTIONS(1415), - [anon_sym_float16] = ACTIONS(1415), - [anon_sym_bfloat16] = ACTIONS(1415), - [anon_sym_float128] = ACTIONS(1415), - [anon_sym_iptr] = ACTIONS(1415), - [anon_sym_uptr] = ACTIONS(1415), - [anon_sym_isz] = ACTIONS(1415), - [anon_sym_usz] = ACTIONS(1415), - [anon_sym_anyfault] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_DOLLARtypeof] = ACTIONS(1415), - [anon_sym_DOLLARtypefrom] = ACTIONS(1415), - [anon_sym_DOLLARevaltype] = ACTIONS(1415), - [anon_sym_DOLLARvatype] = ACTIONS(1415), - [sym_real_literal] = ACTIONS(1417), - }, - [507] = { - [sym_line_comment] = STATE(507), - [sym_doc_comment] = STATE(507), - [sym_block_comment] = STATE(507), - [sym_ident] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [sym_bytes_literal] = ACTIONS(1421), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1419), - [sym_at_ident] = ACTIONS(1421), - [sym_hash_ident] = ACTIONS(1421), - [sym_type_ident] = ACTIONS(1421), - [sym_ct_type_ident] = ACTIONS(1421), - [sym_const_ident] = ACTIONS(1419), - [sym_builtin] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_tlocal] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_var] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_defer] = ACTIONS(1419), - [anon_sym_assert] = ACTIONS(1419), - [anon_sym_nextcase] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_foreach] = ACTIONS(1419), - [anon_sym_foreach_r] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_int] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym_DOLLARassert] = ACTIONS(1419), - [anon_sym_DOLLARerror] = ACTIONS(1419), - [anon_sym_DOLLARecho] = ACTIONS(1419), - [anon_sym_DOLLARif] = ACTIONS(1419), - [anon_sym_DOLLARendif] = ACTIONS(1419), - [anon_sym_DOLLARelse] = ACTIONS(1419), - [anon_sym_DOLLARswitch] = ACTIONS(1419), - [anon_sym_DOLLARfor] = ACTIONS(1419), - [anon_sym_DOLLARforeach] = ACTIONS(1419), - [anon_sym_DOLLARalignof] = ACTIONS(1419), - [anon_sym_DOLLARextnameof] = ACTIONS(1419), - [anon_sym_DOLLARnameof] = ACTIONS(1419), - [anon_sym_DOLLARoffsetof] = ACTIONS(1419), - [anon_sym_DOLLARqnameof] = ACTIONS(1419), - [anon_sym_DOLLARvaconst] = ACTIONS(1419), - [anon_sym_DOLLARvaarg] = ACTIONS(1419), - [anon_sym_DOLLARvaref] = ACTIONS(1419), - [anon_sym_DOLLARvaexpr] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1419), - [anon_sym_DOLLARvacount] = ACTIONS(1419), - [anon_sym_DOLLAReval] = ACTIONS(1419), - [anon_sym_DOLLARis_const] = ACTIONS(1419), - [anon_sym_DOLLARsizeof] = ACTIONS(1419), - [anon_sym_DOLLARstringify] = ACTIONS(1419), - [anon_sym_DOLLARappend] = ACTIONS(1419), - [anon_sym_DOLLARconcat] = ACTIONS(1419), - [anon_sym_DOLLARdefined] = ACTIONS(1419), - [anon_sym_DOLLARembed] = ACTIONS(1419), - [anon_sym_DOLLARand] = ACTIONS(1419), - [anon_sym_DOLLARor] = ACTIONS(1419), - [anon_sym_DOLLARfeature] = ACTIONS(1419), - [anon_sym_DOLLARassignable] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_typeid] = ACTIONS(1419), - [anon_sym_LBRACE_PIPE] = ACTIONS(1421), - [anon_sym_void] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_ichar] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_ushort] = ACTIONS(1419), - [anon_sym_uint] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_ulong] = ACTIONS(1419), - [anon_sym_int128] = ACTIONS(1419), - [anon_sym_uint128] = ACTIONS(1419), - [anon_sym_float] = ACTIONS(1419), - [anon_sym_double] = ACTIONS(1419), - [anon_sym_float16] = ACTIONS(1419), - [anon_sym_bfloat16] = ACTIONS(1419), - [anon_sym_float128] = ACTIONS(1419), - [anon_sym_iptr] = ACTIONS(1419), - [anon_sym_uptr] = ACTIONS(1419), - [anon_sym_isz] = ACTIONS(1419), - [anon_sym_usz] = ACTIONS(1419), - [anon_sym_anyfault] = ACTIONS(1419), - [anon_sym_any] = ACTIONS(1419), - [anon_sym_DOLLARtypeof] = ACTIONS(1419), - [anon_sym_DOLLARtypefrom] = ACTIONS(1419), - [anon_sym_DOLLARevaltype] = ACTIONS(1419), - [anon_sym_DOLLARvatype] = ACTIONS(1419), - [sym_real_literal] = ACTIONS(1421), - }, - [508] = { - [sym_line_comment] = STATE(508), - [sym_doc_comment] = STATE(508), - [sym_block_comment] = STATE(508), - [sym_ident] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1433), - [sym_bytes_literal] = ACTIONS(1433), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1431), - [sym_at_ident] = ACTIONS(1433), - [sym_hash_ident] = ACTIONS(1433), - [sym_type_ident] = ACTIONS(1433), - [sym_ct_type_ident] = ACTIONS(1433), - [sym_const_ident] = ACTIONS(1431), - [sym_builtin] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_tlocal] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_var] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_defer] = ACTIONS(1431), - [anon_sym_assert] = ACTIONS(1431), - [anon_sym_nextcase] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_foreach] = ACTIONS(1431), - [anon_sym_foreach_r] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_int] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1431), - [anon_sym_DOLLARassert] = ACTIONS(1431), - [anon_sym_DOLLARerror] = ACTIONS(1431), - [anon_sym_DOLLARecho] = ACTIONS(1431), - [anon_sym_DOLLARif] = ACTIONS(1431), - [anon_sym_DOLLARendif] = ACTIONS(1431), - [anon_sym_DOLLARelse] = ACTIONS(1431), - [anon_sym_DOLLARswitch] = ACTIONS(1431), - [anon_sym_DOLLARfor] = ACTIONS(1431), - [anon_sym_DOLLARforeach] = ACTIONS(1431), - [anon_sym_DOLLARalignof] = ACTIONS(1431), - [anon_sym_DOLLARextnameof] = ACTIONS(1431), - [anon_sym_DOLLARnameof] = ACTIONS(1431), - [anon_sym_DOLLARoffsetof] = ACTIONS(1431), - [anon_sym_DOLLARqnameof] = ACTIONS(1431), - [anon_sym_DOLLARvaconst] = ACTIONS(1431), - [anon_sym_DOLLARvaarg] = ACTIONS(1431), - [anon_sym_DOLLARvaref] = ACTIONS(1431), - [anon_sym_DOLLARvaexpr] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_null] = ACTIONS(1431), - [anon_sym_DOLLARvacount] = ACTIONS(1431), - [anon_sym_DOLLAReval] = ACTIONS(1431), - [anon_sym_DOLLARis_const] = ACTIONS(1431), - [anon_sym_DOLLARsizeof] = ACTIONS(1431), - [anon_sym_DOLLARstringify] = ACTIONS(1431), - [anon_sym_DOLLARappend] = ACTIONS(1431), - [anon_sym_DOLLARconcat] = ACTIONS(1431), - [anon_sym_DOLLARdefined] = ACTIONS(1431), - [anon_sym_DOLLARembed] = ACTIONS(1431), - [anon_sym_DOLLARand] = ACTIONS(1431), - [anon_sym_DOLLARor] = ACTIONS(1431), - [anon_sym_DOLLARfeature] = ACTIONS(1431), - [anon_sym_DOLLARassignable] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_typeid] = ACTIONS(1431), - [anon_sym_LBRACE_PIPE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_ichar] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_ushort] = ACTIONS(1431), - [anon_sym_uint] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_ulong] = ACTIONS(1431), - [anon_sym_int128] = ACTIONS(1431), - [anon_sym_uint128] = ACTIONS(1431), - [anon_sym_float] = ACTIONS(1431), - [anon_sym_double] = ACTIONS(1431), - [anon_sym_float16] = ACTIONS(1431), - [anon_sym_bfloat16] = ACTIONS(1431), - [anon_sym_float128] = ACTIONS(1431), - [anon_sym_iptr] = ACTIONS(1431), - [anon_sym_uptr] = ACTIONS(1431), - [anon_sym_isz] = ACTIONS(1431), - [anon_sym_usz] = ACTIONS(1431), - [anon_sym_anyfault] = ACTIONS(1431), - [anon_sym_any] = ACTIONS(1431), - [anon_sym_DOLLARtypeof] = ACTIONS(1431), - [anon_sym_DOLLARtypefrom] = ACTIONS(1431), - [anon_sym_DOLLARevaltype] = ACTIONS(1431), - [anon_sym_DOLLARvatype] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - }, - [509] = { - [sym_line_comment] = STATE(509), - [sym_doc_comment] = STATE(509), - [sym_block_comment] = STATE(509), - [sym_ident] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_BQUOTE] = ACTIONS(1437), - [sym_bytes_literal] = ACTIONS(1437), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1435), - [sym_at_ident] = ACTIONS(1437), - [sym_hash_ident] = ACTIONS(1437), - [sym_type_ident] = ACTIONS(1437), - [sym_ct_type_ident] = ACTIONS(1437), - [sym_const_ident] = ACTIONS(1435), - [sym_builtin] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_tlocal] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_defer] = ACTIONS(1435), - [anon_sym_assert] = ACTIONS(1435), - [anon_sym_nextcase] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_foreach] = ACTIONS(1435), - [anon_sym_foreach_r] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_int] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1435), - [anon_sym_DOLLARassert] = ACTIONS(1435), - [anon_sym_DOLLARerror] = ACTIONS(1435), - [anon_sym_DOLLARecho] = ACTIONS(1435), - [anon_sym_DOLLARif] = ACTIONS(1435), - [anon_sym_DOLLARendif] = ACTIONS(1435), - [anon_sym_DOLLARelse] = ACTIONS(1435), - [anon_sym_DOLLARswitch] = ACTIONS(1435), - [anon_sym_DOLLARfor] = ACTIONS(1435), - [anon_sym_DOLLARforeach] = ACTIONS(1435), - [anon_sym_DOLLARalignof] = ACTIONS(1435), - [anon_sym_DOLLARextnameof] = ACTIONS(1435), - [anon_sym_DOLLARnameof] = ACTIONS(1435), - [anon_sym_DOLLARoffsetof] = ACTIONS(1435), - [anon_sym_DOLLARqnameof] = ACTIONS(1435), - [anon_sym_DOLLARvaconst] = ACTIONS(1435), - [anon_sym_DOLLARvaarg] = ACTIONS(1435), - [anon_sym_DOLLARvaref] = ACTIONS(1435), - [anon_sym_DOLLARvaexpr] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), - [anon_sym_null] = ACTIONS(1435), - [anon_sym_DOLLARvacount] = ACTIONS(1435), - [anon_sym_DOLLAReval] = ACTIONS(1435), - [anon_sym_DOLLARis_const] = ACTIONS(1435), - [anon_sym_DOLLARsizeof] = ACTIONS(1435), - [anon_sym_DOLLARstringify] = ACTIONS(1435), - [anon_sym_DOLLARappend] = ACTIONS(1435), - [anon_sym_DOLLARconcat] = ACTIONS(1435), - [anon_sym_DOLLARdefined] = ACTIONS(1435), - [anon_sym_DOLLARembed] = ACTIONS(1435), - [anon_sym_DOLLARand] = ACTIONS(1435), - [anon_sym_DOLLARor] = ACTIONS(1435), - [anon_sym_DOLLARfeature] = ACTIONS(1435), - [anon_sym_DOLLARassignable] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_typeid] = ACTIONS(1435), - [anon_sym_LBRACE_PIPE] = ACTIONS(1437), - [anon_sym_void] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_ichar] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_ushort] = ACTIONS(1435), - [anon_sym_uint] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_ulong] = ACTIONS(1435), - [anon_sym_int128] = ACTIONS(1435), - [anon_sym_uint128] = ACTIONS(1435), - [anon_sym_float] = ACTIONS(1435), - [anon_sym_double] = ACTIONS(1435), - [anon_sym_float16] = ACTIONS(1435), - [anon_sym_bfloat16] = ACTIONS(1435), - [anon_sym_float128] = ACTIONS(1435), - [anon_sym_iptr] = ACTIONS(1435), - [anon_sym_uptr] = ACTIONS(1435), - [anon_sym_isz] = ACTIONS(1435), - [anon_sym_usz] = ACTIONS(1435), - [anon_sym_anyfault] = ACTIONS(1435), - [anon_sym_any] = ACTIONS(1435), - [anon_sym_DOLLARtypeof] = ACTIONS(1435), - [anon_sym_DOLLARtypefrom] = ACTIONS(1435), - [anon_sym_DOLLARevaltype] = ACTIONS(1435), - [anon_sym_DOLLARvatype] = ACTIONS(1435), - [sym_real_literal] = ACTIONS(1437), - }, - [510] = { - [sym_line_comment] = STATE(510), - [sym_doc_comment] = STATE(510), - [sym_block_comment] = STATE(510), - [sym_ident] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [anon_sym_BQUOTE] = ACTIONS(1441), - [sym_bytes_literal] = ACTIONS(1441), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1439), - [sym_at_ident] = ACTIONS(1441), - [sym_hash_ident] = ACTIONS(1441), - [sym_type_ident] = ACTIONS(1441), - [sym_ct_type_ident] = ACTIONS(1441), - [sym_const_ident] = ACTIONS(1439), - [sym_builtin] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_tlocal] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_var] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_defer] = ACTIONS(1439), - [anon_sym_assert] = ACTIONS(1439), - [anon_sym_nextcase] = ACTIONS(1439), - [anon_sym_switch] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_foreach] = ACTIONS(1439), - [anon_sym_foreach_r] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_do] = ACTIONS(1439), - [anon_sym_int] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1439), - [anon_sym_DOLLARassert] = ACTIONS(1439), - [anon_sym_DOLLARerror] = ACTIONS(1439), - [anon_sym_DOLLARecho] = ACTIONS(1439), - [anon_sym_DOLLARif] = ACTIONS(1439), - [anon_sym_DOLLARendif] = ACTIONS(1439), - [anon_sym_DOLLARelse] = ACTIONS(1439), - [anon_sym_DOLLARswitch] = ACTIONS(1439), - [anon_sym_DOLLARfor] = ACTIONS(1439), - [anon_sym_DOLLARforeach] = ACTIONS(1439), - [anon_sym_DOLLARalignof] = ACTIONS(1439), - [anon_sym_DOLLARextnameof] = ACTIONS(1439), - [anon_sym_DOLLARnameof] = ACTIONS(1439), - [anon_sym_DOLLARoffsetof] = ACTIONS(1439), - [anon_sym_DOLLARqnameof] = ACTIONS(1439), - [anon_sym_DOLLARvaconst] = ACTIONS(1439), - [anon_sym_DOLLARvaarg] = ACTIONS(1439), - [anon_sym_DOLLARvaref] = ACTIONS(1439), - [anon_sym_DOLLARvaexpr] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_DOLLARvacount] = ACTIONS(1439), - [anon_sym_DOLLAReval] = ACTIONS(1439), - [anon_sym_DOLLARis_const] = ACTIONS(1439), - [anon_sym_DOLLARsizeof] = ACTIONS(1439), - [anon_sym_DOLLARstringify] = ACTIONS(1439), - [anon_sym_DOLLARappend] = ACTIONS(1439), - [anon_sym_DOLLARconcat] = ACTIONS(1439), - [anon_sym_DOLLARdefined] = ACTIONS(1439), - [anon_sym_DOLLARembed] = ACTIONS(1439), - [anon_sym_DOLLARand] = ACTIONS(1439), - [anon_sym_DOLLARor] = ACTIONS(1439), - [anon_sym_DOLLARfeature] = ACTIONS(1439), - [anon_sym_DOLLARassignable] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_typeid] = ACTIONS(1439), - [anon_sym_LBRACE_PIPE] = ACTIONS(1441), - [anon_sym_void] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_ichar] = ACTIONS(1439), - [anon_sym_short] = ACTIONS(1439), - [anon_sym_ushort] = ACTIONS(1439), - [anon_sym_uint] = ACTIONS(1439), - [anon_sym_long] = ACTIONS(1439), - [anon_sym_ulong] = ACTIONS(1439), - [anon_sym_int128] = ACTIONS(1439), - [anon_sym_uint128] = ACTIONS(1439), - [anon_sym_float] = ACTIONS(1439), - [anon_sym_double] = ACTIONS(1439), - [anon_sym_float16] = ACTIONS(1439), - [anon_sym_bfloat16] = ACTIONS(1439), - [anon_sym_float128] = ACTIONS(1439), - [anon_sym_iptr] = ACTIONS(1439), - [anon_sym_uptr] = ACTIONS(1439), - [anon_sym_isz] = ACTIONS(1439), - [anon_sym_usz] = ACTIONS(1439), - [anon_sym_anyfault] = ACTIONS(1439), - [anon_sym_any] = ACTIONS(1439), - [anon_sym_DOLLARtypeof] = ACTIONS(1439), - [anon_sym_DOLLARtypefrom] = ACTIONS(1439), - [anon_sym_DOLLARevaltype] = ACTIONS(1439), - [anon_sym_DOLLARvatype] = ACTIONS(1439), - [sym_real_literal] = ACTIONS(1441), - }, - [511] = { - [sym_line_comment] = STATE(511), - [sym_doc_comment] = STATE(511), - [sym_block_comment] = STATE(511), - [sym_ident] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_BQUOTE] = ACTIONS(1445), - [sym_bytes_literal] = ACTIONS(1445), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1443), - [sym_at_ident] = ACTIONS(1445), - [sym_hash_ident] = ACTIONS(1445), - [sym_type_ident] = ACTIONS(1445), - [sym_ct_type_ident] = ACTIONS(1445), - [sym_const_ident] = ACTIONS(1443), - [sym_builtin] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_tlocal] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_var] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_defer] = ACTIONS(1443), - [anon_sym_assert] = ACTIONS(1443), - [anon_sym_nextcase] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_foreach] = ACTIONS(1443), - [anon_sym_foreach_r] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_int] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_asm] = ACTIONS(1443), - [anon_sym_DOLLARassert] = ACTIONS(1443), - [anon_sym_DOLLARerror] = ACTIONS(1443), - [anon_sym_DOLLARecho] = ACTIONS(1443), - [anon_sym_DOLLARif] = ACTIONS(1443), - [anon_sym_DOLLARendif] = ACTIONS(1443), - [anon_sym_DOLLARelse] = ACTIONS(1443), - [anon_sym_DOLLARswitch] = ACTIONS(1443), - [anon_sym_DOLLARfor] = ACTIONS(1443), - [anon_sym_DOLLARforeach] = ACTIONS(1443), - [anon_sym_DOLLARalignof] = ACTIONS(1443), - [anon_sym_DOLLARextnameof] = ACTIONS(1443), - [anon_sym_DOLLARnameof] = ACTIONS(1443), - [anon_sym_DOLLARoffsetof] = ACTIONS(1443), - [anon_sym_DOLLARqnameof] = ACTIONS(1443), - [anon_sym_DOLLARvaconst] = ACTIONS(1443), - [anon_sym_DOLLARvaarg] = ACTIONS(1443), - [anon_sym_DOLLARvaref] = ACTIONS(1443), - [anon_sym_DOLLARvaexpr] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_null] = ACTIONS(1443), - [anon_sym_DOLLARvacount] = ACTIONS(1443), - [anon_sym_DOLLAReval] = ACTIONS(1443), - [anon_sym_DOLLARis_const] = ACTIONS(1443), - [anon_sym_DOLLARsizeof] = ACTIONS(1443), - [anon_sym_DOLLARstringify] = ACTIONS(1443), - [anon_sym_DOLLARappend] = ACTIONS(1443), - [anon_sym_DOLLARconcat] = ACTIONS(1443), - [anon_sym_DOLLARdefined] = ACTIONS(1443), - [anon_sym_DOLLARembed] = ACTIONS(1443), - [anon_sym_DOLLARand] = ACTIONS(1443), - [anon_sym_DOLLARor] = ACTIONS(1443), - [anon_sym_DOLLARfeature] = ACTIONS(1443), - [anon_sym_DOLLARassignable] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_typeid] = ACTIONS(1443), - [anon_sym_LBRACE_PIPE] = ACTIONS(1445), - [anon_sym_void] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_ichar] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [anon_sym_ushort] = ACTIONS(1443), - [anon_sym_uint] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_ulong] = ACTIONS(1443), - [anon_sym_int128] = ACTIONS(1443), - [anon_sym_uint128] = ACTIONS(1443), - [anon_sym_float] = ACTIONS(1443), - [anon_sym_double] = ACTIONS(1443), - [anon_sym_float16] = ACTIONS(1443), - [anon_sym_bfloat16] = ACTIONS(1443), - [anon_sym_float128] = ACTIONS(1443), - [anon_sym_iptr] = ACTIONS(1443), - [anon_sym_uptr] = ACTIONS(1443), - [anon_sym_isz] = ACTIONS(1443), - [anon_sym_usz] = ACTIONS(1443), - [anon_sym_anyfault] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_DOLLARtypeof] = ACTIONS(1443), - [anon_sym_DOLLARtypefrom] = ACTIONS(1443), - [anon_sym_DOLLARevaltype] = ACTIONS(1443), - [anon_sym_DOLLARvatype] = ACTIONS(1443), - [sym_real_literal] = ACTIONS(1445), - }, - [512] = { - [sym_line_comment] = STATE(512), - [sym_doc_comment] = STATE(512), - [sym_block_comment] = STATE(512), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARendif] = ACTIONS(1487), - [anon_sym_DOLLARelse] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARappend] = ACTIONS(1487), - [anon_sym_DOLLARconcat] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARcase] = ACTIONS(1601), + [anon_sym_DOLLARdefault] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARendswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, - [513] = { - [sym_line_comment] = STATE(513), - [sym_doc_comment] = STATE(513), - [sym_block_comment] = STATE(513), - [sym_ident] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_bytes_literal] = ACTIONS(1571), + [454] = { + [sym_line_comment] = STATE(454), + [sym_doc_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1569), - [sym_at_ident] = ACTIONS(1571), - [sym_hash_ident] = ACTIONS(1571), - [sym_type_ident] = ACTIONS(1571), - [sym_ct_type_ident] = ACTIONS(1571), - [sym_const_ident] = ACTIONS(1569), - [sym_builtin] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_tlocal] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_var] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_defer] = ACTIONS(1569), - [anon_sym_assert] = ACTIONS(1569), - [anon_sym_nextcase] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_foreach] = ACTIONS(1569), - [anon_sym_foreach_r] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_int] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_asm] = ACTIONS(1569), - [anon_sym_DOLLARassert] = ACTIONS(1569), - [anon_sym_DOLLARerror] = ACTIONS(1569), - [anon_sym_DOLLARecho] = ACTIONS(1569), - [anon_sym_DOLLARif] = ACTIONS(1569), - [anon_sym_DOLLARendif] = ACTIONS(1569), - [anon_sym_DOLLARelse] = ACTIONS(1569), - [anon_sym_DOLLARswitch] = ACTIONS(1569), - [anon_sym_DOLLARfor] = ACTIONS(1569), - [anon_sym_DOLLARforeach] = ACTIONS(1569), - [anon_sym_DOLLARalignof] = ACTIONS(1569), - [anon_sym_DOLLARextnameof] = ACTIONS(1569), - [anon_sym_DOLLARnameof] = ACTIONS(1569), - [anon_sym_DOLLARoffsetof] = ACTIONS(1569), - [anon_sym_DOLLARqnameof] = ACTIONS(1569), - [anon_sym_DOLLARvaconst] = ACTIONS(1569), - [anon_sym_DOLLARvaarg] = ACTIONS(1569), - [anon_sym_DOLLARvaref] = ACTIONS(1569), - [anon_sym_DOLLARvaexpr] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [anon_sym_DOLLARvacount] = ACTIONS(1569), - [anon_sym_DOLLAReval] = ACTIONS(1569), - [anon_sym_DOLLARis_const] = ACTIONS(1569), - [anon_sym_DOLLARsizeof] = ACTIONS(1569), - [anon_sym_DOLLARstringify] = ACTIONS(1569), - [anon_sym_DOLLARappend] = ACTIONS(1569), - [anon_sym_DOLLARconcat] = ACTIONS(1569), - [anon_sym_DOLLARdefined] = ACTIONS(1569), - [anon_sym_DOLLARembed] = ACTIONS(1569), - [anon_sym_DOLLARand] = ACTIONS(1569), - [anon_sym_DOLLARor] = ACTIONS(1569), - [anon_sym_DOLLARfeature] = ACTIONS(1569), - [anon_sym_DOLLARassignable] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_typeid] = ACTIONS(1569), - [anon_sym_LBRACE_PIPE] = ACTIONS(1571), - [anon_sym_void] = ACTIONS(1569), - [anon_sym_bool] = ACTIONS(1569), - [anon_sym_char] = ACTIONS(1569), - [anon_sym_ichar] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [anon_sym_ushort] = ACTIONS(1569), - [anon_sym_uint] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_ulong] = ACTIONS(1569), - [anon_sym_int128] = ACTIONS(1569), - [anon_sym_uint128] = ACTIONS(1569), - [anon_sym_float] = ACTIONS(1569), - [anon_sym_double] = ACTIONS(1569), - [anon_sym_float16] = ACTIONS(1569), - [anon_sym_bfloat16] = ACTIONS(1569), - [anon_sym_float128] = ACTIONS(1569), - [anon_sym_iptr] = ACTIONS(1569), - [anon_sym_uptr] = ACTIONS(1569), - [anon_sym_isz] = ACTIONS(1569), - [anon_sym_usz] = ACTIONS(1569), - [anon_sym_anyfault] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_DOLLARtypeof] = ACTIONS(1569), - [anon_sym_DOLLARtypefrom] = ACTIONS(1569), - [anon_sym_DOLLARevaltype] = ACTIONS(1569), - [anon_sym_DOLLARvatype] = ACTIONS(1569), - [sym_real_literal] = ACTIONS(1571), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARcase] = ACTIONS(1605), + [anon_sym_DOLLARdefault] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARendswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, - [514] = { - [sym_line_comment] = STATE(514), - [sym_doc_comment] = STATE(514), - [sym_block_comment] = STATE(514), - [sym_ident] = ACTIONS(1621), - [sym_integer_literal] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [anon_sym_BQUOTE] = ACTIONS(1623), - [sym_bytes_literal] = ACTIONS(1623), + [455] = { + [sym_line_comment] = STATE(455), + [sym_doc_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1621), - [sym_at_ident] = ACTIONS(1623), - [sym_hash_ident] = ACTIONS(1623), - [sym_type_ident] = ACTIONS(1623), - [sym_ct_type_ident] = ACTIONS(1623), - [sym_const_ident] = ACTIONS(1621), - [sym_builtin] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_tlocal] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_var] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_defer] = ACTIONS(1621), - [anon_sym_assert] = ACTIONS(1621), - [anon_sym_nextcase] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_foreach] = ACTIONS(1621), - [anon_sym_foreach_r] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_int] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_asm] = ACTIONS(1621), - [anon_sym_DOLLARassert] = ACTIONS(1621), - [anon_sym_DOLLARerror] = ACTIONS(1621), - [anon_sym_DOLLARecho] = ACTIONS(1621), - [anon_sym_DOLLARif] = ACTIONS(1621), - [anon_sym_DOLLARendif] = ACTIONS(1621), - [anon_sym_DOLLARelse] = ACTIONS(1621), - [anon_sym_DOLLARswitch] = ACTIONS(1621), - [anon_sym_DOLLARfor] = ACTIONS(1621), - [anon_sym_DOLLARforeach] = ACTIONS(1621), - [anon_sym_DOLLARalignof] = ACTIONS(1621), - [anon_sym_DOLLARextnameof] = ACTIONS(1621), - [anon_sym_DOLLARnameof] = ACTIONS(1621), - [anon_sym_DOLLARoffsetof] = ACTIONS(1621), - [anon_sym_DOLLARqnameof] = ACTIONS(1621), - [anon_sym_DOLLARvaconst] = ACTIONS(1621), - [anon_sym_DOLLARvaarg] = ACTIONS(1621), - [anon_sym_DOLLARvaref] = ACTIONS(1621), - [anon_sym_DOLLARvaexpr] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1621), - [anon_sym_false] = ACTIONS(1621), - [anon_sym_null] = ACTIONS(1621), - [anon_sym_DOLLARvacount] = ACTIONS(1621), - [anon_sym_DOLLAReval] = ACTIONS(1621), - [anon_sym_DOLLARis_const] = ACTIONS(1621), - [anon_sym_DOLLARsizeof] = ACTIONS(1621), - [anon_sym_DOLLARstringify] = ACTIONS(1621), - [anon_sym_DOLLARappend] = ACTIONS(1621), - [anon_sym_DOLLARconcat] = ACTIONS(1621), - [anon_sym_DOLLARdefined] = ACTIONS(1621), - [anon_sym_DOLLARembed] = ACTIONS(1621), - [anon_sym_DOLLARand] = ACTIONS(1621), - [anon_sym_DOLLARor] = ACTIONS(1621), - [anon_sym_DOLLARfeature] = ACTIONS(1621), - [anon_sym_DOLLARassignable] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_typeid] = ACTIONS(1621), - [anon_sym_LBRACE_PIPE] = ACTIONS(1623), - [anon_sym_void] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_char] = ACTIONS(1621), - [anon_sym_ichar] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [anon_sym_ushort] = ACTIONS(1621), - [anon_sym_uint] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_ulong] = ACTIONS(1621), - [anon_sym_int128] = ACTIONS(1621), - [anon_sym_uint128] = ACTIONS(1621), - [anon_sym_float] = ACTIONS(1621), - [anon_sym_double] = ACTIONS(1621), - [anon_sym_float16] = ACTIONS(1621), - [anon_sym_bfloat16] = ACTIONS(1621), - [anon_sym_float128] = ACTIONS(1621), - [anon_sym_iptr] = ACTIONS(1621), - [anon_sym_uptr] = ACTIONS(1621), - [anon_sym_isz] = ACTIONS(1621), - [anon_sym_usz] = ACTIONS(1621), - [anon_sym_anyfault] = ACTIONS(1621), - [anon_sym_any] = ACTIONS(1621), - [anon_sym_DOLLARtypeof] = ACTIONS(1621), - [anon_sym_DOLLARtypefrom] = ACTIONS(1621), - [anon_sym_DOLLARevaltype] = ACTIONS(1621), - [anon_sym_DOLLARvatype] = ACTIONS(1621), - [sym_real_literal] = ACTIONS(1623), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARcase] = ACTIONS(1609), + [anon_sym_DOLLARdefault] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARendswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, - [515] = { - [sym_line_comment] = STATE(515), - [sym_doc_comment] = STATE(515), - [sym_block_comment] = STATE(515), - [sym_ident] = ACTIONS(1629), - [sym_integer_literal] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1631), - [sym_bytes_literal] = ACTIONS(1631), + [456] = { + [sym_line_comment] = STATE(456), + [sym_doc_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1629), - [sym_at_ident] = ACTIONS(1631), - [sym_hash_ident] = ACTIONS(1631), - [sym_type_ident] = ACTIONS(1631), - [sym_ct_type_ident] = ACTIONS(1631), - [sym_const_ident] = ACTIONS(1629), - [sym_builtin] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_tlocal] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_fn] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_defer] = ACTIONS(1629), - [anon_sym_assert] = ACTIONS(1629), - [anon_sym_nextcase] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_foreach] = ACTIONS(1629), - [anon_sym_foreach_r] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_int] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_asm] = ACTIONS(1629), - [anon_sym_DOLLARassert] = ACTIONS(1629), - [anon_sym_DOLLARerror] = ACTIONS(1629), - [anon_sym_DOLLARecho] = ACTIONS(1629), - [anon_sym_DOLLARif] = ACTIONS(1629), - [anon_sym_DOLLARendif] = ACTIONS(1629), - [anon_sym_DOLLARelse] = ACTIONS(1629), - [anon_sym_DOLLARswitch] = ACTIONS(1629), - [anon_sym_DOLLARfor] = ACTIONS(1629), - [anon_sym_DOLLARforeach] = ACTIONS(1629), - [anon_sym_DOLLARalignof] = ACTIONS(1629), - [anon_sym_DOLLARextnameof] = ACTIONS(1629), - [anon_sym_DOLLARnameof] = ACTIONS(1629), - [anon_sym_DOLLARoffsetof] = ACTIONS(1629), - [anon_sym_DOLLARqnameof] = ACTIONS(1629), - [anon_sym_DOLLARvaconst] = ACTIONS(1629), - [anon_sym_DOLLARvaarg] = ACTIONS(1629), - [anon_sym_DOLLARvaref] = ACTIONS(1629), - [anon_sym_DOLLARvaexpr] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [anon_sym_DOLLARvacount] = ACTIONS(1629), - [anon_sym_DOLLAReval] = ACTIONS(1629), - [anon_sym_DOLLARis_const] = ACTIONS(1629), - [anon_sym_DOLLARsizeof] = ACTIONS(1629), - [anon_sym_DOLLARstringify] = ACTIONS(1629), - [anon_sym_DOLLARappend] = ACTIONS(1629), - [anon_sym_DOLLARconcat] = ACTIONS(1629), - [anon_sym_DOLLARdefined] = ACTIONS(1629), - [anon_sym_DOLLARembed] = ACTIONS(1629), - [anon_sym_DOLLARand] = ACTIONS(1629), - [anon_sym_DOLLARor] = ACTIONS(1629), - [anon_sym_DOLLARfeature] = ACTIONS(1629), - [anon_sym_DOLLARassignable] = ACTIONS(1629), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_typeid] = ACTIONS(1629), - [anon_sym_LBRACE_PIPE] = ACTIONS(1631), - [anon_sym_void] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_char] = ACTIONS(1629), - [anon_sym_ichar] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [anon_sym_ushort] = ACTIONS(1629), - [anon_sym_uint] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_ulong] = ACTIONS(1629), - [anon_sym_int128] = ACTIONS(1629), - [anon_sym_uint128] = ACTIONS(1629), - [anon_sym_float] = ACTIONS(1629), - [anon_sym_double] = ACTIONS(1629), - [anon_sym_float16] = ACTIONS(1629), - [anon_sym_bfloat16] = ACTIONS(1629), - [anon_sym_float128] = ACTIONS(1629), - [anon_sym_iptr] = ACTIONS(1629), - [anon_sym_uptr] = ACTIONS(1629), - [anon_sym_isz] = ACTIONS(1629), - [anon_sym_usz] = ACTIONS(1629), - [anon_sym_anyfault] = ACTIONS(1629), - [anon_sym_any] = ACTIONS(1629), - [anon_sym_DOLLARtypeof] = ACTIONS(1629), - [anon_sym_DOLLARtypefrom] = ACTIONS(1629), - [anon_sym_DOLLARevaltype] = ACTIONS(1629), - [anon_sym_DOLLARvatype] = ACTIONS(1629), - [sym_real_literal] = ACTIONS(1631), - }, - [516] = { - [sym_line_comment] = STATE(516), - [sym_doc_comment] = STATE(516), - [sym_block_comment] = STATE(516), - [sym_ident] = ACTIONS(1399), - [sym_integer_literal] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_BQUOTE] = ACTIONS(1401), - [sym_bytes_literal] = ACTIONS(1401), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1399), - [sym_at_ident] = ACTIONS(1401), - [sym_hash_ident] = ACTIONS(1401), - [sym_type_ident] = ACTIONS(1401), - [sym_ct_type_ident] = ACTIONS(1401), - [sym_const_ident] = ACTIONS(1399), - [sym_builtin] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_static] = ACTIONS(1399), - [anon_sym_tlocal] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_var] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_defer] = ACTIONS(1399), - [anon_sym_assert] = ACTIONS(1399), - [anon_sym_nextcase] = ACTIONS(1399), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_foreach] = ACTIONS(1399), - [anon_sym_foreach_r] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_int] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_asm] = ACTIONS(1399), - [anon_sym_DOLLARassert] = ACTIONS(1399), - [anon_sym_DOLLARerror] = ACTIONS(1399), - [anon_sym_DOLLARecho] = ACTIONS(1399), - [anon_sym_DOLLARif] = ACTIONS(1399), - [anon_sym_DOLLARendif] = ACTIONS(1399), - [anon_sym_DOLLARelse] = ACTIONS(1399), - [anon_sym_DOLLARswitch] = ACTIONS(1399), - [anon_sym_DOLLARfor] = ACTIONS(1399), - [anon_sym_DOLLARforeach] = ACTIONS(1399), - [anon_sym_DOLLARalignof] = ACTIONS(1399), - [anon_sym_DOLLARextnameof] = ACTIONS(1399), - [anon_sym_DOLLARnameof] = ACTIONS(1399), - [anon_sym_DOLLARoffsetof] = ACTIONS(1399), - [anon_sym_DOLLARqnameof] = ACTIONS(1399), - [anon_sym_DOLLARvaconst] = ACTIONS(1399), - [anon_sym_DOLLARvaarg] = ACTIONS(1399), - [anon_sym_DOLLARvaref] = ACTIONS(1399), - [anon_sym_DOLLARvaexpr] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_DOLLARvacount] = ACTIONS(1399), - [anon_sym_DOLLAReval] = ACTIONS(1399), - [anon_sym_DOLLARis_const] = ACTIONS(1399), - [anon_sym_DOLLARsizeof] = ACTIONS(1399), - [anon_sym_DOLLARstringify] = ACTIONS(1399), - [anon_sym_DOLLARappend] = ACTIONS(1399), - [anon_sym_DOLLARconcat] = ACTIONS(1399), - [anon_sym_DOLLARdefined] = ACTIONS(1399), - [anon_sym_DOLLARembed] = ACTIONS(1399), - [anon_sym_DOLLARand] = ACTIONS(1399), - [anon_sym_DOLLARor] = ACTIONS(1399), - [anon_sym_DOLLARfeature] = ACTIONS(1399), - [anon_sym_DOLLARassignable] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_typeid] = ACTIONS(1399), - [anon_sym_LBRACE_PIPE] = ACTIONS(1401), - [anon_sym_void] = ACTIONS(1399), - [anon_sym_bool] = ACTIONS(1399), - [anon_sym_char] = ACTIONS(1399), - [anon_sym_ichar] = ACTIONS(1399), - [anon_sym_short] = ACTIONS(1399), - [anon_sym_ushort] = ACTIONS(1399), - [anon_sym_uint] = ACTIONS(1399), - [anon_sym_long] = ACTIONS(1399), - [anon_sym_ulong] = ACTIONS(1399), - [anon_sym_int128] = ACTIONS(1399), - [anon_sym_uint128] = ACTIONS(1399), - [anon_sym_float] = ACTIONS(1399), - [anon_sym_double] = ACTIONS(1399), - [anon_sym_float16] = ACTIONS(1399), - [anon_sym_bfloat16] = ACTIONS(1399), - [anon_sym_float128] = ACTIONS(1399), - [anon_sym_iptr] = ACTIONS(1399), - [anon_sym_uptr] = ACTIONS(1399), - [anon_sym_isz] = ACTIONS(1399), - [anon_sym_usz] = ACTIONS(1399), - [anon_sym_anyfault] = ACTIONS(1399), - [anon_sym_any] = ACTIONS(1399), - [anon_sym_DOLLARtypeof] = ACTIONS(1399), - [anon_sym_DOLLARtypefrom] = ACTIONS(1399), - [anon_sym_DOLLARevaltype] = ACTIONS(1399), - [anon_sym_DOLLARvatype] = ACTIONS(1399), - [sym_real_literal] = ACTIONS(1401), - }, - [517] = { - [sym_line_comment] = STATE(517), - [sym_doc_comment] = STATE(517), - [sym_block_comment] = STATE(517), - [sym_ident] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_BQUOTE] = ACTIONS(1425), - [sym_bytes_literal] = ACTIONS(1425), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1423), - [sym_at_ident] = ACTIONS(1425), - [sym_hash_ident] = ACTIONS(1425), - [sym_type_ident] = ACTIONS(1425), - [sym_ct_type_ident] = ACTIONS(1425), - [sym_const_ident] = ACTIONS(1423), - [sym_builtin] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_tlocal] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_var] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_defer] = ACTIONS(1423), - [anon_sym_assert] = ACTIONS(1423), - [anon_sym_nextcase] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_foreach] = ACTIONS(1423), - [anon_sym_foreach_r] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_int] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1423), - [anon_sym_DOLLARassert] = ACTIONS(1423), - [anon_sym_DOLLARerror] = ACTIONS(1423), - [anon_sym_DOLLARecho] = ACTIONS(1423), - [anon_sym_DOLLARif] = ACTIONS(1423), - [anon_sym_DOLLARendif] = ACTIONS(1423), - [anon_sym_DOLLARelse] = ACTIONS(1423), - [anon_sym_DOLLARswitch] = ACTIONS(1423), - [anon_sym_DOLLARfor] = ACTIONS(1423), - [anon_sym_DOLLARforeach] = ACTIONS(1423), - [anon_sym_DOLLARalignof] = ACTIONS(1423), - [anon_sym_DOLLARextnameof] = ACTIONS(1423), - [anon_sym_DOLLARnameof] = ACTIONS(1423), - [anon_sym_DOLLARoffsetof] = ACTIONS(1423), - [anon_sym_DOLLARqnameof] = ACTIONS(1423), - [anon_sym_DOLLARvaconst] = ACTIONS(1423), - [anon_sym_DOLLARvaarg] = ACTIONS(1423), - [anon_sym_DOLLARvaref] = ACTIONS(1423), - [anon_sym_DOLLARvaexpr] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_null] = ACTIONS(1423), - [anon_sym_DOLLARvacount] = ACTIONS(1423), - [anon_sym_DOLLAReval] = ACTIONS(1423), - [anon_sym_DOLLARis_const] = ACTIONS(1423), - [anon_sym_DOLLARsizeof] = ACTIONS(1423), - [anon_sym_DOLLARstringify] = ACTIONS(1423), - [anon_sym_DOLLARappend] = ACTIONS(1423), - [anon_sym_DOLLARconcat] = ACTIONS(1423), - [anon_sym_DOLLARdefined] = ACTIONS(1423), - [anon_sym_DOLLARembed] = ACTIONS(1423), - [anon_sym_DOLLARand] = ACTIONS(1423), - [anon_sym_DOLLARor] = ACTIONS(1423), - [anon_sym_DOLLARfeature] = ACTIONS(1423), - [anon_sym_DOLLARassignable] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_typeid] = ACTIONS(1423), - [anon_sym_LBRACE_PIPE] = ACTIONS(1425), - [anon_sym_void] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_ichar] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [anon_sym_ushort] = ACTIONS(1423), - [anon_sym_uint] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_ulong] = ACTIONS(1423), - [anon_sym_int128] = ACTIONS(1423), - [anon_sym_uint128] = ACTIONS(1423), - [anon_sym_float] = ACTIONS(1423), - [anon_sym_double] = ACTIONS(1423), - [anon_sym_float16] = ACTIONS(1423), - [anon_sym_bfloat16] = ACTIONS(1423), - [anon_sym_float128] = ACTIONS(1423), - [anon_sym_iptr] = ACTIONS(1423), - [anon_sym_uptr] = ACTIONS(1423), - [anon_sym_isz] = ACTIONS(1423), - [anon_sym_usz] = ACTIONS(1423), - [anon_sym_anyfault] = ACTIONS(1423), - [anon_sym_any] = ACTIONS(1423), - [anon_sym_DOLLARtypeof] = ACTIONS(1423), - [anon_sym_DOLLARtypefrom] = ACTIONS(1423), - [anon_sym_DOLLARevaltype] = ACTIONS(1423), - [anon_sym_DOLLARvatype] = ACTIONS(1423), - [sym_real_literal] = ACTIONS(1425), - }, - [518] = { - [sym_line_comment] = STATE(518), - [sym_doc_comment] = STATE(518), - [sym_block_comment] = STATE(518), - [sym_ident] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_BQUOTE] = ACTIONS(1381), - [sym_bytes_literal] = ACTIONS(1381), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1379), - [sym_at_ident] = ACTIONS(1381), - [sym_hash_ident] = ACTIONS(1381), - [sym_type_ident] = ACTIONS(1381), - [sym_ct_type_ident] = ACTIONS(1381), - [sym_const_ident] = ACTIONS(1379), - [sym_builtin] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_tlocal] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_fn] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_var] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_defer] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_nextcase] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_foreach] = ACTIONS(1379), - [anon_sym_foreach_r] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_int] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym_DOLLARassert] = ACTIONS(1379), - [anon_sym_DOLLARerror] = ACTIONS(1379), - [anon_sym_DOLLARecho] = ACTIONS(1379), - [anon_sym_DOLLARif] = ACTIONS(1379), - [anon_sym_DOLLARendif] = ACTIONS(1379), - [anon_sym_DOLLARelse] = ACTIONS(1379), - [anon_sym_DOLLARswitch] = ACTIONS(1379), - [anon_sym_DOLLARfor] = ACTIONS(1379), - [anon_sym_DOLLARforeach] = ACTIONS(1379), - [anon_sym_DOLLARalignof] = ACTIONS(1379), - [anon_sym_DOLLARextnameof] = ACTIONS(1379), - [anon_sym_DOLLARnameof] = ACTIONS(1379), - [anon_sym_DOLLARoffsetof] = ACTIONS(1379), - [anon_sym_DOLLARqnameof] = ACTIONS(1379), - [anon_sym_DOLLARvaconst] = ACTIONS(1379), - [anon_sym_DOLLARvaarg] = ACTIONS(1379), - [anon_sym_DOLLARvaref] = ACTIONS(1379), - [anon_sym_DOLLARvaexpr] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1379), - [anon_sym_false] = ACTIONS(1379), - [anon_sym_null] = ACTIONS(1379), - [anon_sym_DOLLARvacount] = ACTIONS(1379), - [anon_sym_DOLLAReval] = ACTIONS(1379), - [anon_sym_DOLLARis_const] = ACTIONS(1379), - [anon_sym_DOLLARsizeof] = ACTIONS(1379), - [anon_sym_DOLLARstringify] = ACTIONS(1379), - [anon_sym_DOLLARappend] = ACTIONS(1379), - [anon_sym_DOLLARconcat] = ACTIONS(1379), - [anon_sym_DOLLARdefined] = ACTIONS(1379), - [anon_sym_DOLLARembed] = ACTIONS(1379), - [anon_sym_DOLLARand] = ACTIONS(1379), - [anon_sym_DOLLARor] = ACTIONS(1379), - [anon_sym_DOLLARfeature] = ACTIONS(1379), - [anon_sym_DOLLARassignable] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_typeid] = ACTIONS(1379), - [anon_sym_LBRACE_PIPE] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1379), - [anon_sym_bool] = ACTIONS(1379), - [anon_sym_char] = ACTIONS(1379), - [anon_sym_ichar] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_ushort] = ACTIONS(1379), - [anon_sym_uint] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_ulong] = ACTIONS(1379), - [anon_sym_int128] = ACTIONS(1379), - [anon_sym_uint128] = ACTIONS(1379), - [anon_sym_float] = ACTIONS(1379), - [anon_sym_double] = ACTIONS(1379), - [anon_sym_float16] = ACTIONS(1379), - [anon_sym_bfloat16] = ACTIONS(1379), - [anon_sym_float128] = ACTIONS(1379), - [anon_sym_iptr] = ACTIONS(1379), - [anon_sym_uptr] = ACTIONS(1379), - [anon_sym_isz] = ACTIONS(1379), - [anon_sym_usz] = ACTIONS(1379), - [anon_sym_anyfault] = ACTIONS(1379), - [anon_sym_any] = ACTIONS(1379), - [anon_sym_DOLLARtypeof] = ACTIONS(1379), - [anon_sym_DOLLARtypefrom] = ACTIONS(1379), - [anon_sym_DOLLARevaltype] = ACTIONS(1379), - [anon_sym_DOLLARvatype] = ACTIONS(1379), - [sym_real_literal] = ACTIONS(1381), - }, - [519] = { - [sym_line_comment] = STATE(519), - [sym_doc_comment] = STATE(519), - [sym_block_comment] = STATE(519), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARendif] = ACTIONS(1451), - [anon_sym_DOLLARelse] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), - }, - [520] = { - [sym_line_comment] = STATE(520), - [sym_doc_comment] = STATE(520), - [sym_block_comment] = STATE(520), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARendif] = ACTIONS(1451), - [anon_sym_DOLLARelse] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), - }, - [521] = { - [sym_line_comment] = STATE(521), - [sym_doc_comment] = STATE(521), - [sym_block_comment] = STATE(521), - [sym_ident] = ACTIONS(1667), - [sym_integer_literal] = ACTIONS(1669), - [anon_sym_SQUOTE] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [anon_sym_BQUOTE] = ACTIONS(1669), - [sym_bytes_literal] = ACTIONS(1669), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1667), - [sym_at_ident] = ACTIONS(1669), - [sym_hash_ident] = ACTIONS(1669), - [sym_type_ident] = ACTIONS(1669), - [sym_ct_type_ident] = ACTIONS(1669), - [sym_const_ident] = ACTIONS(1667), - [sym_builtin] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1667), - [anon_sym_tlocal] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_fn] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [anon_sym_var] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_defer] = ACTIONS(1667), - [anon_sym_assert] = ACTIONS(1667), - [anon_sym_nextcase] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1667), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_foreach] = ACTIONS(1667), - [anon_sym_foreach_r] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_int] = ACTIONS(1667), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_asm] = ACTIONS(1667), - [anon_sym_DOLLARassert] = ACTIONS(1667), - [anon_sym_DOLLARerror] = ACTIONS(1667), - [anon_sym_DOLLARecho] = ACTIONS(1667), - [anon_sym_DOLLARif] = ACTIONS(1667), - [anon_sym_DOLLARendif] = ACTIONS(1667), - [anon_sym_DOLLARelse] = ACTIONS(1667), - [anon_sym_DOLLARswitch] = ACTIONS(1667), - [anon_sym_DOLLARfor] = ACTIONS(1667), - [anon_sym_DOLLARforeach] = ACTIONS(1667), - [anon_sym_DOLLARalignof] = ACTIONS(1667), - [anon_sym_DOLLARextnameof] = ACTIONS(1667), - [anon_sym_DOLLARnameof] = ACTIONS(1667), - [anon_sym_DOLLARoffsetof] = ACTIONS(1667), - [anon_sym_DOLLARqnameof] = ACTIONS(1667), - [anon_sym_DOLLARvaconst] = ACTIONS(1667), - [anon_sym_DOLLARvaarg] = ACTIONS(1667), - [anon_sym_DOLLARvaref] = ACTIONS(1667), - [anon_sym_DOLLARvaexpr] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [anon_sym_DOLLARvacount] = ACTIONS(1667), - [anon_sym_DOLLAReval] = ACTIONS(1667), - [anon_sym_DOLLARis_const] = ACTIONS(1667), - [anon_sym_DOLLARsizeof] = ACTIONS(1667), - [anon_sym_DOLLARstringify] = ACTIONS(1667), - [anon_sym_DOLLARappend] = ACTIONS(1667), - [anon_sym_DOLLARconcat] = ACTIONS(1667), - [anon_sym_DOLLARdefined] = ACTIONS(1667), - [anon_sym_DOLLARembed] = ACTIONS(1667), - [anon_sym_DOLLARand] = ACTIONS(1667), - [anon_sym_DOLLARor] = ACTIONS(1667), - [anon_sym_DOLLARfeature] = ACTIONS(1667), - [anon_sym_DOLLARassignable] = ACTIONS(1667), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_typeid] = ACTIONS(1667), - [anon_sym_LBRACE_PIPE] = ACTIONS(1669), - [anon_sym_void] = ACTIONS(1667), - [anon_sym_bool] = ACTIONS(1667), - [anon_sym_char] = ACTIONS(1667), - [anon_sym_ichar] = ACTIONS(1667), - [anon_sym_short] = ACTIONS(1667), - [anon_sym_ushort] = ACTIONS(1667), - [anon_sym_uint] = ACTIONS(1667), - [anon_sym_long] = ACTIONS(1667), - [anon_sym_ulong] = ACTIONS(1667), - [anon_sym_int128] = ACTIONS(1667), - [anon_sym_uint128] = ACTIONS(1667), - [anon_sym_float] = ACTIONS(1667), - [anon_sym_double] = ACTIONS(1667), - [anon_sym_float16] = ACTIONS(1667), - [anon_sym_bfloat16] = ACTIONS(1667), - [anon_sym_float128] = ACTIONS(1667), - [anon_sym_iptr] = ACTIONS(1667), - [anon_sym_uptr] = ACTIONS(1667), - [anon_sym_isz] = ACTIONS(1667), - [anon_sym_usz] = ACTIONS(1667), - [anon_sym_anyfault] = ACTIONS(1667), - [anon_sym_any] = ACTIONS(1667), - [anon_sym_DOLLARtypeof] = ACTIONS(1667), - [anon_sym_DOLLARtypefrom] = ACTIONS(1667), - [anon_sym_DOLLARevaltype] = ACTIONS(1667), - [anon_sym_DOLLARvatype] = ACTIONS(1667), - [sym_real_literal] = ACTIONS(1669), - }, - [522] = { - [sym_line_comment] = STATE(522), - [sym_doc_comment] = STATE(522), - [sym_block_comment] = STATE(522), - [sym_ident] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_BQUOTE] = ACTIONS(1457), - [sym_bytes_literal] = ACTIONS(1457), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1455), - [sym_at_ident] = ACTIONS(1457), - [sym_hash_ident] = ACTIONS(1457), - [sym_type_ident] = ACTIONS(1457), - [sym_ct_type_ident] = ACTIONS(1457), - [sym_const_ident] = ACTIONS(1455), - [sym_builtin] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_tlocal] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_var] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_defer] = ACTIONS(1455), - [anon_sym_assert] = ACTIONS(1455), - [anon_sym_nextcase] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_foreach] = ACTIONS(1455), - [anon_sym_foreach_r] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_int] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1455), - [anon_sym_DOLLARassert] = ACTIONS(1455), - [anon_sym_DOLLARerror] = ACTIONS(1455), - [anon_sym_DOLLARecho] = ACTIONS(1455), - [anon_sym_DOLLARif] = ACTIONS(1455), - [anon_sym_DOLLARendif] = ACTIONS(1455), - [anon_sym_DOLLARelse] = ACTIONS(1455), - [anon_sym_DOLLARswitch] = ACTIONS(1455), - [anon_sym_DOLLARfor] = ACTIONS(1455), - [anon_sym_DOLLARforeach] = ACTIONS(1455), - [anon_sym_DOLLARalignof] = ACTIONS(1455), - [anon_sym_DOLLARextnameof] = ACTIONS(1455), - [anon_sym_DOLLARnameof] = ACTIONS(1455), - [anon_sym_DOLLARoffsetof] = ACTIONS(1455), - [anon_sym_DOLLARqnameof] = ACTIONS(1455), - [anon_sym_DOLLARvaconst] = ACTIONS(1455), - [anon_sym_DOLLARvaarg] = ACTIONS(1455), - [anon_sym_DOLLARvaref] = ACTIONS(1455), - [anon_sym_DOLLARvaexpr] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_DOLLARvacount] = ACTIONS(1455), - [anon_sym_DOLLAReval] = ACTIONS(1455), - [anon_sym_DOLLARis_const] = ACTIONS(1455), - [anon_sym_DOLLARsizeof] = ACTIONS(1455), - [anon_sym_DOLLARstringify] = ACTIONS(1455), - [anon_sym_DOLLARappend] = ACTIONS(1455), - [anon_sym_DOLLARconcat] = ACTIONS(1455), - [anon_sym_DOLLARdefined] = ACTIONS(1455), - [anon_sym_DOLLARembed] = ACTIONS(1455), - [anon_sym_DOLLARand] = ACTIONS(1455), - [anon_sym_DOLLARor] = ACTIONS(1455), - [anon_sym_DOLLARfeature] = ACTIONS(1455), - [anon_sym_DOLLARassignable] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_typeid] = ACTIONS(1455), - [anon_sym_LBRACE_PIPE] = ACTIONS(1457), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_ichar] = ACTIONS(1455), - [anon_sym_short] = ACTIONS(1455), - [anon_sym_ushort] = ACTIONS(1455), - [anon_sym_uint] = ACTIONS(1455), - [anon_sym_long] = ACTIONS(1455), - [anon_sym_ulong] = ACTIONS(1455), - [anon_sym_int128] = ACTIONS(1455), - [anon_sym_uint128] = ACTIONS(1455), - [anon_sym_float] = ACTIONS(1455), - [anon_sym_double] = ACTIONS(1455), - [anon_sym_float16] = ACTIONS(1455), - [anon_sym_bfloat16] = ACTIONS(1455), - [anon_sym_float128] = ACTIONS(1455), - [anon_sym_iptr] = ACTIONS(1455), - [anon_sym_uptr] = ACTIONS(1455), - [anon_sym_isz] = ACTIONS(1455), - [anon_sym_usz] = ACTIONS(1455), - [anon_sym_anyfault] = ACTIONS(1455), - [anon_sym_any] = ACTIONS(1455), - [anon_sym_DOLLARtypeof] = ACTIONS(1455), - [anon_sym_DOLLARtypefrom] = ACTIONS(1455), - [anon_sym_DOLLARevaltype] = ACTIONS(1455), - [anon_sym_DOLLARvatype] = ACTIONS(1455), - [sym_real_literal] = ACTIONS(1457), - }, - [523] = { - [sym_line_comment] = STATE(523), - [sym_doc_comment] = STATE(523), - [sym_block_comment] = STATE(523), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARendif] = ACTIONS(1483), - [anon_sym_DOLLARelse] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARappend] = ACTIONS(1483), - [anon_sym_DOLLARconcat] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARcase] = ACTIONS(1613), + [anon_sym_DOLLARdefault] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARendswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [524] = { - [sym_line_comment] = STATE(524), - [sym_doc_comment] = STATE(524), - [sym_block_comment] = STATE(524), - [sym_ident] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_bytes_literal] = ACTIONS(1539), + [457] = { + [sym_line_comment] = STATE(457), + [sym_doc_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1537), - [sym_at_ident] = ACTIONS(1539), - [sym_hash_ident] = ACTIONS(1539), - [sym_type_ident] = ACTIONS(1539), - [sym_ct_type_ident] = ACTIONS(1539), - [sym_const_ident] = ACTIONS(1537), - [sym_builtin] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_tlocal] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_defer] = ACTIONS(1537), - [anon_sym_assert] = ACTIONS(1537), - [anon_sym_nextcase] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_foreach] = ACTIONS(1537), - [anon_sym_foreach_r] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_int] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym_DOLLARassert] = ACTIONS(1537), - [anon_sym_DOLLARerror] = ACTIONS(1537), - [anon_sym_DOLLARecho] = ACTIONS(1537), - [anon_sym_DOLLARif] = ACTIONS(1537), - [anon_sym_DOLLARendif] = ACTIONS(1537), - [anon_sym_DOLLARelse] = ACTIONS(1537), - [anon_sym_DOLLARswitch] = ACTIONS(1537), - [anon_sym_DOLLARfor] = ACTIONS(1537), - [anon_sym_DOLLARforeach] = ACTIONS(1537), - [anon_sym_DOLLARalignof] = ACTIONS(1537), - [anon_sym_DOLLARextnameof] = ACTIONS(1537), - [anon_sym_DOLLARnameof] = ACTIONS(1537), - [anon_sym_DOLLARoffsetof] = ACTIONS(1537), - [anon_sym_DOLLARqnameof] = ACTIONS(1537), - [anon_sym_DOLLARvaconst] = ACTIONS(1537), - [anon_sym_DOLLARvaarg] = ACTIONS(1537), - [anon_sym_DOLLARvaref] = ACTIONS(1537), - [anon_sym_DOLLARvaexpr] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [anon_sym_DOLLARvacount] = ACTIONS(1537), - [anon_sym_DOLLAReval] = ACTIONS(1537), - [anon_sym_DOLLARis_const] = ACTIONS(1537), - [anon_sym_DOLLARsizeof] = ACTIONS(1537), - [anon_sym_DOLLARstringify] = ACTIONS(1537), - [anon_sym_DOLLARappend] = ACTIONS(1537), - [anon_sym_DOLLARconcat] = ACTIONS(1537), - [anon_sym_DOLLARdefined] = ACTIONS(1537), - [anon_sym_DOLLARembed] = ACTIONS(1537), - [anon_sym_DOLLARand] = ACTIONS(1537), - [anon_sym_DOLLARor] = ACTIONS(1537), - [anon_sym_DOLLARfeature] = ACTIONS(1537), - [anon_sym_DOLLARassignable] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_typeid] = ACTIONS(1537), - [anon_sym_LBRACE_PIPE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_ichar] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [anon_sym_ushort] = ACTIONS(1537), - [anon_sym_uint] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_ulong] = ACTIONS(1537), - [anon_sym_int128] = ACTIONS(1537), - [anon_sym_uint128] = ACTIONS(1537), - [anon_sym_float] = ACTIONS(1537), - [anon_sym_double] = ACTIONS(1537), - [anon_sym_float16] = ACTIONS(1537), - [anon_sym_bfloat16] = ACTIONS(1537), - [anon_sym_float128] = ACTIONS(1537), - [anon_sym_iptr] = ACTIONS(1537), - [anon_sym_uptr] = ACTIONS(1537), - [anon_sym_isz] = ACTIONS(1537), - [anon_sym_usz] = ACTIONS(1537), - [anon_sym_anyfault] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_DOLLARtypeof] = ACTIONS(1537), - [anon_sym_DOLLARtypefrom] = ACTIONS(1537), - [anon_sym_DOLLARevaltype] = ACTIONS(1537), - [anon_sym_DOLLARvatype] = ACTIONS(1537), - [sym_real_literal] = ACTIONS(1539), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARcase] = ACTIONS(1613), + [anon_sym_DOLLARdefault] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARendswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [525] = { - [sym_line_comment] = STATE(525), - [sym_doc_comment] = STATE(525), - [sym_block_comment] = STATE(525), - [sym_ident] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_BQUOTE] = ACTIONS(1551), - [sym_bytes_literal] = ACTIONS(1551), + [458] = { + [sym_line_comment] = STATE(458), + [sym_doc_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1549), - [sym_at_ident] = ACTIONS(1551), - [sym_hash_ident] = ACTIONS(1551), - [sym_type_ident] = ACTIONS(1551), - [sym_ct_type_ident] = ACTIONS(1551), - [sym_const_ident] = ACTIONS(1549), - [sym_builtin] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_tlocal] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_fn] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_var] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_defer] = ACTIONS(1549), - [anon_sym_assert] = ACTIONS(1549), - [anon_sym_nextcase] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_foreach] = ACTIONS(1549), - [anon_sym_foreach_r] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_int] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_asm] = ACTIONS(1549), - [anon_sym_DOLLARassert] = ACTIONS(1549), - [anon_sym_DOLLARerror] = ACTIONS(1549), - [anon_sym_DOLLARecho] = ACTIONS(1549), - [anon_sym_DOLLARif] = ACTIONS(1549), - [anon_sym_DOLLARendif] = ACTIONS(1549), - [anon_sym_DOLLARelse] = ACTIONS(1549), - [anon_sym_DOLLARswitch] = ACTIONS(1549), - [anon_sym_DOLLARfor] = ACTIONS(1549), - [anon_sym_DOLLARforeach] = ACTIONS(1549), - [anon_sym_DOLLARalignof] = ACTIONS(1549), - [anon_sym_DOLLARextnameof] = ACTIONS(1549), - [anon_sym_DOLLARnameof] = ACTIONS(1549), - [anon_sym_DOLLARoffsetof] = ACTIONS(1549), - [anon_sym_DOLLARqnameof] = ACTIONS(1549), - [anon_sym_DOLLARvaconst] = ACTIONS(1549), - [anon_sym_DOLLARvaarg] = ACTIONS(1549), - [anon_sym_DOLLARvaref] = ACTIONS(1549), - [anon_sym_DOLLARvaexpr] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [anon_sym_DOLLARvacount] = ACTIONS(1549), - [anon_sym_DOLLAReval] = ACTIONS(1549), - [anon_sym_DOLLARis_const] = ACTIONS(1549), - [anon_sym_DOLLARsizeof] = ACTIONS(1549), - [anon_sym_DOLLARstringify] = ACTIONS(1549), - [anon_sym_DOLLARappend] = ACTIONS(1549), - [anon_sym_DOLLARconcat] = ACTIONS(1549), - [anon_sym_DOLLARdefined] = ACTIONS(1549), - [anon_sym_DOLLARembed] = ACTIONS(1549), - [anon_sym_DOLLARand] = ACTIONS(1549), - [anon_sym_DOLLARor] = ACTIONS(1549), - [anon_sym_DOLLARfeature] = ACTIONS(1549), - [anon_sym_DOLLARassignable] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_typeid] = ACTIONS(1549), - [anon_sym_LBRACE_PIPE] = ACTIONS(1551), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_ichar] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [anon_sym_ushort] = ACTIONS(1549), - [anon_sym_uint] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_ulong] = ACTIONS(1549), - [anon_sym_int128] = ACTIONS(1549), - [anon_sym_uint128] = ACTIONS(1549), - [anon_sym_float] = ACTIONS(1549), - [anon_sym_double] = ACTIONS(1549), - [anon_sym_float16] = ACTIONS(1549), - [anon_sym_bfloat16] = ACTIONS(1549), - [anon_sym_float128] = ACTIONS(1549), - [anon_sym_iptr] = ACTIONS(1549), - [anon_sym_uptr] = ACTIONS(1549), - [anon_sym_isz] = ACTIONS(1549), - [anon_sym_usz] = ACTIONS(1549), - [anon_sym_anyfault] = ACTIONS(1549), - [anon_sym_any] = ACTIONS(1549), - [anon_sym_DOLLARtypeof] = ACTIONS(1549), - [anon_sym_DOLLARtypefrom] = ACTIONS(1549), - [anon_sym_DOLLARevaltype] = ACTIONS(1549), - [anon_sym_DOLLARvatype] = ACTIONS(1549), - [sym_real_literal] = ACTIONS(1551), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARcase] = ACTIONS(1573), + [anon_sym_DOLLARdefault] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARendswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), + }, + [459] = { + [sym_line_comment] = STATE(459), + [sym_doc_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARcase] = ACTIONS(1621), + [anon_sym_DOLLARdefault] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARendswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, - [526] = { - [sym_line_comment] = STATE(526), - [sym_doc_comment] = STATE(526), - [sym_block_comment] = STATE(526), - [sym_ident] = ACTIONS(1633), - [sym_integer_literal] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), - [sym_bytes_literal] = ACTIONS(1635), + [460] = { + [sym_line_comment] = STATE(460), + [sym_doc_comment] = STATE(460), + [sym_block_comment] = STATE(460), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1633), - [sym_at_ident] = ACTIONS(1635), - [sym_hash_ident] = ACTIONS(1635), - [sym_type_ident] = ACTIONS(1635), - [sym_ct_type_ident] = ACTIONS(1635), - [sym_const_ident] = ACTIONS(1633), - [sym_builtin] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_tlocal] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_fn] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_var] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_defer] = ACTIONS(1633), - [anon_sym_assert] = ACTIONS(1633), - [anon_sym_nextcase] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_foreach] = ACTIONS(1633), - [anon_sym_foreach_r] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_int] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1633), - [anon_sym_DOLLARassert] = ACTIONS(1633), - [anon_sym_DOLLARerror] = ACTIONS(1633), - [anon_sym_DOLLARecho] = ACTIONS(1633), - [anon_sym_DOLLARif] = ACTIONS(1633), - [anon_sym_DOLLARendif] = ACTIONS(1633), - [anon_sym_DOLLARelse] = ACTIONS(1633), - [anon_sym_DOLLARswitch] = ACTIONS(1633), - [anon_sym_DOLLARfor] = ACTIONS(1633), - [anon_sym_DOLLARforeach] = ACTIONS(1633), - [anon_sym_DOLLARalignof] = ACTIONS(1633), - [anon_sym_DOLLARextnameof] = ACTIONS(1633), - [anon_sym_DOLLARnameof] = ACTIONS(1633), - [anon_sym_DOLLARoffsetof] = ACTIONS(1633), - [anon_sym_DOLLARqnameof] = ACTIONS(1633), - [anon_sym_DOLLARvaconst] = ACTIONS(1633), - [anon_sym_DOLLARvaarg] = ACTIONS(1633), - [anon_sym_DOLLARvaref] = ACTIONS(1633), - [anon_sym_DOLLARvaexpr] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [anon_sym_DOLLARvacount] = ACTIONS(1633), - [anon_sym_DOLLAReval] = ACTIONS(1633), - [anon_sym_DOLLARis_const] = ACTIONS(1633), - [anon_sym_DOLLARsizeof] = ACTIONS(1633), - [anon_sym_DOLLARstringify] = ACTIONS(1633), - [anon_sym_DOLLARappend] = ACTIONS(1633), - [anon_sym_DOLLARconcat] = ACTIONS(1633), - [anon_sym_DOLLARdefined] = ACTIONS(1633), - [anon_sym_DOLLARembed] = ACTIONS(1633), - [anon_sym_DOLLARand] = ACTIONS(1633), - [anon_sym_DOLLARor] = ACTIONS(1633), - [anon_sym_DOLLARfeature] = ACTIONS(1633), - [anon_sym_DOLLARassignable] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_typeid] = ACTIONS(1633), - [anon_sym_LBRACE_PIPE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1633), - [anon_sym_bool] = ACTIONS(1633), - [anon_sym_char] = ACTIONS(1633), - [anon_sym_ichar] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [anon_sym_ushort] = ACTIONS(1633), - [anon_sym_uint] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_ulong] = ACTIONS(1633), - [anon_sym_int128] = ACTIONS(1633), - [anon_sym_uint128] = ACTIONS(1633), - [anon_sym_float] = ACTIONS(1633), - [anon_sym_double] = ACTIONS(1633), - [anon_sym_float16] = ACTIONS(1633), - [anon_sym_bfloat16] = ACTIONS(1633), - [anon_sym_float128] = ACTIONS(1633), - [anon_sym_iptr] = ACTIONS(1633), - [anon_sym_uptr] = ACTIONS(1633), - [anon_sym_isz] = ACTIONS(1633), - [anon_sym_usz] = ACTIONS(1633), - [anon_sym_anyfault] = ACTIONS(1633), - [anon_sym_any] = ACTIONS(1633), - [anon_sym_DOLLARtypeof] = ACTIONS(1633), - [anon_sym_DOLLARtypefrom] = ACTIONS(1633), - [anon_sym_DOLLARevaltype] = ACTIONS(1633), - [anon_sym_DOLLARvatype] = ACTIONS(1633), - [sym_real_literal] = ACTIONS(1635), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARcase] = ACTIONS(1625), + [anon_sym_DOLLARdefault] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARendswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, - [527] = { - [sym_line_comment] = STATE(527), - [sym_doc_comment] = STATE(527), - [sym_block_comment] = STATE(527), - [sym_ident] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1619), - [anon_sym_SQUOTE] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [anon_sym_BQUOTE] = ACTIONS(1619), - [sym_bytes_literal] = ACTIONS(1619), + [461] = { + [sym_line_comment] = STATE(461), + [sym_doc_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1617), - [sym_at_ident] = ACTIONS(1619), - [sym_hash_ident] = ACTIONS(1619), - [sym_type_ident] = ACTIONS(1619), - [sym_ct_type_ident] = ACTIONS(1619), - [sym_const_ident] = ACTIONS(1617), - [sym_builtin] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_tlocal] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_var] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_defer] = ACTIONS(1617), - [anon_sym_assert] = ACTIONS(1617), - [anon_sym_nextcase] = ACTIONS(1617), - [anon_sym_switch] = ACTIONS(1617), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_foreach] = ACTIONS(1617), - [anon_sym_foreach_r] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_do] = ACTIONS(1617), - [anon_sym_int] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1617), - [anon_sym_DOLLARassert] = ACTIONS(1617), - [anon_sym_DOLLARerror] = ACTIONS(1617), - [anon_sym_DOLLARecho] = ACTIONS(1617), - [anon_sym_DOLLARif] = ACTIONS(1617), - [anon_sym_DOLLARendif] = ACTIONS(1617), - [anon_sym_DOLLARelse] = ACTIONS(1617), - [anon_sym_DOLLARswitch] = ACTIONS(1617), - [anon_sym_DOLLARfor] = ACTIONS(1617), - [anon_sym_DOLLARforeach] = ACTIONS(1617), - [anon_sym_DOLLARalignof] = ACTIONS(1617), - [anon_sym_DOLLARextnameof] = ACTIONS(1617), - [anon_sym_DOLLARnameof] = ACTIONS(1617), - [anon_sym_DOLLARoffsetof] = ACTIONS(1617), - [anon_sym_DOLLARqnameof] = ACTIONS(1617), - [anon_sym_DOLLARvaconst] = ACTIONS(1617), - [anon_sym_DOLLARvaarg] = ACTIONS(1617), - [anon_sym_DOLLARvaref] = ACTIONS(1617), - [anon_sym_DOLLARvaexpr] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [anon_sym_DOLLARvacount] = ACTIONS(1617), - [anon_sym_DOLLAReval] = ACTIONS(1617), - [anon_sym_DOLLARis_const] = ACTIONS(1617), - [anon_sym_DOLLARsizeof] = ACTIONS(1617), - [anon_sym_DOLLARstringify] = ACTIONS(1617), - [anon_sym_DOLLARappend] = ACTIONS(1617), - [anon_sym_DOLLARconcat] = ACTIONS(1617), - [anon_sym_DOLLARdefined] = ACTIONS(1617), - [anon_sym_DOLLARembed] = ACTIONS(1617), - [anon_sym_DOLLARand] = ACTIONS(1617), - [anon_sym_DOLLARor] = ACTIONS(1617), - [anon_sym_DOLLARfeature] = ACTIONS(1617), - [anon_sym_DOLLARassignable] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_TILDE] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1619), - [anon_sym_DASH_DASH] = ACTIONS(1619), - [anon_sym_typeid] = ACTIONS(1617), - [anon_sym_LBRACE_PIPE] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_char] = ACTIONS(1617), - [anon_sym_ichar] = ACTIONS(1617), - [anon_sym_short] = ACTIONS(1617), - [anon_sym_ushort] = ACTIONS(1617), - [anon_sym_uint] = ACTIONS(1617), - [anon_sym_long] = ACTIONS(1617), - [anon_sym_ulong] = ACTIONS(1617), - [anon_sym_int128] = ACTIONS(1617), - [anon_sym_uint128] = ACTIONS(1617), - [anon_sym_float] = ACTIONS(1617), - [anon_sym_double] = ACTIONS(1617), - [anon_sym_float16] = ACTIONS(1617), - [anon_sym_bfloat16] = ACTIONS(1617), - [anon_sym_float128] = ACTIONS(1617), - [anon_sym_iptr] = ACTIONS(1617), - [anon_sym_uptr] = ACTIONS(1617), - [anon_sym_isz] = ACTIONS(1617), - [anon_sym_usz] = ACTIONS(1617), - [anon_sym_anyfault] = ACTIONS(1617), - [anon_sym_any] = ACTIONS(1617), - [anon_sym_DOLLARtypeof] = ACTIONS(1617), - [anon_sym_DOLLARtypefrom] = ACTIONS(1617), - [anon_sym_DOLLARevaltype] = ACTIONS(1617), - [anon_sym_DOLLARvatype] = ACTIONS(1617), - [sym_real_literal] = ACTIONS(1619), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARcase] = ACTIONS(1629), + [anon_sym_DOLLARdefault] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARendswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, - [528] = { - [sym_line_comment] = STATE(528), - [sym_doc_comment] = STATE(528), - [sym_block_comment] = STATE(528), - [sym_ident] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_bytes_literal] = ACTIONS(1429), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1427), - [sym_at_ident] = ACTIONS(1429), - [sym_hash_ident] = ACTIONS(1429), - [sym_type_ident] = ACTIONS(1429), - [sym_ct_type_ident] = ACTIONS(1429), - [sym_const_ident] = ACTIONS(1427), - [sym_builtin] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_tlocal] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_var] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_defer] = ACTIONS(1427), - [anon_sym_assert] = ACTIONS(1427), - [anon_sym_nextcase] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_foreach] = ACTIONS(1427), - [anon_sym_foreach_r] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_int] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1427), - [anon_sym_DOLLARassert] = ACTIONS(1427), - [anon_sym_DOLLARerror] = ACTIONS(1427), - [anon_sym_DOLLARecho] = ACTIONS(1427), - [anon_sym_DOLLARif] = ACTIONS(1427), - [anon_sym_DOLLARendif] = ACTIONS(1427), - [anon_sym_DOLLARelse] = ACTIONS(1427), - [anon_sym_DOLLARswitch] = ACTIONS(1427), - [anon_sym_DOLLARfor] = ACTIONS(1427), - [anon_sym_DOLLARforeach] = ACTIONS(1427), - [anon_sym_DOLLARalignof] = ACTIONS(1427), - [anon_sym_DOLLARextnameof] = ACTIONS(1427), - [anon_sym_DOLLARnameof] = ACTIONS(1427), - [anon_sym_DOLLARoffsetof] = ACTIONS(1427), - [anon_sym_DOLLARqnameof] = ACTIONS(1427), - [anon_sym_DOLLARvaconst] = ACTIONS(1427), - [anon_sym_DOLLARvaarg] = ACTIONS(1427), - [anon_sym_DOLLARvaref] = ACTIONS(1427), - [anon_sym_DOLLARvaexpr] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [anon_sym_DOLLARvacount] = ACTIONS(1427), - [anon_sym_DOLLAReval] = ACTIONS(1427), - [anon_sym_DOLLARis_const] = ACTIONS(1427), - [anon_sym_DOLLARsizeof] = ACTIONS(1427), - [anon_sym_DOLLARstringify] = ACTIONS(1427), - [anon_sym_DOLLARappend] = ACTIONS(1427), - [anon_sym_DOLLARconcat] = ACTIONS(1427), - [anon_sym_DOLLARdefined] = ACTIONS(1427), - [anon_sym_DOLLARembed] = ACTIONS(1427), - [anon_sym_DOLLARand] = ACTIONS(1427), - [anon_sym_DOLLARor] = ACTIONS(1427), - [anon_sym_DOLLARfeature] = ACTIONS(1427), - [anon_sym_DOLLARassignable] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_typeid] = ACTIONS(1427), - [anon_sym_LBRACE_PIPE] = ACTIONS(1429), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_bool] = ACTIONS(1427), - [anon_sym_char] = ACTIONS(1427), - [anon_sym_ichar] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [anon_sym_ushort] = ACTIONS(1427), - [anon_sym_uint] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_ulong] = ACTIONS(1427), - [anon_sym_int128] = ACTIONS(1427), - [anon_sym_uint128] = ACTIONS(1427), - [anon_sym_float] = ACTIONS(1427), - [anon_sym_double] = ACTIONS(1427), - [anon_sym_float16] = ACTIONS(1427), - [anon_sym_bfloat16] = ACTIONS(1427), - [anon_sym_float128] = ACTIONS(1427), - [anon_sym_iptr] = ACTIONS(1427), - [anon_sym_uptr] = ACTIONS(1427), - [anon_sym_isz] = ACTIONS(1427), - [anon_sym_usz] = ACTIONS(1427), - [anon_sym_anyfault] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_DOLLARtypeof] = ACTIONS(1427), - [anon_sym_DOLLARtypefrom] = ACTIONS(1427), - [anon_sym_DOLLARevaltype] = ACTIONS(1427), - [anon_sym_DOLLARvatype] = ACTIONS(1427), - [sym_real_literal] = ACTIONS(1429), + [462] = { + [sym_line_comment] = STATE(462), + [sym_doc_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [sym_else_part] = STATE(766), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARendif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, - [529] = { - [sym_line_comment] = STATE(529), - [sym_doc_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [463] = { + [sym_line_comment] = STATE(463), + [sym_doc_comment] = STATE(463), + [sym_block_comment] = STATE(463), [sym_ident] = ACTIONS(1189), [sym_integer_literal] = ACTIONS(1191), [anon_sym_SQUOTE] = ACTIONS(1191), @@ -86486,9 +78715,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1189), [anon_sym_DOLLARecho] = ACTIONS(1189), [anon_sym_DOLLARif] = ACTIONS(1189), - [anon_sym_DOLLARendif] = ACTIONS(1189), - [anon_sym_DOLLARelse] = ACTIONS(1189), + [anon_sym_DOLLARcase] = ACTIONS(1189), + [anon_sym_DOLLARdefault] = ACTIONS(1189), [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARendswitch] = ACTIONS(1189), [anon_sym_DOLLARfor] = ACTIONS(1189), [anon_sym_DOLLARforeach] = ACTIONS(1189), [anon_sym_DOLLARalignof] = ACTIONS(1189), @@ -86550,242 +78780,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1189), [sym_real_literal] = ACTIONS(1191), }, - [530] = { - [sym_line_comment] = STATE(530), - [sym_doc_comment] = STATE(530), - [sym_block_comment] = STATE(530), - [sym_ident] = ACTIONS(1387), - [sym_integer_literal] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [anon_sym_BQUOTE] = ACTIONS(1389), - [sym_bytes_literal] = ACTIONS(1389), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1387), - [sym_at_ident] = ACTIONS(1389), - [sym_hash_ident] = ACTIONS(1389), - [sym_type_ident] = ACTIONS(1389), - [sym_ct_type_ident] = ACTIONS(1389), - [sym_const_ident] = ACTIONS(1387), - [sym_builtin] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_tlocal] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_var] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_defer] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_nextcase] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_foreach] = ACTIONS(1387), - [anon_sym_foreach_r] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_int] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym_DOLLARassert] = ACTIONS(1387), - [anon_sym_DOLLARerror] = ACTIONS(1387), - [anon_sym_DOLLARecho] = ACTIONS(1387), - [anon_sym_DOLLARif] = ACTIONS(1387), - [anon_sym_DOLLARendif] = ACTIONS(1387), - [anon_sym_DOLLARelse] = ACTIONS(1387), - [anon_sym_DOLLARswitch] = ACTIONS(1387), - [anon_sym_DOLLARfor] = ACTIONS(1387), - [anon_sym_DOLLARforeach] = ACTIONS(1387), - [anon_sym_DOLLARalignof] = ACTIONS(1387), - [anon_sym_DOLLARextnameof] = ACTIONS(1387), - [anon_sym_DOLLARnameof] = ACTIONS(1387), - [anon_sym_DOLLARoffsetof] = ACTIONS(1387), - [anon_sym_DOLLARqnameof] = ACTIONS(1387), - [anon_sym_DOLLARvaconst] = ACTIONS(1387), - [anon_sym_DOLLARvaarg] = ACTIONS(1387), - [anon_sym_DOLLARvaref] = ACTIONS(1387), - [anon_sym_DOLLARvaexpr] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_null] = ACTIONS(1387), - [anon_sym_DOLLARvacount] = ACTIONS(1387), - [anon_sym_DOLLAReval] = ACTIONS(1387), - [anon_sym_DOLLARis_const] = ACTIONS(1387), - [anon_sym_DOLLARsizeof] = ACTIONS(1387), - [anon_sym_DOLLARstringify] = ACTIONS(1387), - [anon_sym_DOLLARappend] = ACTIONS(1387), - [anon_sym_DOLLARconcat] = ACTIONS(1387), - [anon_sym_DOLLARdefined] = ACTIONS(1387), - [anon_sym_DOLLARembed] = ACTIONS(1387), - [anon_sym_DOLLARand] = ACTIONS(1387), - [anon_sym_DOLLARor] = ACTIONS(1387), - [anon_sym_DOLLARfeature] = ACTIONS(1387), - [anon_sym_DOLLARassignable] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_typeid] = ACTIONS(1387), - [anon_sym_LBRACE_PIPE] = ACTIONS(1389), - [anon_sym_void] = ACTIONS(1387), - [anon_sym_bool] = ACTIONS(1387), - [anon_sym_char] = ACTIONS(1387), - [anon_sym_ichar] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_ushort] = ACTIONS(1387), - [anon_sym_uint] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_ulong] = ACTIONS(1387), - [anon_sym_int128] = ACTIONS(1387), - [anon_sym_uint128] = ACTIONS(1387), - [anon_sym_float] = ACTIONS(1387), - [anon_sym_double] = ACTIONS(1387), - [anon_sym_float16] = ACTIONS(1387), - [anon_sym_bfloat16] = ACTIONS(1387), - [anon_sym_float128] = ACTIONS(1387), - [anon_sym_iptr] = ACTIONS(1387), - [anon_sym_uptr] = ACTIONS(1387), - [anon_sym_isz] = ACTIONS(1387), - [anon_sym_usz] = ACTIONS(1387), - [anon_sym_anyfault] = ACTIONS(1387), - [anon_sym_any] = ACTIONS(1387), - [anon_sym_DOLLARtypeof] = ACTIONS(1387), - [anon_sym_DOLLARtypefrom] = ACTIONS(1387), - [anon_sym_DOLLARevaltype] = ACTIONS(1387), - [anon_sym_DOLLARvatype] = ACTIONS(1387), - [sym_real_literal] = ACTIONS(1389), - }, - [531] = { - [sym_line_comment] = STATE(531), - [sym_doc_comment] = STATE(531), - [sym_block_comment] = STATE(531), - [sym_ident] = ACTIONS(1613), - [sym_integer_literal] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [anon_sym_BQUOTE] = ACTIONS(1615), - [sym_bytes_literal] = ACTIONS(1615), + [464] = { + [sym_line_comment] = STATE(464), + [sym_doc_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1613), - [sym_at_ident] = ACTIONS(1615), - [sym_hash_ident] = ACTIONS(1615), - [sym_type_ident] = ACTIONS(1615), - [sym_ct_type_ident] = ACTIONS(1615), - [sym_const_ident] = ACTIONS(1613), - [sym_builtin] = ACTIONS(1615), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_static] = ACTIONS(1613), - [anon_sym_tlocal] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1615), - [anon_sym_fn] = ACTIONS(1613), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1613), - [anon_sym_var] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_defer] = ACTIONS(1613), - [anon_sym_assert] = ACTIONS(1613), - [anon_sym_nextcase] = ACTIONS(1613), - [anon_sym_switch] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_foreach] = ACTIONS(1613), - [anon_sym_foreach_r] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_do] = ACTIONS(1613), - [anon_sym_int] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_asm] = ACTIONS(1613), - [anon_sym_DOLLARassert] = ACTIONS(1613), - [anon_sym_DOLLARerror] = ACTIONS(1613), - [anon_sym_DOLLARecho] = ACTIONS(1613), - [anon_sym_DOLLARif] = ACTIONS(1613), - [anon_sym_DOLLARendif] = ACTIONS(1613), - [anon_sym_DOLLARelse] = ACTIONS(1613), - [anon_sym_DOLLARswitch] = ACTIONS(1613), - [anon_sym_DOLLARfor] = ACTIONS(1613), - [anon_sym_DOLLARforeach] = ACTIONS(1613), - [anon_sym_DOLLARalignof] = ACTIONS(1613), - [anon_sym_DOLLARextnameof] = ACTIONS(1613), - [anon_sym_DOLLARnameof] = ACTIONS(1613), - [anon_sym_DOLLARoffsetof] = ACTIONS(1613), - [anon_sym_DOLLARqnameof] = ACTIONS(1613), - [anon_sym_DOLLARvaconst] = ACTIONS(1613), - [anon_sym_DOLLARvaarg] = ACTIONS(1613), - [anon_sym_DOLLARvaref] = ACTIONS(1613), - [anon_sym_DOLLARvaexpr] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_null] = ACTIONS(1613), - [anon_sym_DOLLARvacount] = ACTIONS(1613), - [anon_sym_DOLLAReval] = ACTIONS(1613), - [anon_sym_DOLLARis_const] = ACTIONS(1613), - [anon_sym_DOLLARsizeof] = ACTIONS(1613), - [anon_sym_DOLLARstringify] = ACTIONS(1613), - [anon_sym_DOLLARappend] = ACTIONS(1613), - [anon_sym_DOLLARconcat] = ACTIONS(1613), - [anon_sym_DOLLARdefined] = ACTIONS(1613), - [anon_sym_DOLLARembed] = ACTIONS(1613), - [anon_sym_DOLLARand] = ACTIONS(1613), - [anon_sym_DOLLARor] = ACTIONS(1613), - [anon_sym_DOLLARfeature] = ACTIONS(1613), - [anon_sym_DOLLARassignable] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1615), - [anon_sym_TILDE] = ACTIONS(1615), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [anon_sym_typeid] = ACTIONS(1613), - [anon_sym_LBRACE_PIPE] = ACTIONS(1615), - [anon_sym_void] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_char] = ACTIONS(1613), - [anon_sym_ichar] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [anon_sym_ushort] = ACTIONS(1613), - [anon_sym_uint] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_ulong] = ACTIONS(1613), - [anon_sym_int128] = ACTIONS(1613), - [anon_sym_uint128] = ACTIONS(1613), - [anon_sym_float] = ACTIONS(1613), - [anon_sym_double] = ACTIONS(1613), - [anon_sym_float16] = ACTIONS(1613), - [anon_sym_bfloat16] = ACTIONS(1613), - [anon_sym_float128] = ACTIONS(1613), - [anon_sym_iptr] = ACTIONS(1613), - [anon_sym_uptr] = ACTIONS(1613), - [anon_sym_isz] = ACTIONS(1613), - [anon_sym_usz] = ACTIONS(1613), - [anon_sym_anyfault] = ACTIONS(1613), - [anon_sym_any] = ACTIONS(1613), - [anon_sym_DOLLARtypeof] = ACTIONS(1613), - [anon_sym_DOLLARtypefrom] = ACTIONS(1613), - [anon_sym_DOLLARevaltype] = ACTIONS(1613), - [anon_sym_DOLLARvatype] = ACTIONS(1613), - [sym_real_literal] = ACTIONS(1615), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARcase] = ACTIONS(1637), + [anon_sym_DOLLARdefault] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARendswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, - [532] = { - [sym_line_comment] = STATE(532), - [sym_doc_comment] = STATE(532), - [sym_block_comment] = STATE(532), + [465] = { + [sym_line_comment] = STATE(465), + [sym_doc_comment] = STATE(465), + [sym_block_comment] = STATE(465), [sym_ident] = ACTIONS(1641), [sym_integer_literal] = ACTIONS(1643), [anon_sym_SQUOTE] = ACTIONS(1643), @@ -86834,9 +78949,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1641), [anon_sym_DOLLARecho] = ACTIONS(1641), [anon_sym_DOLLARif] = ACTIONS(1641), - [anon_sym_DOLLARendif] = ACTIONS(1641), - [anon_sym_DOLLARelse] = ACTIONS(1641), + [anon_sym_DOLLARcase] = ACTIONS(1641), + [anon_sym_DOLLARdefault] = ACTIONS(1641), [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARendswitch] = ACTIONS(1641), [anon_sym_DOLLARfor] = ACTIONS(1641), [anon_sym_DOLLARforeach] = ACTIONS(1641), [anon_sym_DOLLARalignof] = ACTIONS(1641), @@ -86898,590 +79014,946 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1641), [sym_real_literal] = ACTIONS(1643), }, - [533] = { - [sym_line_comment] = STATE(533), - [sym_doc_comment] = STATE(533), - [sym_block_comment] = STATE(533), - [sym_ident] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [anon_sym_BQUOTE] = ACTIONS(1531), - [sym_bytes_literal] = ACTIONS(1531), + [466] = { + [sym_line_comment] = STATE(466), + [sym_doc_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARcase] = ACTIONS(1645), + [anon_sym_DOLLARdefault] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARendswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), + }, + [467] = { + [sym_line_comment] = STATE(467), + [sym_doc_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARcase] = ACTIONS(1377), + [anon_sym_DOLLARdefault] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARendswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), + }, + [468] = { + [sym_line_comment] = STATE(468), + [sym_doc_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARcase] = ACTIONS(1373), + [anon_sym_DOLLARdefault] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARendswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), + }, + [469] = { + [sym_line_comment] = STATE(469), + [sym_doc_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1529), - [sym_at_ident] = ACTIONS(1531), - [sym_hash_ident] = ACTIONS(1531), - [sym_type_ident] = ACTIONS(1531), - [sym_ct_type_ident] = ACTIONS(1531), - [sym_const_ident] = ACTIONS(1529), - [sym_builtin] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_tlocal] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_var] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_defer] = ACTIONS(1529), - [anon_sym_assert] = ACTIONS(1529), - [anon_sym_nextcase] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_foreach] = ACTIONS(1529), - [anon_sym_foreach_r] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_int] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_asm] = ACTIONS(1529), - [anon_sym_DOLLARassert] = ACTIONS(1529), - [anon_sym_DOLLARerror] = ACTIONS(1529), - [anon_sym_DOLLARecho] = ACTIONS(1529), - [anon_sym_DOLLARif] = ACTIONS(1529), - [anon_sym_DOLLARendif] = ACTIONS(1529), - [anon_sym_DOLLARelse] = ACTIONS(1529), - [anon_sym_DOLLARswitch] = ACTIONS(1529), - [anon_sym_DOLLARfor] = ACTIONS(1529), - [anon_sym_DOLLARforeach] = ACTIONS(1529), - [anon_sym_DOLLARalignof] = ACTIONS(1529), - [anon_sym_DOLLARextnameof] = ACTIONS(1529), - [anon_sym_DOLLARnameof] = ACTIONS(1529), - [anon_sym_DOLLARoffsetof] = ACTIONS(1529), - [anon_sym_DOLLARqnameof] = ACTIONS(1529), - [anon_sym_DOLLARvaconst] = ACTIONS(1529), - [anon_sym_DOLLARvaarg] = ACTIONS(1529), - [anon_sym_DOLLARvaref] = ACTIONS(1529), - [anon_sym_DOLLARvaexpr] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), - [anon_sym_null] = ACTIONS(1529), - [anon_sym_DOLLARvacount] = ACTIONS(1529), - [anon_sym_DOLLAReval] = ACTIONS(1529), - [anon_sym_DOLLARis_const] = ACTIONS(1529), - [anon_sym_DOLLARsizeof] = ACTIONS(1529), - [anon_sym_DOLLARstringify] = ACTIONS(1529), - [anon_sym_DOLLARappend] = ACTIONS(1529), - [anon_sym_DOLLARconcat] = ACTIONS(1529), - [anon_sym_DOLLARdefined] = ACTIONS(1529), - [anon_sym_DOLLARembed] = ACTIONS(1529), - [anon_sym_DOLLARand] = ACTIONS(1529), - [anon_sym_DOLLARor] = ACTIONS(1529), - [anon_sym_DOLLARfeature] = ACTIONS(1529), - [anon_sym_DOLLARassignable] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_typeid] = ACTIONS(1529), - [anon_sym_LBRACE_PIPE] = ACTIONS(1531), - [anon_sym_void] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_ichar] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [anon_sym_ushort] = ACTIONS(1529), - [anon_sym_uint] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_ulong] = ACTIONS(1529), - [anon_sym_int128] = ACTIONS(1529), - [anon_sym_uint128] = ACTIONS(1529), - [anon_sym_float] = ACTIONS(1529), - [anon_sym_double] = ACTIONS(1529), - [anon_sym_float16] = ACTIONS(1529), - [anon_sym_bfloat16] = ACTIONS(1529), - [anon_sym_float128] = ACTIONS(1529), - [anon_sym_iptr] = ACTIONS(1529), - [anon_sym_uptr] = ACTIONS(1529), - [anon_sym_isz] = ACTIONS(1529), - [anon_sym_usz] = ACTIONS(1529), - [anon_sym_anyfault] = ACTIONS(1529), - [anon_sym_any] = ACTIONS(1529), - [anon_sym_DOLLARtypeof] = ACTIONS(1529), - [anon_sym_DOLLARtypefrom] = ACTIONS(1529), - [anon_sym_DOLLARevaltype] = ACTIONS(1529), - [anon_sym_DOLLARvatype] = ACTIONS(1529), - [sym_real_literal] = ACTIONS(1531), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARcase] = ACTIONS(1521), + [anon_sym_DOLLARdefault] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARendswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, - [534] = { - [sym_line_comment] = STATE(534), - [sym_doc_comment] = STATE(534), - [sym_block_comment] = STATE(534), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARendif] = ACTIONS(1471), - [anon_sym_DOLLARelse] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARappend] = ACTIONS(1471), - [anon_sym_DOLLARconcat] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), + [470] = { + [sym_line_comment] = STATE(470), + [sym_doc_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARcase] = ACTIONS(1381), + [anon_sym_DOLLARdefault] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARendswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), }, - [535] = { - [sym_line_comment] = STATE(535), - [sym_doc_comment] = STATE(535), - [sym_block_comment] = STATE(535), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARendif] = ACTIONS(1499), - [anon_sym_DOLLARelse] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARappend] = ACTIONS(1499), - [anon_sym_DOLLARconcat] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), + [471] = { + [sym_line_comment] = STATE(471), + [sym_doc_comment] = STATE(471), + [sym_block_comment] = STATE(471), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARcase] = ACTIONS(1385), + [anon_sym_DOLLARdefault] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARendswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), }, - [536] = { - [sym_line_comment] = STATE(536), - [sym_doc_comment] = STATE(536), - [sym_block_comment] = STATE(536), - [sym_ident] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_BQUOTE] = ACTIONS(1449), - [sym_bytes_literal] = ACTIONS(1449), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1447), - [sym_at_ident] = ACTIONS(1449), - [sym_hash_ident] = ACTIONS(1449), - [sym_type_ident] = ACTIONS(1449), - [sym_ct_type_ident] = ACTIONS(1449), - [sym_const_ident] = ACTIONS(1447), - [sym_builtin] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_tlocal] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_var] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_defer] = ACTIONS(1447), - [anon_sym_assert] = ACTIONS(1447), - [anon_sym_nextcase] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_foreach] = ACTIONS(1447), - [anon_sym_foreach_r] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_int] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_asm] = ACTIONS(1447), - [anon_sym_DOLLARassert] = ACTIONS(1447), - [anon_sym_DOLLARerror] = ACTIONS(1447), - [anon_sym_DOLLARecho] = ACTIONS(1447), - [anon_sym_DOLLARif] = ACTIONS(1447), - [anon_sym_DOLLARendif] = ACTIONS(1447), - [anon_sym_DOLLARelse] = ACTIONS(1447), - [anon_sym_DOLLARswitch] = ACTIONS(1447), - [anon_sym_DOLLARfor] = ACTIONS(1447), - [anon_sym_DOLLARforeach] = ACTIONS(1447), - [anon_sym_DOLLARalignof] = ACTIONS(1447), - [anon_sym_DOLLARextnameof] = ACTIONS(1447), - [anon_sym_DOLLARnameof] = ACTIONS(1447), - [anon_sym_DOLLARoffsetof] = ACTIONS(1447), - [anon_sym_DOLLARqnameof] = ACTIONS(1447), - [anon_sym_DOLLARvaconst] = ACTIONS(1447), - [anon_sym_DOLLARvaarg] = ACTIONS(1447), - [anon_sym_DOLLARvaref] = ACTIONS(1447), - [anon_sym_DOLLARvaexpr] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_DOLLARvacount] = ACTIONS(1447), - [anon_sym_DOLLAReval] = ACTIONS(1447), - [anon_sym_DOLLARis_const] = ACTIONS(1447), - [anon_sym_DOLLARsizeof] = ACTIONS(1447), - [anon_sym_DOLLARstringify] = ACTIONS(1447), - [anon_sym_DOLLARappend] = ACTIONS(1447), - [anon_sym_DOLLARconcat] = ACTIONS(1447), - [anon_sym_DOLLARdefined] = ACTIONS(1447), - [anon_sym_DOLLARembed] = ACTIONS(1447), - [anon_sym_DOLLARand] = ACTIONS(1447), - [anon_sym_DOLLARor] = ACTIONS(1447), - [anon_sym_DOLLARfeature] = ACTIONS(1447), - [anon_sym_DOLLARassignable] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_typeid] = ACTIONS(1447), - [anon_sym_LBRACE_PIPE] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_ichar] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [anon_sym_ushort] = ACTIONS(1447), - [anon_sym_uint] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_ulong] = ACTIONS(1447), - [anon_sym_int128] = ACTIONS(1447), - [anon_sym_uint128] = ACTIONS(1447), - [anon_sym_float] = ACTIONS(1447), - [anon_sym_double] = ACTIONS(1447), - [anon_sym_float16] = ACTIONS(1447), - [anon_sym_bfloat16] = ACTIONS(1447), - [anon_sym_float128] = ACTIONS(1447), - [anon_sym_iptr] = ACTIONS(1447), - [anon_sym_uptr] = ACTIONS(1447), - [anon_sym_isz] = ACTIONS(1447), - [anon_sym_usz] = ACTIONS(1447), - [anon_sym_anyfault] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_DOLLARtypeof] = ACTIONS(1447), - [anon_sym_DOLLARtypefrom] = ACTIONS(1447), - [anon_sym_DOLLARevaltype] = ACTIONS(1447), - [anon_sym_DOLLARvatype] = ACTIONS(1447), - [sym_real_literal] = ACTIONS(1449), + [472] = { + [sym_line_comment] = STATE(472), + [sym_doc_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARcase] = ACTIONS(1357), + [anon_sym_DOLLARdefault] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARendswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, - [537] = { - [sym_line_comment] = STATE(537), - [sym_doc_comment] = STATE(537), - [sym_block_comment] = STATE(537), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARendif] = ACTIONS(1479), - [anon_sym_DOLLARelse] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARappend] = ACTIONS(1479), - [anon_sym_DOLLARconcat] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), + [473] = { + [sym_line_comment] = STATE(473), + [sym_doc_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym_ident] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [sym_bytes_literal] = ACTIONS(1391), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1389), + [sym_at_ident] = ACTIONS(1391), + [sym_hash_ident] = ACTIONS(1391), + [sym_type_ident] = ACTIONS(1391), + [sym_ct_type_ident] = ACTIONS(1391), + [sym_const_ident] = ACTIONS(1389), + [sym_builtin] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_tlocal] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_var] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_defer] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1389), + [anon_sym_nextcase] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_foreach] = ACTIONS(1389), + [anon_sym_foreach_r] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_int] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_DOLLARassert] = ACTIONS(1389), + [anon_sym_DOLLARerror] = ACTIONS(1389), + [anon_sym_DOLLARecho] = ACTIONS(1389), + [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARcase] = ACTIONS(1389), + [anon_sym_DOLLARdefault] = ACTIONS(1389), + [anon_sym_DOLLARswitch] = ACTIONS(1389), + [anon_sym_DOLLARendswitch] = ACTIONS(1389), + [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARforeach] = ACTIONS(1389), + [anon_sym_DOLLARalignof] = ACTIONS(1389), + [anon_sym_DOLLARextnameof] = ACTIONS(1389), + [anon_sym_DOLLARnameof] = ACTIONS(1389), + [anon_sym_DOLLARoffsetof] = ACTIONS(1389), + [anon_sym_DOLLARqnameof] = ACTIONS(1389), + [anon_sym_DOLLARvaconst] = ACTIONS(1389), + [anon_sym_DOLLARvaarg] = ACTIONS(1389), + [anon_sym_DOLLARvaref] = ACTIONS(1389), + [anon_sym_DOLLARvaexpr] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_DOLLARvacount] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), + [anon_sym_DOLLARand] = ACTIONS(1389), + [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLARassignable] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_typeid] = ACTIONS(1389), + [anon_sym_LBRACE_PIPE] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_ichar] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_ushort] = ACTIONS(1389), + [anon_sym_uint] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_ulong] = ACTIONS(1389), + [anon_sym_int128] = ACTIONS(1389), + [anon_sym_uint128] = ACTIONS(1389), + [anon_sym_float] = ACTIONS(1389), + [anon_sym_double] = ACTIONS(1389), + [anon_sym_float16] = ACTIONS(1389), + [anon_sym_bfloat16] = ACTIONS(1389), + [anon_sym_float128] = ACTIONS(1389), + [anon_sym_iptr] = ACTIONS(1389), + [anon_sym_uptr] = ACTIONS(1389), + [anon_sym_isz] = ACTIONS(1389), + [anon_sym_usz] = ACTIONS(1389), + [anon_sym_anyfault] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_DOLLARtypeof] = ACTIONS(1389), + [anon_sym_DOLLARtypefrom] = ACTIONS(1389), + [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), + [sym_real_literal] = ACTIONS(1391), }, - [538] = { - [sym_line_comment] = STATE(538), - [sym_doc_comment] = STATE(538), - [sym_block_comment] = STATE(538), + [474] = { + [sym_line_comment] = STATE(474), + [sym_doc_comment] = STATE(474), + [sym_block_comment] = STATE(474), [sym_ident] = ACTIONS(1577), [sym_integer_literal] = ACTIONS(1579), [anon_sym_SQUOTE] = ACTIONS(1579), @@ -87501,2075 +79973,2677 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1579), [anon_sym_AMP] = ACTIONS(1577), [anon_sym_static] = ACTIONS(1577), - [anon_sym_tlocal] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_fn] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_var] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_defer] = ACTIONS(1577), - [anon_sym_assert] = ACTIONS(1577), - [anon_sym_nextcase] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_foreach] = ACTIONS(1577), - [anon_sym_foreach_r] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_int] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_asm] = ACTIONS(1577), - [anon_sym_DOLLARassert] = ACTIONS(1577), - [anon_sym_DOLLARerror] = ACTIONS(1577), - [anon_sym_DOLLARecho] = ACTIONS(1577), - [anon_sym_DOLLARif] = ACTIONS(1577), - [anon_sym_DOLLARendif] = ACTIONS(1577), - [anon_sym_DOLLARelse] = ACTIONS(1577), - [anon_sym_DOLLARswitch] = ACTIONS(1577), - [anon_sym_DOLLARfor] = ACTIONS(1577), - [anon_sym_DOLLARforeach] = ACTIONS(1577), - [anon_sym_DOLLARalignof] = ACTIONS(1577), - [anon_sym_DOLLARextnameof] = ACTIONS(1577), - [anon_sym_DOLLARnameof] = ACTIONS(1577), - [anon_sym_DOLLARoffsetof] = ACTIONS(1577), - [anon_sym_DOLLARqnameof] = ACTIONS(1577), - [anon_sym_DOLLARvaconst] = ACTIONS(1577), - [anon_sym_DOLLARvaarg] = ACTIONS(1577), - [anon_sym_DOLLARvaref] = ACTIONS(1577), - [anon_sym_DOLLARvaexpr] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [anon_sym_null] = ACTIONS(1577), - [anon_sym_DOLLARvacount] = ACTIONS(1577), - [anon_sym_DOLLAReval] = ACTIONS(1577), - [anon_sym_DOLLARis_const] = ACTIONS(1577), - [anon_sym_DOLLARsizeof] = ACTIONS(1577), - [anon_sym_DOLLARstringify] = ACTIONS(1577), - [anon_sym_DOLLARappend] = ACTIONS(1577), - [anon_sym_DOLLARconcat] = ACTIONS(1577), - [anon_sym_DOLLARdefined] = ACTIONS(1577), - [anon_sym_DOLLARembed] = ACTIONS(1577), - [anon_sym_DOLLARand] = ACTIONS(1577), - [anon_sym_DOLLARor] = ACTIONS(1577), - [anon_sym_DOLLARfeature] = ACTIONS(1577), - [anon_sym_DOLLARassignable] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_typeid] = ACTIONS(1577), - [anon_sym_LBRACE_PIPE] = ACTIONS(1579), - [anon_sym_void] = ACTIONS(1577), - [anon_sym_bool] = ACTIONS(1577), - [anon_sym_char] = ACTIONS(1577), - [anon_sym_ichar] = ACTIONS(1577), - [anon_sym_short] = ACTIONS(1577), - [anon_sym_ushort] = ACTIONS(1577), - [anon_sym_uint] = ACTIONS(1577), - [anon_sym_long] = ACTIONS(1577), - [anon_sym_ulong] = ACTIONS(1577), - [anon_sym_int128] = ACTIONS(1577), - [anon_sym_uint128] = ACTIONS(1577), - [anon_sym_float] = ACTIONS(1577), - [anon_sym_double] = ACTIONS(1577), - [anon_sym_float16] = ACTIONS(1577), - [anon_sym_bfloat16] = ACTIONS(1577), - [anon_sym_float128] = ACTIONS(1577), - [anon_sym_iptr] = ACTIONS(1577), - [anon_sym_uptr] = ACTIONS(1577), - [anon_sym_isz] = ACTIONS(1577), - [anon_sym_usz] = ACTIONS(1577), - [anon_sym_anyfault] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_DOLLARtypeof] = ACTIONS(1577), - [anon_sym_DOLLARtypefrom] = ACTIONS(1577), - [anon_sym_DOLLARevaltype] = ACTIONS(1577), - [anon_sym_DOLLARvatype] = ACTIONS(1577), - [sym_real_literal] = ACTIONS(1579), - }, - [539] = { - [sym_line_comment] = STATE(539), - [sym_doc_comment] = STATE(539), - [sym_block_comment] = STATE(539), - [sym_ident] = ACTIONS(1637), - [sym_integer_literal] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [anon_sym_BQUOTE] = ACTIONS(1639), - [sym_bytes_literal] = ACTIONS(1639), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1637), - [sym_at_ident] = ACTIONS(1639), - [sym_hash_ident] = ACTIONS(1639), - [sym_type_ident] = ACTIONS(1639), - [sym_ct_type_ident] = ACTIONS(1639), - [sym_const_ident] = ACTIONS(1637), - [sym_builtin] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_tlocal] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_fn] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_var] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_defer] = ACTIONS(1637), - [anon_sym_assert] = ACTIONS(1637), - [anon_sym_nextcase] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_foreach] = ACTIONS(1637), - [anon_sym_foreach_r] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_int] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_asm] = ACTIONS(1637), - [anon_sym_DOLLARassert] = ACTIONS(1637), - [anon_sym_DOLLARerror] = ACTIONS(1637), - [anon_sym_DOLLARecho] = ACTIONS(1637), - [anon_sym_DOLLARif] = ACTIONS(1637), - [anon_sym_DOLLARendif] = ACTIONS(1637), - [anon_sym_DOLLARelse] = ACTIONS(1637), - [anon_sym_DOLLARswitch] = ACTIONS(1637), - [anon_sym_DOLLARfor] = ACTIONS(1637), - [anon_sym_DOLLARforeach] = ACTIONS(1637), - [anon_sym_DOLLARalignof] = ACTIONS(1637), - [anon_sym_DOLLARextnameof] = ACTIONS(1637), - [anon_sym_DOLLARnameof] = ACTIONS(1637), - [anon_sym_DOLLARoffsetof] = ACTIONS(1637), - [anon_sym_DOLLARqnameof] = ACTIONS(1637), - [anon_sym_DOLLARvaconst] = ACTIONS(1637), - [anon_sym_DOLLARvaarg] = ACTIONS(1637), - [anon_sym_DOLLARvaref] = ACTIONS(1637), - [anon_sym_DOLLARvaexpr] = ACTIONS(1637), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [anon_sym_null] = ACTIONS(1637), - [anon_sym_DOLLARvacount] = ACTIONS(1637), - [anon_sym_DOLLAReval] = ACTIONS(1637), - [anon_sym_DOLLARis_const] = ACTIONS(1637), - [anon_sym_DOLLARsizeof] = ACTIONS(1637), - [anon_sym_DOLLARstringify] = ACTIONS(1637), - [anon_sym_DOLLARappend] = ACTIONS(1637), - [anon_sym_DOLLARconcat] = ACTIONS(1637), - [anon_sym_DOLLARdefined] = ACTIONS(1637), - [anon_sym_DOLLARembed] = ACTIONS(1637), - [anon_sym_DOLLARand] = ACTIONS(1637), - [anon_sym_DOLLARor] = ACTIONS(1637), - [anon_sym_DOLLARfeature] = ACTIONS(1637), - [anon_sym_DOLLARassignable] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_typeid] = ACTIONS(1637), - [anon_sym_LBRACE_PIPE] = ACTIONS(1639), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_char] = ACTIONS(1637), - [anon_sym_ichar] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [anon_sym_ushort] = ACTIONS(1637), - [anon_sym_uint] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_ulong] = ACTIONS(1637), - [anon_sym_int128] = ACTIONS(1637), - [anon_sym_uint128] = ACTIONS(1637), - [anon_sym_float] = ACTIONS(1637), - [anon_sym_double] = ACTIONS(1637), - [anon_sym_float16] = ACTIONS(1637), - [anon_sym_bfloat16] = ACTIONS(1637), - [anon_sym_float128] = ACTIONS(1637), - [anon_sym_iptr] = ACTIONS(1637), - [anon_sym_uptr] = ACTIONS(1637), - [anon_sym_isz] = ACTIONS(1637), - [anon_sym_usz] = ACTIONS(1637), - [anon_sym_anyfault] = ACTIONS(1637), - [anon_sym_any] = ACTIONS(1637), - [anon_sym_DOLLARtypeof] = ACTIONS(1637), - [anon_sym_DOLLARtypefrom] = ACTIONS(1637), - [anon_sym_DOLLARevaltype] = ACTIONS(1637), - [anon_sym_DOLLARvatype] = ACTIONS(1637), - [sym_real_literal] = ACTIONS(1639), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARcase] = ACTIONS(1577), + [anon_sym_DOLLARdefault] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARendswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, - [540] = { - [sym_line_comment] = STATE(540), - [sym_doc_comment] = STATE(540), - [sym_block_comment] = STATE(540), - [sym_ident] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1371), - [sym_bytes_literal] = ACTIONS(1371), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1369), - [sym_at_ident] = ACTIONS(1371), - [sym_hash_ident] = ACTIONS(1371), - [sym_type_ident] = ACTIONS(1371), - [sym_ct_type_ident] = ACTIONS(1371), - [sym_const_ident] = ACTIONS(1369), - [sym_builtin] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_tlocal] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_fn] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_var] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_assert] = ACTIONS(1369), - [anon_sym_nextcase] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_foreach] = ACTIONS(1369), - [anon_sym_foreach_r] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym_DOLLARassert] = ACTIONS(1369), - [anon_sym_DOLLARerror] = ACTIONS(1369), - [anon_sym_DOLLARecho] = ACTIONS(1369), - [anon_sym_DOLLARif] = ACTIONS(1369), - [anon_sym_DOLLARswitch] = ACTIONS(1369), - [anon_sym_DOLLARfor] = ACTIONS(1369), - [anon_sym_DOLLARendfor] = ACTIONS(1369), - [anon_sym_DOLLARforeach] = ACTIONS(1369), - [anon_sym_DOLLARalignof] = ACTIONS(1369), - [anon_sym_DOLLARextnameof] = ACTIONS(1369), - [anon_sym_DOLLARnameof] = ACTIONS(1369), - [anon_sym_DOLLARoffsetof] = ACTIONS(1369), - [anon_sym_DOLLARqnameof] = ACTIONS(1369), - [anon_sym_DOLLARvaconst] = ACTIONS(1369), - [anon_sym_DOLLARvaarg] = ACTIONS(1369), - [anon_sym_DOLLARvaref] = ACTIONS(1369), - [anon_sym_DOLLARvaexpr] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_DOLLARvacount] = ACTIONS(1369), - [anon_sym_DOLLAReval] = ACTIONS(1369), - [anon_sym_DOLLARis_const] = ACTIONS(1369), - [anon_sym_DOLLARsizeof] = ACTIONS(1369), - [anon_sym_DOLLARstringify] = ACTIONS(1369), - [anon_sym_DOLLARappend] = ACTIONS(1369), - [anon_sym_DOLLARconcat] = ACTIONS(1369), - [anon_sym_DOLLARdefined] = ACTIONS(1369), - [anon_sym_DOLLARembed] = ACTIONS(1369), - [anon_sym_DOLLARand] = ACTIONS(1369), - [anon_sym_DOLLARor] = ACTIONS(1369), - [anon_sym_DOLLARfeature] = ACTIONS(1369), - [anon_sym_DOLLARassignable] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_typeid] = ACTIONS(1369), - [anon_sym_LBRACE_PIPE] = ACTIONS(1371), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_ichar] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_ushort] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_ulong] = ACTIONS(1369), - [anon_sym_int128] = ACTIONS(1369), - [anon_sym_uint128] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_double] = ACTIONS(1369), - [anon_sym_float16] = ACTIONS(1369), - [anon_sym_bfloat16] = ACTIONS(1369), - [anon_sym_float128] = ACTIONS(1369), - [anon_sym_iptr] = ACTIONS(1369), - [anon_sym_uptr] = ACTIONS(1369), - [anon_sym_isz] = ACTIONS(1369), - [anon_sym_usz] = ACTIONS(1369), - [anon_sym_anyfault] = ACTIONS(1369), - [anon_sym_any] = ACTIONS(1369), - [anon_sym_DOLLARtypeof] = ACTIONS(1369), - [anon_sym_DOLLARtypefrom] = ACTIONS(1369), - [anon_sym_DOLLARevaltype] = ACTIONS(1369), - [anon_sym_DOLLARvatype] = ACTIONS(1369), - [sym_real_literal] = ACTIONS(1371), + [475] = { + [sym_line_comment] = STATE(475), + [sym_doc_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARcase] = ACTIONS(1433), + [anon_sym_DOLLARdefault] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARendswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), }, - [541] = { - [sym_line_comment] = STATE(541), - [sym_doc_comment] = STATE(541), - [sym_block_comment] = STATE(541), - [sym_ident] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_bytes_literal] = ACTIONS(1595), + [476] = { + [sym_line_comment] = STATE(476), + [sym_doc_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1593), - [sym_at_ident] = ACTIONS(1595), - [sym_hash_ident] = ACTIONS(1595), - [sym_type_ident] = ACTIONS(1595), - [sym_ct_type_ident] = ACTIONS(1595), - [sym_const_ident] = ACTIONS(1593), - [sym_builtin] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_tlocal] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_fn] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_var] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_defer] = ACTIONS(1593), - [anon_sym_assert] = ACTIONS(1593), - [anon_sym_nextcase] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_foreach] = ACTIONS(1593), - [anon_sym_foreach_r] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_asm] = ACTIONS(1593), - [anon_sym_DOLLARassert] = ACTIONS(1593), - [anon_sym_DOLLARerror] = ACTIONS(1593), - [anon_sym_DOLLARecho] = ACTIONS(1593), - [anon_sym_DOLLARif] = ACTIONS(1593), - [anon_sym_DOLLARendif] = ACTIONS(1593), - [anon_sym_DOLLARelse] = ACTIONS(1593), - [anon_sym_DOLLARswitch] = ACTIONS(1593), - [anon_sym_DOLLARfor] = ACTIONS(1593), - [anon_sym_DOLLARforeach] = ACTIONS(1593), - [anon_sym_DOLLARalignof] = ACTIONS(1593), - [anon_sym_DOLLARextnameof] = ACTIONS(1593), - [anon_sym_DOLLARnameof] = ACTIONS(1593), - [anon_sym_DOLLARoffsetof] = ACTIONS(1593), - [anon_sym_DOLLARqnameof] = ACTIONS(1593), - [anon_sym_DOLLARvaconst] = ACTIONS(1593), - [anon_sym_DOLLARvaarg] = ACTIONS(1593), - [anon_sym_DOLLARvaref] = ACTIONS(1593), - [anon_sym_DOLLARvaexpr] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_null] = ACTIONS(1593), - [anon_sym_DOLLARvacount] = ACTIONS(1593), - [anon_sym_DOLLAReval] = ACTIONS(1593), - [anon_sym_DOLLARis_const] = ACTIONS(1593), - [anon_sym_DOLLARsizeof] = ACTIONS(1593), - [anon_sym_DOLLARstringify] = ACTIONS(1593), - [anon_sym_DOLLARappend] = ACTIONS(1593), - [anon_sym_DOLLARconcat] = ACTIONS(1593), - [anon_sym_DOLLARdefined] = ACTIONS(1593), - [anon_sym_DOLLARembed] = ACTIONS(1593), - [anon_sym_DOLLARand] = ACTIONS(1593), - [anon_sym_DOLLARor] = ACTIONS(1593), - [anon_sym_DOLLARfeature] = ACTIONS(1593), - [anon_sym_DOLLARassignable] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_typeid] = ACTIONS(1593), - [anon_sym_LBRACE_PIPE] = ACTIONS(1595), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_ichar] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [anon_sym_ushort] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_ulong] = ACTIONS(1593), - [anon_sym_int128] = ACTIONS(1593), - [anon_sym_uint128] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_double] = ACTIONS(1593), - [anon_sym_float16] = ACTIONS(1593), - [anon_sym_bfloat16] = ACTIONS(1593), - [anon_sym_float128] = ACTIONS(1593), - [anon_sym_iptr] = ACTIONS(1593), - [anon_sym_uptr] = ACTIONS(1593), - [anon_sym_isz] = ACTIONS(1593), - [anon_sym_usz] = ACTIONS(1593), - [anon_sym_anyfault] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_DOLLARtypeof] = ACTIONS(1593), - [anon_sym_DOLLARtypefrom] = ACTIONS(1593), - [anon_sym_DOLLARevaltype] = ACTIONS(1593), - [anon_sym_DOLLARvatype] = ACTIONS(1593), - [sym_real_literal] = ACTIONS(1595), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARcase] = ACTIONS(1529), + [anon_sym_DOLLARdefault] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARendswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, - [542] = { - [sym_line_comment] = STATE(542), - [sym_doc_comment] = STATE(542), - [sym_block_comment] = STATE(542), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARendif] = ACTIONS(1467), - [anon_sym_DOLLARelse] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARappend] = ACTIONS(1467), - [anon_sym_DOLLARconcat] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), + [477] = { + [sym_line_comment] = STATE(477), + [sym_doc_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARcase] = ACTIONS(1393), + [anon_sym_DOLLARdefault] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARendswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), }, - [543] = { - [sym_line_comment] = STATE(543), - [sym_doc_comment] = STATE(543), - [sym_block_comment] = STATE(543), - [sym_ident] = ACTIONS(1601), - [sym_integer_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [anon_sym_BQUOTE] = ACTIONS(1603), - [sym_bytes_literal] = ACTIONS(1603), + [478] = { + [sym_line_comment] = STATE(478), + [sym_doc_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARcase] = ACTIONS(1437), + [anon_sym_DOLLARdefault] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARendswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), + }, + [479] = { + [sym_line_comment] = STATE(479), + [sym_doc_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARcase] = ACTIONS(1397), + [anon_sym_DOLLARdefault] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARendswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), + }, + [480] = { + [sym_line_comment] = STATE(480), + [sym_doc_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [sym_ident] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_BQUOTE] = ACTIONS(1403), + [sym_bytes_literal] = ACTIONS(1403), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1401), + [sym_at_ident] = ACTIONS(1403), + [sym_hash_ident] = ACTIONS(1403), + [sym_type_ident] = ACTIONS(1403), + [sym_ct_type_ident] = ACTIONS(1403), + [sym_const_ident] = ACTIONS(1401), + [sym_builtin] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_tlocal] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_var] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_defer] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1401), + [anon_sym_nextcase] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_foreach] = ACTIONS(1401), + [anon_sym_foreach_r] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_int] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_DOLLARassert] = ACTIONS(1401), + [anon_sym_DOLLARerror] = ACTIONS(1401), + [anon_sym_DOLLARecho] = ACTIONS(1401), + [anon_sym_DOLLARif] = ACTIONS(1401), + [anon_sym_DOLLARcase] = ACTIONS(1401), + [anon_sym_DOLLARdefault] = ACTIONS(1401), + [anon_sym_DOLLARswitch] = ACTIONS(1401), + [anon_sym_DOLLARendswitch] = ACTIONS(1401), + [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARforeach] = ACTIONS(1401), + [anon_sym_DOLLARalignof] = ACTIONS(1401), + [anon_sym_DOLLARextnameof] = ACTIONS(1401), + [anon_sym_DOLLARnameof] = ACTIONS(1401), + [anon_sym_DOLLARoffsetof] = ACTIONS(1401), + [anon_sym_DOLLARqnameof] = ACTIONS(1401), + [anon_sym_DOLLARvaconst] = ACTIONS(1401), + [anon_sym_DOLLARvaarg] = ACTIONS(1401), + [anon_sym_DOLLARvaref] = ACTIONS(1401), + [anon_sym_DOLLARvaexpr] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1401), + [anon_sym_DOLLARvacount] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), + [anon_sym_DOLLARand] = ACTIONS(1401), + [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLARassignable] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), + [anon_sym_typeid] = ACTIONS(1401), + [anon_sym_LBRACE_PIPE] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_ichar] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), + }, + [481] = { + [sym_line_comment] = STATE(481), + [sym_doc_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARcase] = ACTIONS(1405), + [anon_sym_DOLLARdefault] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARendswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), + }, + [482] = { + [sym_line_comment] = STATE(482), + [sym_doc_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARcase] = ACTIONS(1409), + [anon_sym_DOLLARdefault] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARendswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), + }, + [483] = { + [sym_line_comment] = STATE(483), + [sym_doc_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1601), - [sym_at_ident] = ACTIONS(1603), - [sym_hash_ident] = ACTIONS(1603), - [sym_type_ident] = ACTIONS(1603), - [sym_ct_type_ident] = ACTIONS(1603), - [sym_const_ident] = ACTIONS(1601), - [sym_builtin] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_tlocal] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_fn] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_var] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_defer] = ACTIONS(1601), - [anon_sym_assert] = ACTIONS(1601), - [anon_sym_nextcase] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_AMP_AMP] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_foreach] = ACTIONS(1601), - [anon_sym_foreach_r] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_int] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1601), - [anon_sym_DOLLARassert] = ACTIONS(1601), - [anon_sym_DOLLARerror] = ACTIONS(1601), - [anon_sym_DOLLARecho] = ACTIONS(1601), - [anon_sym_DOLLARif] = ACTIONS(1601), - [anon_sym_DOLLARendif] = ACTIONS(1601), - [anon_sym_DOLLARelse] = ACTIONS(1601), - [anon_sym_DOLLARswitch] = ACTIONS(1601), - [anon_sym_DOLLARfor] = ACTIONS(1601), - [anon_sym_DOLLARforeach] = ACTIONS(1601), - [anon_sym_DOLLARalignof] = ACTIONS(1601), - [anon_sym_DOLLARextnameof] = ACTIONS(1601), - [anon_sym_DOLLARnameof] = ACTIONS(1601), - [anon_sym_DOLLARoffsetof] = ACTIONS(1601), - [anon_sym_DOLLARqnameof] = ACTIONS(1601), - [anon_sym_DOLLARvaconst] = ACTIONS(1601), - [anon_sym_DOLLARvaarg] = ACTIONS(1601), - [anon_sym_DOLLARvaref] = ACTIONS(1601), - [anon_sym_DOLLARvaexpr] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1601), - [anon_sym_false] = ACTIONS(1601), - [anon_sym_null] = ACTIONS(1601), - [anon_sym_DOLLARvacount] = ACTIONS(1601), - [anon_sym_DOLLAReval] = ACTIONS(1601), - [anon_sym_DOLLARis_const] = ACTIONS(1601), - [anon_sym_DOLLARsizeof] = ACTIONS(1601), - [anon_sym_DOLLARstringify] = ACTIONS(1601), - [anon_sym_DOLLARappend] = ACTIONS(1601), - [anon_sym_DOLLARconcat] = ACTIONS(1601), - [anon_sym_DOLLARdefined] = ACTIONS(1601), - [anon_sym_DOLLARembed] = ACTIONS(1601), - [anon_sym_DOLLARand] = ACTIONS(1601), - [anon_sym_DOLLARor] = ACTIONS(1601), - [anon_sym_DOLLARfeature] = ACTIONS(1601), - [anon_sym_DOLLARassignable] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_typeid] = ACTIONS(1601), - [anon_sym_LBRACE_PIPE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_char] = ACTIONS(1601), - [anon_sym_ichar] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [anon_sym_ushort] = ACTIONS(1601), - [anon_sym_uint] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_ulong] = ACTIONS(1601), - [anon_sym_int128] = ACTIONS(1601), - [anon_sym_uint128] = ACTIONS(1601), - [anon_sym_float] = ACTIONS(1601), - [anon_sym_double] = ACTIONS(1601), - [anon_sym_float16] = ACTIONS(1601), - [anon_sym_bfloat16] = ACTIONS(1601), - [anon_sym_float128] = ACTIONS(1601), - [anon_sym_iptr] = ACTIONS(1601), - [anon_sym_uptr] = ACTIONS(1601), - [anon_sym_isz] = ACTIONS(1601), - [anon_sym_usz] = ACTIONS(1601), - [anon_sym_anyfault] = ACTIONS(1601), - [anon_sym_any] = ACTIONS(1601), - [anon_sym_DOLLARtypeof] = ACTIONS(1601), - [anon_sym_DOLLARtypefrom] = ACTIONS(1601), - [anon_sym_DOLLARevaltype] = ACTIONS(1601), - [anon_sym_DOLLARvatype] = ACTIONS(1601), - [sym_real_literal] = ACTIONS(1603), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARcase] = ACTIONS(1553), + [anon_sym_DOLLARdefault] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARendswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, - [544] = { - [sym_line_comment] = STATE(544), - [sym_doc_comment] = STATE(544), - [sym_block_comment] = STATE(544), - [sym_ident] = ACTIONS(1605), - [sym_integer_literal] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [anon_sym_BQUOTE] = ACTIONS(1607), - [sym_bytes_literal] = ACTIONS(1607), + [484] = { + [sym_line_comment] = STATE(484), + [sym_doc_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARcase] = ACTIONS(1465), + [anon_sym_DOLLARdefault] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARendswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), + }, + [485] = { + [sym_line_comment] = STATE(485), + [sym_doc_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARcase] = ACTIONS(1469), + [anon_sym_DOLLARdefault] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARendswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), + }, + [486] = { + [sym_line_comment] = STATE(486), + [sym_doc_comment] = STATE(486), + [sym_block_comment] = STATE(486), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARcase] = ACTIONS(1413), + [anon_sym_DOLLARdefault] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARendswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), + }, + [487] = { + [sym_line_comment] = STATE(487), + [sym_doc_comment] = STATE(487), + [sym_block_comment] = STATE(487), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1605), - [sym_at_ident] = ACTIONS(1607), - [sym_hash_ident] = ACTIONS(1607), - [sym_type_ident] = ACTIONS(1607), - [sym_ct_type_ident] = ACTIONS(1607), - [sym_const_ident] = ACTIONS(1605), - [sym_builtin] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_tlocal] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_fn] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_var] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_defer] = ACTIONS(1605), - [anon_sym_assert] = ACTIONS(1605), - [anon_sym_nextcase] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_foreach] = ACTIONS(1605), - [anon_sym_foreach_r] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_int] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_asm] = ACTIONS(1605), - [anon_sym_DOLLARassert] = ACTIONS(1605), - [anon_sym_DOLLARerror] = ACTIONS(1605), - [anon_sym_DOLLARecho] = ACTIONS(1605), - [anon_sym_DOLLARif] = ACTIONS(1605), - [anon_sym_DOLLARendif] = ACTIONS(1605), - [anon_sym_DOLLARelse] = ACTIONS(1605), - [anon_sym_DOLLARswitch] = ACTIONS(1605), - [anon_sym_DOLLARfor] = ACTIONS(1605), - [anon_sym_DOLLARforeach] = ACTIONS(1605), - [anon_sym_DOLLARalignof] = ACTIONS(1605), - [anon_sym_DOLLARextnameof] = ACTIONS(1605), - [anon_sym_DOLLARnameof] = ACTIONS(1605), - [anon_sym_DOLLARoffsetof] = ACTIONS(1605), - [anon_sym_DOLLARqnameof] = ACTIONS(1605), - [anon_sym_DOLLARvaconst] = ACTIONS(1605), - [anon_sym_DOLLARvaarg] = ACTIONS(1605), - [anon_sym_DOLLARvaref] = ACTIONS(1605), - [anon_sym_DOLLARvaexpr] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1605), - [anon_sym_false] = ACTIONS(1605), - [anon_sym_null] = ACTIONS(1605), - [anon_sym_DOLLARvacount] = ACTIONS(1605), - [anon_sym_DOLLAReval] = ACTIONS(1605), - [anon_sym_DOLLARis_const] = ACTIONS(1605), - [anon_sym_DOLLARsizeof] = ACTIONS(1605), - [anon_sym_DOLLARstringify] = ACTIONS(1605), - [anon_sym_DOLLARappend] = ACTIONS(1605), - [anon_sym_DOLLARconcat] = ACTIONS(1605), - [anon_sym_DOLLARdefined] = ACTIONS(1605), - [anon_sym_DOLLARembed] = ACTIONS(1605), - [anon_sym_DOLLARand] = ACTIONS(1605), - [anon_sym_DOLLARor] = ACTIONS(1605), - [anon_sym_DOLLARfeature] = ACTIONS(1605), - [anon_sym_DOLLARassignable] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_typeid] = ACTIONS(1605), - [anon_sym_LBRACE_PIPE] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_char] = ACTIONS(1605), - [anon_sym_ichar] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [anon_sym_ushort] = ACTIONS(1605), - [anon_sym_uint] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_ulong] = ACTIONS(1605), - [anon_sym_int128] = ACTIONS(1605), - [anon_sym_uint128] = ACTIONS(1605), - [anon_sym_float] = ACTIONS(1605), - [anon_sym_double] = ACTIONS(1605), - [anon_sym_float16] = ACTIONS(1605), - [anon_sym_bfloat16] = ACTIONS(1605), - [anon_sym_float128] = ACTIONS(1605), - [anon_sym_iptr] = ACTIONS(1605), - [anon_sym_uptr] = ACTIONS(1605), - [anon_sym_isz] = ACTIONS(1605), - [anon_sym_usz] = ACTIONS(1605), - [anon_sym_anyfault] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1605), - [anon_sym_DOLLARtypeof] = ACTIONS(1605), - [anon_sym_DOLLARtypefrom] = ACTIONS(1605), - [anon_sym_DOLLARevaltype] = ACTIONS(1605), - [anon_sym_DOLLARvatype] = ACTIONS(1605), - [sym_real_literal] = ACTIONS(1607), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARcase] = ACTIONS(1509), + [anon_sym_DOLLARdefault] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARendswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, - [545] = { - [sym_line_comment] = STATE(545), - [sym_doc_comment] = STATE(545), - [sym_block_comment] = STATE(545), - [sym_ident] = ACTIONS(1373), - [sym_integer_literal] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [anon_sym_BQUOTE] = ACTIONS(1375), - [sym_bytes_literal] = ACTIONS(1375), + [488] = { + [sym_line_comment] = STATE(488), + [sym_doc_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1373), - [sym_at_ident] = ACTIONS(1375), - [sym_hash_ident] = ACTIONS(1375), - [sym_type_ident] = ACTIONS(1375), - [sym_ct_type_ident] = ACTIONS(1375), - [sym_const_ident] = ACTIONS(1373), - [sym_builtin] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_tlocal] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_fn] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_var] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_defer] = ACTIONS(1373), - [anon_sym_assert] = ACTIONS(1373), - [anon_sym_nextcase] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_AMP_AMP] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_foreach] = ACTIONS(1373), - [anon_sym_foreach_r] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_int] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_asm] = ACTIONS(1373), - [anon_sym_DOLLARassert] = ACTIONS(1373), - [anon_sym_DOLLARerror] = ACTIONS(1373), - [anon_sym_DOLLARecho] = ACTIONS(1373), - [anon_sym_DOLLARif] = ACTIONS(1373), - [anon_sym_DOLLARswitch] = ACTIONS(1373), - [anon_sym_DOLLARfor] = ACTIONS(1373), - [anon_sym_DOLLARendfor] = ACTIONS(1373), - [anon_sym_DOLLARforeach] = ACTIONS(1373), - [anon_sym_DOLLARalignof] = ACTIONS(1373), - [anon_sym_DOLLARextnameof] = ACTIONS(1373), - [anon_sym_DOLLARnameof] = ACTIONS(1373), - [anon_sym_DOLLARoffsetof] = ACTIONS(1373), - [anon_sym_DOLLARqnameof] = ACTIONS(1373), - [anon_sym_DOLLARvaconst] = ACTIONS(1373), - [anon_sym_DOLLARvaarg] = ACTIONS(1373), - [anon_sym_DOLLARvaref] = ACTIONS(1373), - [anon_sym_DOLLARvaexpr] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), - [anon_sym_null] = ACTIONS(1373), - [anon_sym_DOLLARvacount] = ACTIONS(1373), - [anon_sym_DOLLAReval] = ACTIONS(1373), - [anon_sym_DOLLARis_const] = ACTIONS(1373), - [anon_sym_DOLLARsizeof] = ACTIONS(1373), - [anon_sym_DOLLARstringify] = ACTIONS(1373), - [anon_sym_DOLLARappend] = ACTIONS(1373), - [anon_sym_DOLLARconcat] = ACTIONS(1373), - [anon_sym_DOLLARdefined] = ACTIONS(1373), - [anon_sym_DOLLARembed] = ACTIONS(1373), - [anon_sym_DOLLARand] = ACTIONS(1373), - [anon_sym_DOLLARor] = ACTIONS(1373), - [anon_sym_DOLLARfeature] = ACTIONS(1373), - [anon_sym_DOLLARassignable] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_typeid] = ACTIONS(1373), - [anon_sym_LBRACE_PIPE] = ACTIONS(1375), - [anon_sym_void] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_ichar] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_ushort] = ACTIONS(1373), - [anon_sym_uint] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_ulong] = ACTIONS(1373), - [anon_sym_int128] = ACTIONS(1373), - [anon_sym_uint128] = ACTIONS(1373), - [anon_sym_float] = ACTIONS(1373), - [anon_sym_double] = ACTIONS(1373), - [anon_sym_float16] = ACTIONS(1373), - [anon_sym_bfloat16] = ACTIONS(1373), - [anon_sym_float128] = ACTIONS(1373), - [anon_sym_iptr] = ACTIONS(1373), - [anon_sym_uptr] = ACTIONS(1373), - [anon_sym_isz] = ACTIONS(1373), - [anon_sym_usz] = ACTIONS(1373), - [anon_sym_anyfault] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_DOLLARtypeof] = ACTIONS(1373), - [anon_sym_DOLLARtypefrom] = ACTIONS(1373), - [anon_sym_DOLLARevaltype] = ACTIONS(1373), - [anon_sym_DOLLARvatype] = ACTIONS(1373), - [sym_real_literal] = ACTIONS(1375), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARcase] = ACTIONS(1513), + [anon_sym_DOLLARdefault] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARendswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, - [546] = { - [sym_line_comment] = STATE(546), - [sym_doc_comment] = STATE(546), - [sym_block_comment] = STATE(546), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARendif] = ACTIONS(1495), - [anon_sym_DOLLARelse] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARappend] = ACTIONS(1495), - [anon_sym_DOLLARconcat] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), + [489] = { + [sym_line_comment] = STATE(489), + [sym_doc_comment] = STATE(489), + [sym_block_comment] = STATE(489), + [sym_ident] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_bytes_literal] = ACTIONS(1419), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1417), + [sym_at_ident] = ACTIONS(1419), + [sym_hash_ident] = ACTIONS(1419), + [sym_type_ident] = ACTIONS(1419), + [sym_ct_type_ident] = ACTIONS(1419), + [sym_const_ident] = ACTIONS(1417), + [sym_builtin] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_tlocal] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_var] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_defer] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_nextcase] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_foreach] = ACTIONS(1417), + [anon_sym_foreach_r] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_DOLLARassert] = ACTIONS(1417), + [anon_sym_DOLLARerror] = ACTIONS(1417), + [anon_sym_DOLLARecho] = ACTIONS(1417), + [anon_sym_DOLLARif] = ACTIONS(1417), + [anon_sym_DOLLARcase] = ACTIONS(1417), + [anon_sym_DOLLARdefault] = ACTIONS(1417), + [anon_sym_DOLLARswitch] = ACTIONS(1417), + [anon_sym_DOLLARendswitch] = ACTIONS(1417), + [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARforeach] = ACTIONS(1417), + [anon_sym_DOLLARalignof] = ACTIONS(1417), + [anon_sym_DOLLARextnameof] = ACTIONS(1417), + [anon_sym_DOLLARnameof] = ACTIONS(1417), + [anon_sym_DOLLARoffsetof] = ACTIONS(1417), + [anon_sym_DOLLARqnameof] = ACTIONS(1417), + [anon_sym_DOLLARvaconst] = ACTIONS(1417), + [anon_sym_DOLLARvaarg] = ACTIONS(1417), + [anon_sym_DOLLARvaref] = ACTIONS(1417), + [anon_sym_DOLLARvaexpr] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_DOLLARvacount] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), + [anon_sym_DOLLARand] = ACTIONS(1417), + [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLARassignable] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_typeid] = ACTIONS(1417), + [anon_sym_LBRACE_PIPE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_ichar] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_ushort] = ACTIONS(1417), + [anon_sym_uint] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_ulong] = ACTIONS(1417), + [anon_sym_int128] = ACTIONS(1417), + [anon_sym_uint128] = ACTIONS(1417), + [anon_sym_float] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_float16] = ACTIONS(1417), + [anon_sym_bfloat16] = ACTIONS(1417), + [anon_sym_float128] = ACTIONS(1417), + [anon_sym_iptr] = ACTIONS(1417), + [anon_sym_uptr] = ACTIONS(1417), + [anon_sym_isz] = ACTIONS(1417), + [anon_sym_usz] = ACTIONS(1417), + [anon_sym_anyfault] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_DOLLARtypeof] = ACTIONS(1417), + [anon_sym_DOLLARtypefrom] = ACTIONS(1417), + [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1419), }, - [547] = { - [sym_line_comment] = STATE(547), - [sym_doc_comment] = STATE(547), - [sym_block_comment] = STATE(547), - [sym_ident] = ACTIONS(1609), - [sym_integer_literal] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [anon_sym_BQUOTE] = ACTIONS(1611), - [sym_bytes_literal] = ACTIONS(1611), + [490] = { + [sym_line_comment] = STATE(490), + [sym_doc_comment] = STATE(490), + [sym_block_comment] = STATE(490), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARendif] = ACTIONS(1367), + [anon_sym_DOLLARelse] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), + }, + [491] = { + [sym_line_comment] = STATE(491), + [sym_doc_comment] = STATE(491), + [sym_block_comment] = STATE(491), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1609), - [sym_at_ident] = ACTIONS(1611), - [sym_hash_ident] = ACTIONS(1611), - [sym_type_ident] = ACTIONS(1611), - [sym_ct_type_ident] = ACTIONS(1611), - [sym_const_ident] = ACTIONS(1609), - [sym_builtin] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_tlocal] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_fn] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_var] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_defer] = ACTIONS(1609), - [anon_sym_assert] = ACTIONS(1609), - [anon_sym_nextcase] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_foreach] = ACTIONS(1609), - [anon_sym_foreach_r] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_asm] = ACTIONS(1609), - [anon_sym_DOLLARassert] = ACTIONS(1609), - [anon_sym_DOLLARerror] = ACTIONS(1609), - [anon_sym_DOLLARecho] = ACTIONS(1609), - [anon_sym_DOLLARif] = ACTIONS(1609), - [anon_sym_DOLLARendif] = ACTIONS(1609), - [anon_sym_DOLLARelse] = ACTIONS(1609), - [anon_sym_DOLLARswitch] = ACTIONS(1609), - [anon_sym_DOLLARfor] = ACTIONS(1609), - [anon_sym_DOLLARforeach] = ACTIONS(1609), - [anon_sym_DOLLARalignof] = ACTIONS(1609), - [anon_sym_DOLLARextnameof] = ACTIONS(1609), - [anon_sym_DOLLARnameof] = ACTIONS(1609), - [anon_sym_DOLLARoffsetof] = ACTIONS(1609), - [anon_sym_DOLLARqnameof] = ACTIONS(1609), - [anon_sym_DOLLARvaconst] = ACTIONS(1609), - [anon_sym_DOLLARvaarg] = ACTIONS(1609), - [anon_sym_DOLLARvaref] = ACTIONS(1609), - [anon_sym_DOLLARvaexpr] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_DOLLARvacount] = ACTIONS(1609), - [anon_sym_DOLLAReval] = ACTIONS(1609), - [anon_sym_DOLLARis_const] = ACTIONS(1609), - [anon_sym_DOLLARsizeof] = ACTIONS(1609), - [anon_sym_DOLLARstringify] = ACTIONS(1609), - [anon_sym_DOLLARappend] = ACTIONS(1609), - [anon_sym_DOLLARconcat] = ACTIONS(1609), - [anon_sym_DOLLARdefined] = ACTIONS(1609), - [anon_sym_DOLLARembed] = ACTIONS(1609), - [anon_sym_DOLLARand] = ACTIONS(1609), - [anon_sym_DOLLARor] = ACTIONS(1609), - [anon_sym_DOLLARfeature] = ACTIONS(1609), - [anon_sym_DOLLARassignable] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_typeid] = ACTIONS(1609), - [anon_sym_LBRACE_PIPE] = ACTIONS(1611), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_ichar] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [anon_sym_ushort] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_ulong] = ACTIONS(1609), - [anon_sym_int128] = ACTIONS(1609), - [anon_sym_uint128] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_double] = ACTIONS(1609), - [anon_sym_float16] = ACTIONS(1609), - [anon_sym_bfloat16] = ACTIONS(1609), - [anon_sym_float128] = ACTIONS(1609), - [anon_sym_iptr] = ACTIONS(1609), - [anon_sym_uptr] = ACTIONS(1609), - [anon_sym_isz] = ACTIONS(1609), - [anon_sym_usz] = ACTIONS(1609), - [anon_sym_anyfault] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1609), - [anon_sym_DOLLARtypeof] = ACTIONS(1609), - [anon_sym_DOLLARtypefrom] = ACTIONS(1609), - [anon_sym_DOLLARevaltype] = ACTIONS(1609), - [anon_sym_DOLLARvatype] = ACTIONS(1609), - [sym_real_literal] = ACTIONS(1611), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARcase] = ACTIONS(1585), + [anon_sym_DOLLARdefault] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARendswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, - [548] = { - [sym_line_comment] = STATE(548), - [sym_doc_comment] = STATE(548), - [sym_block_comment] = STATE(548), - [sym_ident] = ACTIONS(1625), - [sym_integer_literal] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [anon_sym_BQUOTE] = ACTIONS(1627), - [sym_bytes_literal] = ACTIONS(1627), + [492] = { + [sym_line_comment] = STATE(492), + [sym_doc_comment] = STATE(492), + [sym_block_comment] = STATE(492), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1625), - [sym_at_ident] = ACTIONS(1627), - [sym_hash_ident] = ACTIONS(1627), - [sym_type_ident] = ACTIONS(1627), - [sym_ct_type_ident] = ACTIONS(1627), - [sym_const_ident] = ACTIONS(1625), - [sym_builtin] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_tlocal] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_fn] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_var] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_defer] = ACTIONS(1625), - [anon_sym_assert] = ACTIONS(1625), - [anon_sym_nextcase] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_AMP_AMP] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_foreach] = ACTIONS(1625), - [anon_sym_foreach_r] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_int] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_asm] = ACTIONS(1625), - [anon_sym_DOLLARassert] = ACTIONS(1625), - [anon_sym_DOLLARerror] = ACTIONS(1625), - [anon_sym_DOLLARecho] = ACTIONS(1625), - [anon_sym_DOLLARif] = ACTIONS(1625), - [anon_sym_DOLLARendif] = ACTIONS(1625), - [anon_sym_DOLLARelse] = ACTIONS(1625), - [anon_sym_DOLLARswitch] = ACTIONS(1625), - [anon_sym_DOLLARfor] = ACTIONS(1625), - [anon_sym_DOLLARforeach] = ACTIONS(1625), - [anon_sym_DOLLARalignof] = ACTIONS(1625), - [anon_sym_DOLLARextnameof] = ACTIONS(1625), - [anon_sym_DOLLARnameof] = ACTIONS(1625), - [anon_sym_DOLLARoffsetof] = ACTIONS(1625), - [anon_sym_DOLLARqnameof] = ACTIONS(1625), - [anon_sym_DOLLARvaconst] = ACTIONS(1625), - [anon_sym_DOLLARvaarg] = ACTIONS(1625), - [anon_sym_DOLLARvaref] = ACTIONS(1625), - [anon_sym_DOLLARvaexpr] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [anon_sym_null] = ACTIONS(1625), - [anon_sym_DOLLARvacount] = ACTIONS(1625), - [anon_sym_DOLLAReval] = ACTIONS(1625), - [anon_sym_DOLLARis_const] = ACTIONS(1625), - [anon_sym_DOLLARsizeof] = ACTIONS(1625), - [anon_sym_DOLLARstringify] = ACTIONS(1625), - [anon_sym_DOLLARappend] = ACTIONS(1625), - [anon_sym_DOLLARconcat] = ACTIONS(1625), - [anon_sym_DOLLARdefined] = ACTIONS(1625), - [anon_sym_DOLLARembed] = ACTIONS(1625), - [anon_sym_DOLLARand] = ACTIONS(1625), - [anon_sym_DOLLARor] = ACTIONS(1625), - [anon_sym_DOLLARfeature] = ACTIONS(1625), - [anon_sym_DOLLARassignable] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_typeid] = ACTIONS(1625), - [anon_sym_LBRACE_PIPE] = ACTIONS(1627), - [anon_sym_void] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_char] = ACTIONS(1625), - [anon_sym_ichar] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [anon_sym_ushort] = ACTIONS(1625), - [anon_sym_uint] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_ulong] = ACTIONS(1625), - [anon_sym_int128] = ACTIONS(1625), - [anon_sym_uint128] = ACTIONS(1625), - [anon_sym_float] = ACTIONS(1625), - [anon_sym_double] = ACTIONS(1625), - [anon_sym_float16] = ACTIONS(1625), - [anon_sym_bfloat16] = ACTIONS(1625), - [anon_sym_float128] = ACTIONS(1625), - [anon_sym_iptr] = ACTIONS(1625), - [anon_sym_uptr] = ACTIONS(1625), - [anon_sym_isz] = ACTIONS(1625), - [anon_sym_usz] = ACTIONS(1625), - [anon_sym_anyfault] = ACTIONS(1625), - [anon_sym_any] = ACTIONS(1625), - [anon_sym_DOLLARtypeof] = ACTIONS(1625), - [anon_sym_DOLLARtypefrom] = ACTIONS(1625), - [anon_sym_DOLLARevaltype] = ACTIONS(1625), - [anon_sym_DOLLARvatype] = ACTIONS(1625), - [sym_real_literal] = ACTIONS(1627), - }, - [549] = { - [sym_line_comment] = STATE(549), - [sym_doc_comment] = STATE(549), - [sym_block_comment] = STATE(549), - [sym_ident] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1371), - [sym_bytes_literal] = ACTIONS(1371), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1369), - [sym_at_ident] = ACTIONS(1371), - [sym_hash_ident] = ACTIONS(1371), - [sym_type_ident] = ACTIONS(1371), - [sym_ct_type_ident] = ACTIONS(1371), - [sym_const_ident] = ACTIONS(1369), - [sym_builtin] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_tlocal] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_fn] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_var] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_assert] = ACTIONS(1369), - [anon_sym_nextcase] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_foreach] = ACTIONS(1369), - [anon_sym_foreach_r] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym_DOLLARassert] = ACTIONS(1369), - [anon_sym_DOLLARerror] = ACTIONS(1369), - [anon_sym_DOLLARecho] = ACTIONS(1369), - [anon_sym_DOLLARif] = ACTIONS(1369), - [anon_sym_DOLLARswitch] = ACTIONS(1369), - [anon_sym_DOLLARfor] = ACTIONS(1369), - [anon_sym_DOLLARforeach] = ACTIONS(1369), - [anon_sym_DOLLARendforeach] = ACTIONS(1369), - [anon_sym_DOLLARalignof] = ACTIONS(1369), - [anon_sym_DOLLARextnameof] = ACTIONS(1369), - [anon_sym_DOLLARnameof] = ACTIONS(1369), - [anon_sym_DOLLARoffsetof] = ACTIONS(1369), - [anon_sym_DOLLARqnameof] = ACTIONS(1369), - [anon_sym_DOLLARvaconst] = ACTIONS(1369), - [anon_sym_DOLLARvaarg] = ACTIONS(1369), - [anon_sym_DOLLARvaref] = ACTIONS(1369), - [anon_sym_DOLLARvaexpr] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_DOLLARvacount] = ACTIONS(1369), - [anon_sym_DOLLAReval] = ACTIONS(1369), - [anon_sym_DOLLARis_const] = ACTIONS(1369), - [anon_sym_DOLLARsizeof] = ACTIONS(1369), - [anon_sym_DOLLARstringify] = ACTIONS(1369), - [anon_sym_DOLLARappend] = ACTIONS(1369), - [anon_sym_DOLLARconcat] = ACTIONS(1369), - [anon_sym_DOLLARdefined] = ACTIONS(1369), - [anon_sym_DOLLARembed] = ACTIONS(1369), - [anon_sym_DOLLARand] = ACTIONS(1369), - [anon_sym_DOLLARor] = ACTIONS(1369), - [anon_sym_DOLLARfeature] = ACTIONS(1369), - [anon_sym_DOLLARassignable] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_typeid] = ACTIONS(1369), - [anon_sym_LBRACE_PIPE] = ACTIONS(1371), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_ichar] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_ushort] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_ulong] = ACTIONS(1369), - [anon_sym_int128] = ACTIONS(1369), - [anon_sym_uint128] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_double] = ACTIONS(1369), - [anon_sym_float16] = ACTIONS(1369), - [anon_sym_bfloat16] = ACTIONS(1369), - [anon_sym_float128] = ACTIONS(1369), - [anon_sym_iptr] = ACTIONS(1369), - [anon_sym_uptr] = ACTIONS(1369), - [anon_sym_isz] = ACTIONS(1369), - [anon_sym_usz] = ACTIONS(1369), - [anon_sym_anyfault] = ACTIONS(1369), - [anon_sym_any] = ACTIONS(1369), - [anon_sym_DOLLARtypeof] = ACTIONS(1369), - [anon_sym_DOLLARtypefrom] = ACTIONS(1369), - [anon_sym_DOLLARevaltype] = ACTIONS(1369), - [anon_sym_DOLLARvatype] = ACTIONS(1369), - [sym_real_literal] = ACTIONS(1371), - }, - [550] = { - [sym_line_comment] = STATE(550), - [sym_doc_comment] = STATE(550), - [sym_block_comment] = STATE(550), - [sym_ident] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1651), - [sym_bytes_literal] = ACTIONS(1651), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1649), - [sym_at_ident] = ACTIONS(1651), - [sym_hash_ident] = ACTIONS(1651), - [sym_type_ident] = ACTIONS(1651), - [sym_ct_type_ident] = ACTIONS(1651), - [sym_const_ident] = ACTIONS(1649), - [sym_builtin] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_tlocal] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_var] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_nextcase] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_foreach] = ACTIONS(1649), - [anon_sym_foreach_r] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_DOLLARassert] = ACTIONS(1649), - [anon_sym_DOLLARerror] = ACTIONS(1649), - [anon_sym_DOLLARecho] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_DOLLARendif] = ACTIONS(1649), - [anon_sym_DOLLARelse] = ACTIONS(1649), - [anon_sym_DOLLARswitch] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_DOLLARforeach] = ACTIONS(1649), - [anon_sym_DOLLARalignof] = ACTIONS(1649), - [anon_sym_DOLLARextnameof] = ACTIONS(1649), - [anon_sym_DOLLARnameof] = ACTIONS(1649), - [anon_sym_DOLLARoffsetof] = ACTIONS(1649), - [anon_sym_DOLLARqnameof] = ACTIONS(1649), - [anon_sym_DOLLARvaconst] = ACTIONS(1649), - [anon_sym_DOLLARvaarg] = ACTIONS(1649), - [anon_sym_DOLLARvaref] = ACTIONS(1649), - [anon_sym_DOLLARvaexpr] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [anon_sym_DOLLARvacount] = ACTIONS(1649), - [anon_sym_DOLLAReval] = ACTIONS(1649), - [anon_sym_DOLLARis_const] = ACTIONS(1649), - [anon_sym_DOLLARsizeof] = ACTIONS(1649), - [anon_sym_DOLLARstringify] = ACTIONS(1649), - [anon_sym_DOLLARappend] = ACTIONS(1649), - [anon_sym_DOLLARconcat] = ACTIONS(1649), - [anon_sym_DOLLARdefined] = ACTIONS(1649), - [anon_sym_DOLLARembed] = ACTIONS(1649), - [anon_sym_DOLLARand] = ACTIONS(1649), - [anon_sym_DOLLARor] = ACTIONS(1649), - [anon_sym_DOLLARfeature] = ACTIONS(1649), - [anon_sym_DOLLARassignable] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_typeid] = ACTIONS(1649), - [anon_sym_LBRACE_PIPE] = ACTIONS(1651), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_ichar] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [anon_sym_ushort] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_ulong] = ACTIONS(1649), - [anon_sym_int128] = ACTIONS(1649), - [anon_sym_uint128] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_double] = ACTIONS(1649), - [anon_sym_float16] = ACTIONS(1649), - [anon_sym_bfloat16] = ACTIONS(1649), - [anon_sym_float128] = ACTIONS(1649), - [anon_sym_iptr] = ACTIONS(1649), - [anon_sym_uptr] = ACTIONS(1649), - [anon_sym_isz] = ACTIONS(1649), - [anon_sym_usz] = ACTIONS(1649), - [anon_sym_anyfault] = ACTIONS(1649), - [anon_sym_any] = ACTIONS(1649), - [anon_sym_DOLLARtypeof] = ACTIONS(1649), - [anon_sym_DOLLARtypefrom] = ACTIONS(1649), - [anon_sym_DOLLARevaltype] = ACTIONS(1649), - [anon_sym_DOLLARvatype] = ACTIONS(1649), - [sym_real_literal] = ACTIONS(1651), - }, - [551] = { - [sym_line_comment] = STATE(551), - [sym_doc_comment] = STATE(551), - [sym_block_comment] = STATE(551), - [sym_ident] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_BQUOTE] = ACTIONS(1405), - [sym_bytes_literal] = ACTIONS(1405), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1403), - [sym_at_ident] = ACTIONS(1405), - [sym_hash_ident] = ACTIONS(1405), - [sym_type_ident] = ACTIONS(1405), - [sym_ct_type_ident] = ACTIONS(1405), - [sym_const_ident] = ACTIONS(1403), - [sym_builtin] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_tlocal] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_defer] = ACTIONS(1403), - [anon_sym_assert] = ACTIONS(1403), - [anon_sym_nextcase] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_foreach] = ACTIONS(1403), - [anon_sym_foreach_r] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_int] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1403), - [anon_sym_DOLLARassert] = ACTIONS(1403), - [anon_sym_DOLLARerror] = ACTIONS(1403), - [anon_sym_DOLLARecho] = ACTIONS(1403), - [anon_sym_DOLLARif] = ACTIONS(1403), - [anon_sym_DOLLARendif] = ACTIONS(1403), - [anon_sym_DOLLARelse] = ACTIONS(1403), - [anon_sym_DOLLARswitch] = ACTIONS(1403), - [anon_sym_DOLLARfor] = ACTIONS(1403), - [anon_sym_DOLLARforeach] = ACTIONS(1403), - [anon_sym_DOLLARalignof] = ACTIONS(1403), - [anon_sym_DOLLARextnameof] = ACTIONS(1403), - [anon_sym_DOLLARnameof] = ACTIONS(1403), - [anon_sym_DOLLARoffsetof] = ACTIONS(1403), - [anon_sym_DOLLARqnameof] = ACTIONS(1403), - [anon_sym_DOLLARvaconst] = ACTIONS(1403), - [anon_sym_DOLLARvaarg] = ACTIONS(1403), - [anon_sym_DOLLARvaref] = ACTIONS(1403), - [anon_sym_DOLLARvaexpr] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_DOLLARvacount] = ACTIONS(1403), - [anon_sym_DOLLAReval] = ACTIONS(1403), - [anon_sym_DOLLARis_const] = ACTIONS(1403), - [anon_sym_DOLLARsizeof] = ACTIONS(1403), - [anon_sym_DOLLARstringify] = ACTIONS(1403), - [anon_sym_DOLLARappend] = ACTIONS(1403), - [anon_sym_DOLLARconcat] = ACTIONS(1403), - [anon_sym_DOLLARdefined] = ACTIONS(1403), - [anon_sym_DOLLARembed] = ACTIONS(1403), - [anon_sym_DOLLARand] = ACTIONS(1403), - [anon_sym_DOLLARor] = ACTIONS(1403), - [anon_sym_DOLLARfeature] = ACTIONS(1403), - [anon_sym_DOLLARassignable] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_typeid] = ACTIONS(1403), - [anon_sym_LBRACE_PIPE] = ACTIONS(1405), - [anon_sym_void] = ACTIONS(1403), - [anon_sym_bool] = ACTIONS(1403), - [anon_sym_char] = ACTIONS(1403), - [anon_sym_ichar] = ACTIONS(1403), - [anon_sym_short] = ACTIONS(1403), - [anon_sym_ushort] = ACTIONS(1403), - [anon_sym_uint] = ACTIONS(1403), - [anon_sym_long] = ACTIONS(1403), - [anon_sym_ulong] = ACTIONS(1403), - [anon_sym_int128] = ACTIONS(1403), - [anon_sym_uint128] = ACTIONS(1403), - [anon_sym_float] = ACTIONS(1403), - [anon_sym_double] = ACTIONS(1403), - [anon_sym_float16] = ACTIONS(1403), - [anon_sym_bfloat16] = ACTIONS(1403), - [anon_sym_float128] = ACTIONS(1403), - [anon_sym_iptr] = ACTIONS(1403), - [anon_sym_uptr] = ACTIONS(1403), - [anon_sym_isz] = ACTIONS(1403), - [anon_sym_usz] = ACTIONS(1403), - [anon_sym_anyfault] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_DOLLARtypeof] = ACTIONS(1403), - [anon_sym_DOLLARtypefrom] = ACTIONS(1403), - [anon_sym_DOLLARevaltype] = ACTIONS(1403), - [anon_sym_DOLLARvatype] = ACTIONS(1403), - [sym_real_literal] = ACTIONS(1405), - }, - [552] = { - [sym_line_comment] = STATE(552), - [sym_doc_comment] = STATE(552), - [sym_block_comment] = STATE(552), - [sym_ident] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [anon_sym_BQUOTE] = ACTIONS(1527), - [sym_bytes_literal] = ACTIONS(1527), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARcase] = ACTIONS(1589), + [anon_sym_DOLLARdefault] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARendswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), + }, + [493] = { + [sym_line_comment] = STATE(493), + [sym_doc_comment] = STATE(493), + [sym_block_comment] = STATE(493), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1525), - [sym_at_ident] = ACTIONS(1527), - [sym_hash_ident] = ACTIONS(1527), - [sym_type_ident] = ACTIONS(1527), - [sym_ct_type_ident] = ACTIONS(1527), - [sym_const_ident] = ACTIONS(1525), - [sym_builtin] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_tlocal] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_var] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_defer] = ACTIONS(1525), - [anon_sym_assert] = ACTIONS(1525), - [anon_sym_nextcase] = ACTIONS(1525), - [anon_sym_switch] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_foreach] = ACTIONS(1525), - [anon_sym_foreach_r] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_int] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym_DOLLARassert] = ACTIONS(1525), - [anon_sym_DOLLARerror] = ACTIONS(1525), - [anon_sym_DOLLARecho] = ACTIONS(1525), - [anon_sym_DOLLARif] = ACTIONS(1525), - [anon_sym_DOLLARendif] = ACTIONS(1525), - [anon_sym_DOLLARelse] = ACTIONS(1525), - [anon_sym_DOLLARswitch] = ACTIONS(1525), - [anon_sym_DOLLARfor] = ACTIONS(1525), - [anon_sym_DOLLARforeach] = ACTIONS(1525), - [anon_sym_DOLLARalignof] = ACTIONS(1525), - [anon_sym_DOLLARextnameof] = ACTIONS(1525), - [anon_sym_DOLLARnameof] = ACTIONS(1525), - [anon_sym_DOLLARoffsetof] = ACTIONS(1525), - [anon_sym_DOLLARqnameof] = ACTIONS(1525), - [anon_sym_DOLLARvaconst] = ACTIONS(1525), - [anon_sym_DOLLARvaarg] = ACTIONS(1525), - [anon_sym_DOLLARvaref] = ACTIONS(1525), - [anon_sym_DOLLARvaexpr] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1525), - [anon_sym_false] = ACTIONS(1525), - [anon_sym_null] = ACTIONS(1525), - [anon_sym_DOLLARvacount] = ACTIONS(1525), - [anon_sym_DOLLAReval] = ACTIONS(1525), - [anon_sym_DOLLARis_const] = ACTIONS(1525), - [anon_sym_DOLLARsizeof] = ACTIONS(1525), - [anon_sym_DOLLARstringify] = ACTIONS(1525), - [anon_sym_DOLLARappend] = ACTIONS(1525), - [anon_sym_DOLLARconcat] = ACTIONS(1525), - [anon_sym_DOLLARdefined] = ACTIONS(1525), - [anon_sym_DOLLARembed] = ACTIONS(1525), - [anon_sym_DOLLARand] = ACTIONS(1525), - [anon_sym_DOLLARor] = ACTIONS(1525), - [anon_sym_DOLLARfeature] = ACTIONS(1525), - [anon_sym_DOLLARassignable] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_typeid] = ACTIONS(1525), - [anon_sym_LBRACE_PIPE] = ACTIONS(1527), - [anon_sym_void] = ACTIONS(1525), - [anon_sym_bool] = ACTIONS(1525), - [anon_sym_char] = ACTIONS(1525), - [anon_sym_ichar] = ACTIONS(1525), - [anon_sym_short] = ACTIONS(1525), - [anon_sym_ushort] = ACTIONS(1525), - [anon_sym_uint] = ACTIONS(1525), - [anon_sym_long] = ACTIONS(1525), - [anon_sym_ulong] = ACTIONS(1525), - [anon_sym_int128] = ACTIONS(1525), - [anon_sym_uint128] = ACTIONS(1525), - [anon_sym_float] = ACTIONS(1525), - [anon_sym_double] = ACTIONS(1525), - [anon_sym_float16] = ACTIONS(1525), - [anon_sym_bfloat16] = ACTIONS(1525), - [anon_sym_float128] = ACTIONS(1525), - [anon_sym_iptr] = ACTIONS(1525), - [anon_sym_uptr] = ACTIONS(1525), - [anon_sym_isz] = ACTIONS(1525), - [anon_sym_usz] = ACTIONS(1525), - [anon_sym_anyfault] = ACTIONS(1525), - [anon_sym_any] = ACTIONS(1525), - [anon_sym_DOLLARtypeof] = ACTIONS(1525), - [anon_sym_DOLLARtypefrom] = ACTIONS(1525), - [anon_sym_DOLLARevaltype] = ACTIONS(1525), - [anon_sym_DOLLARvatype] = ACTIONS(1525), - [sym_real_literal] = ACTIONS(1527), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARcase] = ACTIONS(1533), + [anon_sym_DOLLARdefault] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARendswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, - [553] = { - [sym_line_comment] = STATE(553), - [sym_doc_comment] = STATE(553), - [sym_block_comment] = STATE(553), - [sym_ident] = ACTIONS(1373), - [sym_integer_literal] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [anon_sym_BQUOTE] = ACTIONS(1375), - [sym_bytes_literal] = ACTIONS(1375), + [494] = { + [sym_line_comment] = STATE(494), + [sym_doc_comment] = STATE(494), + [sym_block_comment] = STATE(494), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1373), - [sym_at_ident] = ACTIONS(1375), - [sym_hash_ident] = ACTIONS(1375), - [sym_type_ident] = ACTIONS(1375), - [sym_ct_type_ident] = ACTIONS(1375), - [sym_const_ident] = ACTIONS(1373), - [sym_builtin] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_tlocal] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_fn] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_var] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_defer] = ACTIONS(1373), - [anon_sym_assert] = ACTIONS(1373), - [anon_sym_nextcase] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_AMP_AMP] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_foreach] = ACTIONS(1373), - [anon_sym_foreach_r] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_int] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_asm] = ACTIONS(1373), - [anon_sym_DOLLARassert] = ACTIONS(1373), - [anon_sym_DOLLARerror] = ACTIONS(1373), - [anon_sym_DOLLARecho] = ACTIONS(1373), - [anon_sym_DOLLARif] = ACTIONS(1373), - [anon_sym_DOLLARswitch] = ACTIONS(1373), - [anon_sym_DOLLARfor] = ACTIONS(1373), - [anon_sym_DOLLARforeach] = ACTIONS(1373), - [anon_sym_DOLLARendforeach] = ACTIONS(1373), - [anon_sym_DOLLARalignof] = ACTIONS(1373), - [anon_sym_DOLLARextnameof] = ACTIONS(1373), - [anon_sym_DOLLARnameof] = ACTIONS(1373), - [anon_sym_DOLLARoffsetof] = ACTIONS(1373), - [anon_sym_DOLLARqnameof] = ACTIONS(1373), - [anon_sym_DOLLARvaconst] = ACTIONS(1373), - [anon_sym_DOLLARvaarg] = ACTIONS(1373), - [anon_sym_DOLLARvaref] = ACTIONS(1373), - [anon_sym_DOLLARvaexpr] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(1373), - [anon_sym_false] = ACTIONS(1373), - [anon_sym_null] = ACTIONS(1373), - [anon_sym_DOLLARvacount] = ACTIONS(1373), - [anon_sym_DOLLAReval] = ACTIONS(1373), - [anon_sym_DOLLARis_const] = ACTIONS(1373), - [anon_sym_DOLLARsizeof] = ACTIONS(1373), - [anon_sym_DOLLARstringify] = ACTIONS(1373), - [anon_sym_DOLLARappend] = ACTIONS(1373), - [anon_sym_DOLLARconcat] = ACTIONS(1373), - [anon_sym_DOLLARdefined] = ACTIONS(1373), - [anon_sym_DOLLARembed] = ACTIONS(1373), - [anon_sym_DOLLARand] = ACTIONS(1373), - [anon_sym_DOLLARor] = ACTIONS(1373), - [anon_sym_DOLLARfeature] = ACTIONS(1373), - [anon_sym_DOLLARassignable] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_typeid] = ACTIONS(1373), - [anon_sym_LBRACE_PIPE] = ACTIONS(1375), - [anon_sym_void] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_ichar] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_ushort] = ACTIONS(1373), - [anon_sym_uint] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_ulong] = ACTIONS(1373), - [anon_sym_int128] = ACTIONS(1373), - [anon_sym_uint128] = ACTIONS(1373), - [anon_sym_float] = ACTIONS(1373), - [anon_sym_double] = ACTIONS(1373), - [anon_sym_float16] = ACTIONS(1373), - [anon_sym_bfloat16] = ACTIONS(1373), - [anon_sym_float128] = ACTIONS(1373), - [anon_sym_iptr] = ACTIONS(1373), - [anon_sym_uptr] = ACTIONS(1373), - [anon_sym_isz] = ACTIONS(1373), - [anon_sym_usz] = ACTIONS(1373), - [anon_sym_anyfault] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_DOLLARtypeof] = ACTIONS(1373), - [anon_sym_DOLLARtypefrom] = ACTIONS(1373), - [anon_sym_DOLLARevaltype] = ACTIONS(1373), - [anon_sym_DOLLARvatype] = ACTIONS(1373), - [sym_real_literal] = ACTIONS(1375), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARcase] = ACTIONS(1537), + [anon_sym_DOLLARdefault] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARendswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, - [554] = { - [sym_line_comment] = STATE(554), - [sym_doc_comment] = STATE(554), - [sym_block_comment] = STATE(554), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARendif] = ACTIONS(1503), - [anon_sym_DOLLARelse] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARappend] = ACTIONS(1503), - [anon_sym_DOLLARconcat] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), + [495] = { + [sym_line_comment] = STATE(495), + [sym_doc_comment] = STATE(495), + [sym_block_comment] = STATE(495), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARcase] = ACTIONS(1617), + [anon_sym_DOLLARdefault] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARendswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, - [555] = { - [sym_line_comment] = STATE(555), - [sym_doc_comment] = STATE(555), - [sym_block_comment] = STATE(555), - [sym_ident] = ACTIONS(1589), - [sym_integer_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [anon_sym_BQUOTE] = ACTIONS(1591), - [sym_bytes_literal] = ACTIONS(1591), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1589), - [sym_at_ident] = ACTIONS(1591), - [sym_hash_ident] = ACTIONS(1591), - [sym_type_ident] = ACTIONS(1591), - [sym_ct_type_ident] = ACTIONS(1591), - [sym_const_ident] = ACTIONS(1589), - [sym_builtin] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_tlocal] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_fn] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_var] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_defer] = ACTIONS(1589), - [anon_sym_assert] = ACTIONS(1589), - [anon_sym_nextcase] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1589), - [anon_sym_AMP_AMP] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_foreach] = ACTIONS(1589), - [anon_sym_foreach_r] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_int] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_asm] = ACTIONS(1589), - [anon_sym_DOLLARassert] = ACTIONS(1589), - [anon_sym_DOLLARerror] = ACTIONS(1589), - [anon_sym_DOLLARecho] = ACTIONS(1589), - [anon_sym_DOLLARif] = ACTIONS(1589), - [anon_sym_DOLLARendif] = ACTIONS(1589), - [anon_sym_DOLLARelse] = ACTIONS(1589), - [anon_sym_DOLLARswitch] = ACTIONS(1589), - [anon_sym_DOLLARfor] = ACTIONS(1589), - [anon_sym_DOLLARforeach] = ACTIONS(1589), - [anon_sym_DOLLARalignof] = ACTIONS(1589), - [anon_sym_DOLLARextnameof] = ACTIONS(1589), - [anon_sym_DOLLARnameof] = ACTIONS(1589), - [anon_sym_DOLLARoffsetof] = ACTIONS(1589), - [anon_sym_DOLLARqnameof] = ACTIONS(1589), - [anon_sym_DOLLARvaconst] = ACTIONS(1589), - [anon_sym_DOLLARvaarg] = ACTIONS(1589), - [anon_sym_DOLLARvaref] = ACTIONS(1589), - [anon_sym_DOLLARvaexpr] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_DOLLARvacount] = ACTIONS(1589), - [anon_sym_DOLLAReval] = ACTIONS(1589), - [anon_sym_DOLLARis_const] = ACTIONS(1589), - [anon_sym_DOLLARsizeof] = ACTIONS(1589), - [anon_sym_DOLLARstringify] = ACTIONS(1589), - [anon_sym_DOLLARappend] = ACTIONS(1589), - [anon_sym_DOLLARconcat] = ACTIONS(1589), - [anon_sym_DOLLARdefined] = ACTIONS(1589), - [anon_sym_DOLLARembed] = ACTIONS(1589), - [anon_sym_DOLLARand] = ACTIONS(1589), - [anon_sym_DOLLARor] = ACTIONS(1589), - [anon_sym_DOLLARfeature] = ACTIONS(1589), - [anon_sym_DOLLARassignable] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_typeid] = ACTIONS(1589), - [anon_sym_LBRACE_PIPE] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(1589), - [anon_sym_bool] = ACTIONS(1589), - [anon_sym_char] = ACTIONS(1589), - [anon_sym_ichar] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [anon_sym_ushort] = ACTIONS(1589), - [anon_sym_uint] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_ulong] = ACTIONS(1589), - [anon_sym_int128] = ACTIONS(1589), - [anon_sym_uint128] = ACTIONS(1589), - [anon_sym_float] = ACTIONS(1589), - [anon_sym_double] = ACTIONS(1589), - [anon_sym_float16] = ACTIONS(1589), - [anon_sym_bfloat16] = ACTIONS(1589), - [anon_sym_float128] = ACTIONS(1589), - [anon_sym_iptr] = ACTIONS(1589), - [anon_sym_uptr] = ACTIONS(1589), - [anon_sym_isz] = ACTIONS(1589), - [anon_sym_usz] = ACTIONS(1589), - [anon_sym_anyfault] = ACTIONS(1589), - [anon_sym_any] = ACTIONS(1589), - [anon_sym_DOLLARtypeof] = ACTIONS(1589), - [anon_sym_DOLLARtypefrom] = ACTIONS(1589), - [anon_sym_DOLLARevaltype] = ACTIONS(1589), - [anon_sym_DOLLARvatype] = ACTIONS(1589), - [sym_real_literal] = ACTIONS(1591), + [496] = { + [sym_line_comment] = STATE(496), + [sym_doc_comment] = STATE(496), + [sym_block_comment] = STATE(496), + [sym_ident] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_bytes_literal] = ACTIONS(1419), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1417), + [sym_at_ident] = ACTIONS(1419), + [sym_hash_ident] = ACTIONS(1419), + [sym_type_ident] = ACTIONS(1419), + [sym_ct_type_ident] = ACTIONS(1419), + [sym_const_ident] = ACTIONS(1417), + [sym_builtin] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_tlocal] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_var] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_defer] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_nextcase] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_foreach] = ACTIONS(1417), + [anon_sym_foreach_r] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_DOLLARassert] = ACTIONS(1417), + [anon_sym_DOLLARerror] = ACTIONS(1417), + [anon_sym_DOLLARecho] = ACTIONS(1417), + [anon_sym_DOLLARif] = ACTIONS(1417), + [anon_sym_DOLLARendif] = ACTIONS(1417), + [anon_sym_DOLLARelse] = ACTIONS(1417), + [anon_sym_DOLLARswitch] = ACTIONS(1417), + [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARforeach] = ACTIONS(1417), + [anon_sym_DOLLARalignof] = ACTIONS(1417), + [anon_sym_DOLLARextnameof] = ACTIONS(1417), + [anon_sym_DOLLARnameof] = ACTIONS(1417), + [anon_sym_DOLLARoffsetof] = ACTIONS(1417), + [anon_sym_DOLLARqnameof] = ACTIONS(1417), + [anon_sym_DOLLARvaconst] = ACTIONS(1417), + [anon_sym_DOLLARvaarg] = ACTIONS(1417), + [anon_sym_DOLLARvaref] = ACTIONS(1417), + [anon_sym_DOLLARvaexpr] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_DOLLARvacount] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), + [anon_sym_DOLLARand] = ACTIONS(1417), + [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLARassignable] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_typeid] = ACTIONS(1417), + [anon_sym_LBRACE_PIPE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_ichar] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_ushort] = ACTIONS(1417), + [anon_sym_uint] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_ulong] = ACTIONS(1417), + [anon_sym_int128] = ACTIONS(1417), + [anon_sym_uint128] = ACTIONS(1417), + [anon_sym_float] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_float16] = ACTIONS(1417), + [anon_sym_bfloat16] = ACTIONS(1417), + [anon_sym_float128] = ACTIONS(1417), + [anon_sym_iptr] = ACTIONS(1417), + [anon_sym_uptr] = ACTIONS(1417), + [anon_sym_isz] = ACTIONS(1417), + [anon_sym_usz] = ACTIONS(1417), + [anon_sym_anyfault] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_DOLLARtypeof] = ACTIONS(1417), + [anon_sym_DOLLARtypefrom] = ACTIONS(1417), + [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1419), }, - [556] = { - [sym_line_comment] = STATE(556), - [sym_doc_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [497] = { + [sym_line_comment] = STATE(497), + [sym_doc_comment] = STATE(497), + [sym_block_comment] = STATE(497), [sym_ident] = ACTIONS(1363), [sym_integer_literal] = ACTIONS(1365), [anon_sym_SQUOTE] = ACTIONS(1365), @@ -89604,6 +82678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1363), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), [anon_sym_for] = ACTIONS(1363), [anon_sym_foreach] = ACTIONS(1363), [anon_sym_foreach_r] = ACTIONS(1363), @@ -89618,11 +82693,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1363), [anon_sym_DOLLARecho] = ACTIONS(1363), [anon_sym_DOLLARif] = ACTIONS(1363), - [anon_sym_DOLLARendif] = ACTIONS(1363), - [anon_sym_DOLLARelse] = ACTIONS(1363), [anon_sym_DOLLARswitch] = ACTIONS(1363), [anon_sym_DOLLARfor] = ACTIONS(1363), [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARendforeach] = ACTIONS(1363), [anon_sym_DOLLARalignof] = ACTIONS(1363), [anon_sym_DOLLARextnameof] = ACTIONS(1363), [anon_sym_DOLLARnameof] = ACTIONS(1363), @@ -89682,242 +82756,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1363), [sym_real_literal] = ACTIONS(1365), }, - [557] = { - [sym_line_comment] = STATE(557), - [sym_doc_comment] = STATE(557), - [sym_block_comment] = STATE(557), - [sym_ident] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), - [anon_sym_BQUOTE] = ACTIONS(1371), - [sym_bytes_literal] = ACTIONS(1371), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1369), - [sym_at_ident] = ACTIONS(1371), - [sym_hash_ident] = ACTIONS(1371), - [sym_type_ident] = ACTIONS(1371), - [sym_ct_type_ident] = ACTIONS(1371), - [sym_const_ident] = ACTIONS(1369), - [sym_builtin] = ACTIONS(1371), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_tlocal] = ACTIONS(1369), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_fn] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_var] = ACTIONS(1369), - [anon_sym_return] = ACTIONS(1369), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_break] = ACTIONS(1369), - [anon_sym_defer] = ACTIONS(1369), - [anon_sym_assert] = ACTIONS(1369), - [anon_sym_nextcase] = ACTIONS(1369), - [anon_sym_switch] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1369), - [anon_sym_foreach] = ACTIONS(1369), - [anon_sym_foreach_r] = ACTIONS(1369), - [anon_sym_while] = ACTIONS(1369), - [anon_sym_do] = ACTIONS(1369), - [anon_sym_int] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_asm] = ACTIONS(1369), - [anon_sym_DOLLARassert] = ACTIONS(1369), - [anon_sym_DOLLARerror] = ACTIONS(1369), - [anon_sym_DOLLARecho] = ACTIONS(1369), - [anon_sym_DOLLARif] = ACTIONS(1369), - [anon_sym_DOLLARendif] = ACTIONS(1369), - [anon_sym_DOLLARswitch] = ACTIONS(1369), - [anon_sym_DOLLARfor] = ACTIONS(1369), - [anon_sym_DOLLARforeach] = ACTIONS(1369), - [anon_sym_DOLLARalignof] = ACTIONS(1369), - [anon_sym_DOLLARextnameof] = ACTIONS(1369), - [anon_sym_DOLLARnameof] = ACTIONS(1369), - [anon_sym_DOLLARoffsetof] = ACTIONS(1369), - [anon_sym_DOLLARqnameof] = ACTIONS(1369), - [anon_sym_DOLLARvaconst] = ACTIONS(1369), - [anon_sym_DOLLARvaarg] = ACTIONS(1369), - [anon_sym_DOLLARvaref] = ACTIONS(1369), - [anon_sym_DOLLARvaexpr] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), - [anon_sym_null] = ACTIONS(1369), - [anon_sym_DOLLARvacount] = ACTIONS(1369), - [anon_sym_DOLLAReval] = ACTIONS(1369), - [anon_sym_DOLLARis_const] = ACTIONS(1369), - [anon_sym_DOLLARsizeof] = ACTIONS(1369), - [anon_sym_DOLLARstringify] = ACTIONS(1369), - [anon_sym_DOLLARappend] = ACTIONS(1369), - [anon_sym_DOLLARconcat] = ACTIONS(1369), - [anon_sym_DOLLARdefined] = ACTIONS(1369), - [anon_sym_DOLLARembed] = ACTIONS(1369), - [anon_sym_DOLLARand] = ACTIONS(1369), - [anon_sym_DOLLARor] = ACTIONS(1369), - [anon_sym_DOLLARfeature] = ACTIONS(1369), - [anon_sym_DOLLARassignable] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_typeid] = ACTIONS(1369), - [anon_sym_LBRACE_PIPE] = ACTIONS(1371), - [anon_sym_void] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_ichar] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [anon_sym_ushort] = ACTIONS(1369), - [anon_sym_uint] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_ulong] = ACTIONS(1369), - [anon_sym_int128] = ACTIONS(1369), - [anon_sym_uint128] = ACTIONS(1369), - [anon_sym_float] = ACTIONS(1369), - [anon_sym_double] = ACTIONS(1369), - [anon_sym_float16] = ACTIONS(1369), - [anon_sym_bfloat16] = ACTIONS(1369), - [anon_sym_float128] = ACTIONS(1369), - [anon_sym_iptr] = ACTIONS(1369), - [anon_sym_uptr] = ACTIONS(1369), - [anon_sym_isz] = ACTIONS(1369), - [anon_sym_usz] = ACTIONS(1369), - [anon_sym_anyfault] = ACTIONS(1369), - [anon_sym_any] = ACTIONS(1369), - [anon_sym_DOLLARtypeof] = ACTIONS(1369), - [anon_sym_DOLLARtypefrom] = ACTIONS(1369), - [anon_sym_DOLLARevaltype] = ACTIONS(1369), - [anon_sym_DOLLARvatype] = ACTIONS(1369), - [sym_real_literal] = ACTIONS(1371), + [498] = { + [sym_line_comment] = STATE(498), + [sym_doc_comment] = STATE(498), + [sym_block_comment] = STATE(498), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARendif] = ACTIONS(1493), + [anon_sym_DOLLARelse] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), + }, + [499] = { + [sym_line_comment] = STATE(499), + [sym_doc_comment] = STATE(499), + [sym_block_comment] = STATE(499), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARendif] = ACTIONS(1625), + [anon_sym_DOLLARelse] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), + }, + [500] = { + [sym_line_comment] = STATE(500), + [sym_doc_comment] = STATE(500), + [sym_block_comment] = STATE(500), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARendif] = ACTIONS(1561), + [anon_sym_DOLLARelse] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), + }, + [501] = { + [sym_line_comment] = STATE(501), + [sym_doc_comment] = STATE(501), + [sym_block_comment] = STATE(501), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARendif] = ACTIONS(1373), + [anon_sym_DOLLARelse] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), }, - [558] = { - [sym_line_comment] = STATE(558), - [sym_doc_comment] = STATE(558), - [sym_block_comment] = STATE(558), - [sym_ident] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_bytes_literal] = ACTIONS(1659), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1657), - [sym_at_ident] = ACTIONS(1659), - [sym_hash_ident] = ACTIONS(1659), - [sym_type_ident] = ACTIONS(1659), - [sym_ct_type_ident] = ACTIONS(1659), - [sym_const_ident] = ACTIONS(1657), - [sym_builtin] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_tlocal] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_var] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_assert] = ACTIONS(1657), - [anon_sym_nextcase] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_foreach] = ACTIONS(1657), - [anon_sym_foreach_r] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1657), - [anon_sym_DOLLARassert] = ACTIONS(1657), - [anon_sym_DOLLARerror] = ACTIONS(1657), - [anon_sym_DOLLARecho] = ACTIONS(1657), - [anon_sym_DOLLARif] = ACTIONS(1657), - [anon_sym_DOLLARendif] = ACTIONS(1657), - [anon_sym_DOLLARelse] = ACTIONS(1657), - [anon_sym_DOLLARswitch] = ACTIONS(1657), - [anon_sym_DOLLARfor] = ACTIONS(1657), - [anon_sym_DOLLARforeach] = ACTIONS(1657), - [anon_sym_DOLLARalignof] = ACTIONS(1657), - [anon_sym_DOLLARextnameof] = ACTIONS(1657), - [anon_sym_DOLLARnameof] = ACTIONS(1657), - [anon_sym_DOLLARoffsetof] = ACTIONS(1657), - [anon_sym_DOLLARqnameof] = ACTIONS(1657), - [anon_sym_DOLLARvaconst] = ACTIONS(1657), - [anon_sym_DOLLARvaarg] = ACTIONS(1657), - [anon_sym_DOLLARvaref] = ACTIONS(1657), - [anon_sym_DOLLARvaexpr] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_DOLLARvacount] = ACTIONS(1657), - [anon_sym_DOLLAReval] = ACTIONS(1657), - [anon_sym_DOLLARis_const] = ACTIONS(1657), - [anon_sym_DOLLARsizeof] = ACTIONS(1657), - [anon_sym_DOLLARstringify] = ACTIONS(1657), - [anon_sym_DOLLARappend] = ACTIONS(1657), - [anon_sym_DOLLARconcat] = ACTIONS(1657), - [anon_sym_DOLLARdefined] = ACTIONS(1657), - [anon_sym_DOLLARembed] = ACTIONS(1657), - [anon_sym_DOLLARand] = ACTIONS(1657), - [anon_sym_DOLLARor] = ACTIONS(1657), - [anon_sym_DOLLARfeature] = ACTIONS(1657), - [anon_sym_DOLLARassignable] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_typeid] = ACTIONS(1657), - [anon_sym_LBRACE_PIPE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_ichar] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [anon_sym_ushort] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_ulong] = ACTIONS(1657), - [anon_sym_int128] = ACTIONS(1657), - [anon_sym_uint128] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_double] = ACTIONS(1657), - [anon_sym_float16] = ACTIONS(1657), - [anon_sym_bfloat16] = ACTIONS(1657), - [anon_sym_float128] = ACTIONS(1657), - [anon_sym_iptr] = ACTIONS(1657), - [anon_sym_uptr] = ACTIONS(1657), - [anon_sym_isz] = ACTIONS(1657), - [anon_sym_usz] = ACTIONS(1657), - [anon_sym_anyfault] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_DOLLARtypeof] = ACTIONS(1657), - [anon_sym_DOLLARtypefrom] = ACTIONS(1657), - [anon_sym_DOLLARevaltype] = ACTIONS(1657), - [anon_sym_DOLLARvatype] = ACTIONS(1657), - [sym_real_literal] = ACTIONS(1659), + [502] = { + [sym_line_comment] = STATE(502), + [sym_doc_comment] = STATE(502), + [sym_block_comment] = STATE(502), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARendif] = ACTIONS(1629), + [anon_sym_DOLLARelse] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, - [559] = { - [sym_line_comment] = STATE(559), - [sym_doc_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [503] = { + [sym_line_comment] = STATE(503), + [sym_doc_comment] = STATE(503), + [sym_block_comment] = STATE(503), [sym_ident] = ACTIONS(1521), [sym_integer_literal] = ACTIONS(1523), [anon_sym_SQUOTE] = ACTIONS(1523), @@ -90030,1518 +83452,1982 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1521), [sym_real_literal] = ACTIONS(1523), }, - [560] = { - [sym_line_comment] = STATE(560), - [sym_doc_comment] = STATE(560), - [sym_block_comment] = STATE(560), - [sym_ident] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1535), - [sym_bytes_literal] = ACTIONS(1535), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1533), - [sym_at_ident] = ACTIONS(1535), - [sym_hash_ident] = ACTIONS(1535), - [sym_type_ident] = ACTIONS(1535), - [sym_ct_type_ident] = ACTIONS(1535), - [sym_const_ident] = ACTIONS(1533), - [sym_builtin] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_tlocal] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_var] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_defer] = ACTIONS(1533), - [anon_sym_assert] = ACTIONS(1533), - [anon_sym_nextcase] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_foreach] = ACTIONS(1533), - [anon_sym_foreach_r] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_int] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_asm] = ACTIONS(1533), - [anon_sym_DOLLARassert] = ACTIONS(1533), - [anon_sym_DOLLARerror] = ACTIONS(1533), - [anon_sym_DOLLARecho] = ACTIONS(1533), - [anon_sym_DOLLARif] = ACTIONS(1533), - [anon_sym_DOLLARendif] = ACTIONS(1533), - [anon_sym_DOLLARelse] = ACTIONS(1533), - [anon_sym_DOLLARswitch] = ACTIONS(1533), - [anon_sym_DOLLARfor] = ACTIONS(1533), - [anon_sym_DOLLARforeach] = ACTIONS(1533), - [anon_sym_DOLLARalignof] = ACTIONS(1533), - [anon_sym_DOLLARextnameof] = ACTIONS(1533), - [anon_sym_DOLLARnameof] = ACTIONS(1533), - [anon_sym_DOLLARoffsetof] = ACTIONS(1533), - [anon_sym_DOLLARqnameof] = ACTIONS(1533), - [anon_sym_DOLLARvaconst] = ACTIONS(1533), - [anon_sym_DOLLARvaarg] = ACTIONS(1533), - [anon_sym_DOLLARvaref] = ACTIONS(1533), - [anon_sym_DOLLARvaexpr] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_null] = ACTIONS(1533), - [anon_sym_DOLLARvacount] = ACTIONS(1533), - [anon_sym_DOLLAReval] = ACTIONS(1533), - [anon_sym_DOLLARis_const] = ACTIONS(1533), - [anon_sym_DOLLARsizeof] = ACTIONS(1533), - [anon_sym_DOLLARstringify] = ACTIONS(1533), - [anon_sym_DOLLARappend] = ACTIONS(1533), - [anon_sym_DOLLARconcat] = ACTIONS(1533), - [anon_sym_DOLLARdefined] = ACTIONS(1533), - [anon_sym_DOLLARembed] = ACTIONS(1533), - [anon_sym_DOLLARand] = ACTIONS(1533), - [anon_sym_DOLLARor] = ACTIONS(1533), - [anon_sym_DOLLARfeature] = ACTIONS(1533), - [anon_sym_DOLLARassignable] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_typeid] = ACTIONS(1533), - [anon_sym_LBRACE_PIPE] = ACTIONS(1535), - [anon_sym_void] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_ichar] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_ushort] = ACTIONS(1533), - [anon_sym_uint] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_ulong] = ACTIONS(1533), - [anon_sym_int128] = ACTIONS(1533), - [anon_sym_uint128] = ACTIONS(1533), - [anon_sym_float] = ACTIONS(1533), - [anon_sym_double] = ACTIONS(1533), - [anon_sym_float16] = ACTIONS(1533), - [anon_sym_bfloat16] = ACTIONS(1533), - [anon_sym_float128] = ACTIONS(1533), - [anon_sym_iptr] = ACTIONS(1533), - [anon_sym_uptr] = ACTIONS(1533), - [anon_sym_isz] = ACTIONS(1533), - [anon_sym_usz] = ACTIONS(1533), - [anon_sym_anyfault] = ACTIONS(1533), - [anon_sym_any] = ACTIONS(1533), - [anon_sym_DOLLARtypeof] = ACTIONS(1533), - [anon_sym_DOLLARtypefrom] = ACTIONS(1533), - [anon_sym_DOLLARevaltype] = ACTIONS(1533), - [anon_sym_DOLLARvatype] = ACTIONS(1533), - [sym_real_literal] = ACTIONS(1535), + [504] = { + [sym_line_comment] = STATE(504), + [sym_doc_comment] = STATE(504), + [sym_block_comment] = STATE(504), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARendif] = ACTIONS(1481), + [anon_sym_DOLLARelse] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, - [561] = { - [sym_line_comment] = STATE(561), - [sym_doc_comment] = STATE(561), - [sym_block_comment] = STATE(561), - [sym_ident] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_bytes_literal] = ACTIONS(1647), + [505] = { + [sym_line_comment] = STATE(505), + [sym_doc_comment] = STATE(505), + [sym_block_comment] = STATE(505), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARendif] = ACTIONS(1651), + [anon_sym_DOLLARelse] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), + }, + [506] = { + [sym_line_comment] = STATE(506), + [sym_doc_comment] = STATE(506), + [sym_block_comment] = STATE(506), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARendif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), + }, + [507] = { + [sym_line_comment] = STATE(507), + [sym_doc_comment] = STATE(507), + [sym_block_comment] = STATE(507), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARendif] = ACTIONS(1485), + [anon_sym_DOLLARelse] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), + }, + [508] = { + [sym_line_comment] = STATE(508), + [sym_doc_comment] = STATE(508), + [sym_block_comment] = STATE(508), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARendif] = ACTIONS(1433), + [anon_sym_DOLLARelse] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), + }, + [509] = { + [sym_line_comment] = STATE(509), + [sym_doc_comment] = STATE(509), + [sym_block_comment] = STATE(509), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1645), - [sym_at_ident] = ACTIONS(1647), - [sym_hash_ident] = ACTIONS(1647), - [sym_type_ident] = ACTIONS(1647), - [sym_ct_type_ident] = ACTIONS(1647), - [sym_const_ident] = ACTIONS(1645), - [sym_builtin] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_tlocal] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_fn] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_var] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_defer] = ACTIONS(1645), - [anon_sym_assert] = ACTIONS(1645), - [anon_sym_nextcase] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_foreach] = ACTIONS(1645), - [anon_sym_foreach_r] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_int] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_asm] = ACTIONS(1645), - [anon_sym_DOLLARassert] = ACTIONS(1645), - [anon_sym_DOLLARerror] = ACTIONS(1645), - [anon_sym_DOLLARecho] = ACTIONS(1645), - [anon_sym_DOLLARif] = ACTIONS(1645), - [anon_sym_DOLLARendif] = ACTIONS(1645), - [anon_sym_DOLLARelse] = ACTIONS(1645), - [anon_sym_DOLLARswitch] = ACTIONS(1645), - [anon_sym_DOLLARfor] = ACTIONS(1645), - [anon_sym_DOLLARforeach] = ACTIONS(1645), - [anon_sym_DOLLARalignof] = ACTIONS(1645), - [anon_sym_DOLLARextnameof] = ACTIONS(1645), - [anon_sym_DOLLARnameof] = ACTIONS(1645), - [anon_sym_DOLLARoffsetof] = ACTIONS(1645), - [anon_sym_DOLLARqnameof] = ACTIONS(1645), - [anon_sym_DOLLARvaconst] = ACTIONS(1645), - [anon_sym_DOLLARvaarg] = ACTIONS(1645), - [anon_sym_DOLLARvaref] = ACTIONS(1645), - [anon_sym_DOLLARvaexpr] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [anon_sym_DOLLARvacount] = ACTIONS(1645), - [anon_sym_DOLLAReval] = ACTIONS(1645), - [anon_sym_DOLLARis_const] = ACTIONS(1645), - [anon_sym_DOLLARsizeof] = ACTIONS(1645), - [anon_sym_DOLLARstringify] = ACTIONS(1645), - [anon_sym_DOLLARappend] = ACTIONS(1645), - [anon_sym_DOLLARconcat] = ACTIONS(1645), - [anon_sym_DOLLARdefined] = ACTIONS(1645), - [anon_sym_DOLLARembed] = ACTIONS(1645), - [anon_sym_DOLLARand] = ACTIONS(1645), - [anon_sym_DOLLARor] = ACTIONS(1645), - [anon_sym_DOLLARfeature] = ACTIONS(1645), - [anon_sym_DOLLARassignable] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_typeid] = ACTIONS(1645), - [anon_sym_LBRACE_PIPE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [anon_sym_ichar] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [anon_sym_ushort] = ACTIONS(1645), - [anon_sym_uint] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_ulong] = ACTIONS(1645), - [anon_sym_int128] = ACTIONS(1645), - [anon_sym_uint128] = ACTIONS(1645), - [anon_sym_float] = ACTIONS(1645), - [anon_sym_double] = ACTIONS(1645), - [anon_sym_float16] = ACTIONS(1645), - [anon_sym_bfloat16] = ACTIONS(1645), - [anon_sym_float128] = ACTIONS(1645), - [anon_sym_iptr] = ACTIONS(1645), - [anon_sym_uptr] = ACTIONS(1645), - [anon_sym_isz] = ACTIONS(1645), - [anon_sym_usz] = ACTIONS(1645), - [anon_sym_anyfault] = ACTIONS(1645), - [anon_sym_any] = ACTIONS(1645), - [anon_sym_DOLLARtypeof] = ACTIONS(1645), - [anon_sym_DOLLARtypefrom] = ACTIONS(1645), - [anon_sym_DOLLARevaltype] = ACTIONS(1645), - [anon_sym_DOLLARvatype] = ACTIONS(1645), - [sym_real_literal] = ACTIONS(1647), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARendif] = ACTIONS(1529), + [anon_sym_DOLLARelse] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, - [562] = { - [sym_line_comment] = STATE(562), - [sym_doc_comment] = STATE(562), - [sym_block_comment] = STATE(562), - [sym_ident] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [anon_sym_BQUOTE] = ACTIONS(1543), - [sym_bytes_literal] = ACTIONS(1543), + [510] = { + [sym_line_comment] = STATE(510), + [sym_doc_comment] = STATE(510), + [sym_block_comment] = STATE(510), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1541), - [sym_at_ident] = ACTIONS(1543), - [sym_hash_ident] = ACTIONS(1543), - [sym_type_ident] = ACTIONS(1543), - [sym_ct_type_ident] = ACTIONS(1543), - [sym_const_ident] = ACTIONS(1541), - [sym_builtin] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_tlocal] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_defer] = ACTIONS(1541), - [anon_sym_assert] = ACTIONS(1541), - [anon_sym_nextcase] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_foreach] = ACTIONS(1541), - [anon_sym_foreach_r] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_int] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_asm] = ACTIONS(1541), - [anon_sym_DOLLARassert] = ACTIONS(1541), - [anon_sym_DOLLARerror] = ACTIONS(1541), - [anon_sym_DOLLARecho] = ACTIONS(1541), - [anon_sym_DOLLARif] = ACTIONS(1541), - [anon_sym_DOLLARendif] = ACTIONS(1541), - [anon_sym_DOLLARelse] = ACTIONS(1541), - [anon_sym_DOLLARswitch] = ACTIONS(1541), - [anon_sym_DOLLARfor] = ACTIONS(1541), - [anon_sym_DOLLARforeach] = ACTIONS(1541), - [anon_sym_DOLLARalignof] = ACTIONS(1541), - [anon_sym_DOLLARextnameof] = ACTIONS(1541), - [anon_sym_DOLLARnameof] = ACTIONS(1541), - [anon_sym_DOLLARoffsetof] = ACTIONS(1541), - [anon_sym_DOLLARqnameof] = ACTIONS(1541), - [anon_sym_DOLLARvaconst] = ACTIONS(1541), - [anon_sym_DOLLARvaarg] = ACTIONS(1541), - [anon_sym_DOLLARvaref] = ACTIONS(1541), - [anon_sym_DOLLARvaexpr] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_null] = ACTIONS(1541), - [anon_sym_DOLLARvacount] = ACTIONS(1541), - [anon_sym_DOLLAReval] = ACTIONS(1541), - [anon_sym_DOLLARis_const] = ACTIONS(1541), - [anon_sym_DOLLARsizeof] = ACTIONS(1541), - [anon_sym_DOLLARstringify] = ACTIONS(1541), - [anon_sym_DOLLARappend] = ACTIONS(1541), - [anon_sym_DOLLARconcat] = ACTIONS(1541), - [anon_sym_DOLLARdefined] = ACTIONS(1541), - [anon_sym_DOLLARembed] = ACTIONS(1541), - [anon_sym_DOLLARand] = ACTIONS(1541), - [anon_sym_DOLLARor] = ACTIONS(1541), - [anon_sym_DOLLARfeature] = ACTIONS(1541), - [anon_sym_DOLLARassignable] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_typeid] = ACTIONS(1541), - [anon_sym_LBRACE_PIPE] = ACTIONS(1543), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_ichar] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [anon_sym_ushort] = ACTIONS(1541), - [anon_sym_uint] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_ulong] = ACTIONS(1541), - [anon_sym_int128] = ACTIONS(1541), - [anon_sym_uint128] = ACTIONS(1541), - [anon_sym_float] = ACTIONS(1541), - [anon_sym_double] = ACTIONS(1541), - [anon_sym_float16] = ACTIONS(1541), - [anon_sym_bfloat16] = ACTIONS(1541), - [anon_sym_float128] = ACTIONS(1541), - [anon_sym_iptr] = ACTIONS(1541), - [anon_sym_uptr] = ACTIONS(1541), - [anon_sym_isz] = ACTIONS(1541), - [anon_sym_usz] = ACTIONS(1541), - [anon_sym_anyfault] = ACTIONS(1541), - [anon_sym_any] = ACTIONS(1541), - [anon_sym_DOLLARtypeof] = ACTIONS(1541), - [anon_sym_DOLLARtypefrom] = ACTIONS(1541), - [anon_sym_DOLLARevaltype] = ACTIONS(1541), - [anon_sym_DOLLARvatype] = ACTIONS(1541), - [sym_real_literal] = ACTIONS(1543), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARelse] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, - [563] = { - [sym_line_comment] = STATE(563), - [sym_doc_comment] = STATE(563), - [sym_block_comment] = STATE(563), - [sym_ident] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1547), - [sym_bytes_literal] = ACTIONS(1547), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1545), - [sym_at_ident] = ACTIONS(1547), - [sym_hash_ident] = ACTIONS(1547), - [sym_type_ident] = ACTIONS(1547), - [sym_ct_type_ident] = ACTIONS(1547), - [sym_const_ident] = ACTIONS(1545), - [sym_builtin] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_tlocal] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_fn] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_var] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_defer] = ACTIONS(1545), - [anon_sym_assert] = ACTIONS(1545), - [anon_sym_nextcase] = ACTIONS(1545), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_foreach] = ACTIONS(1545), - [anon_sym_foreach_r] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_int] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym_DOLLARassert] = ACTIONS(1545), - [anon_sym_DOLLARerror] = ACTIONS(1545), - [anon_sym_DOLLARecho] = ACTIONS(1545), - [anon_sym_DOLLARif] = ACTIONS(1545), - [anon_sym_DOLLARendif] = ACTIONS(1545), - [anon_sym_DOLLARelse] = ACTIONS(1545), - [anon_sym_DOLLARswitch] = ACTIONS(1545), - [anon_sym_DOLLARfor] = ACTIONS(1545), - [anon_sym_DOLLARforeach] = ACTIONS(1545), - [anon_sym_DOLLARalignof] = ACTIONS(1545), - [anon_sym_DOLLARextnameof] = ACTIONS(1545), - [anon_sym_DOLLARnameof] = ACTIONS(1545), - [anon_sym_DOLLARoffsetof] = ACTIONS(1545), - [anon_sym_DOLLARqnameof] = ACTIONS(1545), - [anon_sym_DOLLARvaconst] = ACTIONS(1545), - [anon_sym_DOLLARvaarg] = ACTIONS(1545), - [anon_sym_DOLLARvaref] = ACTIONS(1545), - [anon_sym_DOLLARvaexpr] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_null] = ACTIONS(1545), - [anon_sym_DOLLARvacount] = ACTIONS(1545), - [anon_sym_DOLLAReval] = ACTIONS(1545), - [anon_sym_DOLLARis_const] = ACTIONS(1545), - [anon_sym_DOLLARsizeof] = ACTIONS(1545), - [anon_sym_DOLLARstringify] = ACTIONS(1545), - [anon_sym_DOLLARappend] = ACTIONS(1545), - [anon_sym_DOLLARconcat] = ACTIONS(1545), - [anon_sym_DOLLARdefined] = ACTIONS(1545), - [anon_sym_DOLLARembed] = ACTIONS(1545), - [anon_sym_DOLLARand] = ACTIONS(1545), - [anon_sym_DOLLARor] = ACTIONS(1545), - [anon_sym_DOLLARfeature] = ACTIONS(1545), - [anon_sym_DOLLARassignable] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_typeid] = ACTIONS(1545), - [anon_sym_LBRACE_PIPE] = ACTIONS(1547), - [anon_sym_void] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_ichar] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [anon_sym_ushort] = ACTIONS(1545), - [anon_sym_uint] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_ulong] = ACTIONS(1545), - [anon_sym_int128] = ACTIONS(1545), - [anon_sym_uint128] = ACTIONS(1545), - [anon_sym_float] = ACTIONS(1545), - [anon_sym_double] = ACTIONS(1545), - [anon_sym_float16] = ACTIONS(1545), - [anon_sym_bfloat16] = ACTIONS(1545), - [anon_sym_float128] = ACTIONS(1545), - [anon_sym_iptr] = ACTIONS(1545), - [anon_sym_uptr] = ACTIONS(1545), - [anon_sym_isz] = ACTIONS(1545), - [anon_sym_usz] = ACTIONS(1545), - [anon_sym_anyfault] = ACTIONS(1545), - [anon_sym_any] = ACTIONS(1545), - [anon_sym_DOLLARtypeof] = ACTIONS(1545), - [anon_sym_DOLLARtypefrom] = ACTIONS(1545), - [anon_sym_DOLLARevaltype] = ACTIONS(1545), - [anon_sym_DOLLARvatype] = ACTIONS(1545), - [sym_real_literal] = ACTIONS(1547), + [511] = { + [sym_line_comment] = STATE(511), + [sym_doc_comment] = STATE(511), + [sym_block_comment] = STATE(511), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARendfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, - [564] = { - [sym_line_comment] = STATE(564), - [sym_doc_comment] = STATE(564), - [sym_block_comment] = STATE(564), - [sym_ident] = ACTIONS(1557), - [sym_integer_literal] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [sym_bytes_literal] = ACTIONS(1559), + [512] = { + [sym_line_comment] = STATE(512), + [sym_doc_comment] = STATE(512), + [sym_block_comment] = STATE(512), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARendif] = ACTIONS(1497), + [anon_sym_DOLLARelse] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), + }, + [513] = { + [sym_line_comment] = STATE(513), + [sym_doc_comment] = STATE(513), + [sym_block_comment] = STATE(513), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1557), - [sym_at_ident] = ACTIONS(1559), - [sym_hash_ident] = ACTIONS(1559), - [sym_type_ident] = ACTIONS(1559), - [sym_ct_type_ident] = ACTIONS(1559), - [sym_const_ident] = ACTIONS(1557), - [sym_builtin] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_tlocal] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_fn] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_var] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_defer] = ACTIONS(1557), - [anon_sym_assert] = ACTIONS(1557), - [anon_sym_nextcase] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_foreach] = ACTIONS(1557), - [anon_sym_foreach_r] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_int] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_asm] = ACTIONS(1557), - [anon_sym_DOLLARassert] = ACTIONS(1557), - [anon_sym_DOLLARerror] = ACTIONS(1557), - [anon_sym_DOLLARecho] = ACTIONS(1557), - [anon_sym_DOLLARif] = ACTIONS(1557), - [anon_sym_DOLLARendif] = ACTIONS(1557), - [anon_sym_DOLLARelse] = ACTIONS(1557), - [anon_sym_DOLLARswitch] = ACTIONS(1557), - [anon_sym_DOLLARfor] = ACTIONS(1557), - [anon_sym_DOLLARforeach] = ACTIONS(1557), - [anon_sym_DOLLARalignof] = ACTIONS(1557), - [anon_sym_DOLLARextnameof] = ACTIONS(1557), - [anon_sym_DOLLARnameof] = ACTIONS(1557), - [anon_sym_DOLLARoffsetof] = ACTIONS(1557), - [anon_sym_DOLLARqnameof] = ACTIONS(1557), - [anon_sym_DOLLARvaconst] = ACTIONS(1557), - [anon_sym_DOLLARvaarg] = ACTIONS(1557), - [anon_sym_DOLLARvaref] = ACTIONS(1557), - [anon_sym_DOLLARvaexpr] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [anon_sym_null] = ACTIONS(1557), - [anon_sym_DOLLARvacount] = ACTIONS(1557), - [anon_sym_DOLLAReval] = ACTIONS(1557), - [anon_sym_DOLLARis_const] = ACTIONS(1557), - [anon_sym_DOLLARsizeof] = ACTIONS(1557), - [anon_sym_DOLLARstringify] = ACTIONS(1557), - [anon_sym_DOLLARappend] = ACTIONS(1557), - [anon_sym_DOLLARconcat] = ACTIONS(1557), - [anon_sym_DOLLARdefined] = ACTIONS(1557), - [anon_sym_DOLLARembed] = ACTIONS(1557), - [anon_sym_DOLLARand] = ACTIONS(1557), - [anon_sym_DOLLARor] = ACTIONS(1557), - [anon_sym_DOLLARfeature] = ACTIONS(1557), - [anon_sym_DOLLARassignable] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_typeid] = ACTIONS(1557), - [anon_sym_LBRACE_PIPE] = ACTIONS(1559), - [anon_sym_void] = ACTIONS(1557), - [anon_sym_bool] = ACTIONS(1557), - [anon_sym_char] = ACTIONS(1557), - [anon_sym_ichar] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [anon_sym_ushort] = ACTIONS(1557), - [anon_sym_uint] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_ulong] = ACTIONS(1557), - [anon_sym_int128] = ACTIONS(1557), - [anon_sym_uint128] = ACTIONS(1557), - [anon_sym_float] = ACTIONS(1557), - [anon_sym_double] = ACTIONS(1557), - [anon_sym_float16] = ACTIONS(1557), - [anon_sym_bfloat16] = ACTIONS(1557), - [anon_sym_float128] = ACTIONS(1557), - [anon_sym_iptr] = ACTIONS(1557), - [anon_sym_uptr] = ACTIONS(1557), - [anon_sym_isz] = ACTIONS(1557), - [anon_sym_usz] = ACTIONS(1557), - [anon_sym_anyfault] = ACTIONS(1557), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_DOLLARtypeof] = ACTIONS(1557), - [anon_sym_DOLLARtypefrom] = ACTIONS(1557), - [anon_sym_DOLLARevaltype] = ACTIONS(1557), - [anon_sym_DOLLARvatype] = ACTIONS(1557), - [sym_real_literal] = ACTIONS(1559), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARendif] = ACTIONS(1637), + [anon_sym_DOLLARelse] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, - [565] = { - [sym_line_comment] = STATE(565), - [sym_doc_comment] = STATE(565), - [sym_block_comment] = STATE(565), - [sym_ident] = ACTIONS(1561), - [sym_integer_literal] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [sym_bytes_literal] = ACTIONS(1563), + [514] = { + [sym_line_comment] = STATE(514), + [sym_doc_comment] = STATE(514), + [sym_block_comment] = STATE(514), + [sym_ident] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_bytes_literal] = ACTIONS(1643), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1561), - [sym_at_ident] = ACTIONS(1563), - [sym_hash_ident] = ACTIONS(1563), - [sym_type_ident] = ACTIONS(1563), - [sym_ct_type_ident] = ACTIONS(1563), - [sym_const_ident] = ACTIONS(1561), - [sym_builtin] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_tlocal] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_fn] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_var] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_defer] = ACTIONS(1561), - [anon_sym_assert] = ACTIONS(1561), - [anon_sym_nextcase] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_foreach] = ACTIONS(1561), - [anon_sym_foreach_r] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_int] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_asm] = ACTIONS(1561), - [anon_sym_DOLLARassert] = ACTIONS(1561), - [anon_sym_DOLLARerror] = ACTIONS(1561), - [anon_sym_DOLLARecho] = ACTIONS(1561), - [anon_sym_DOLLARif] = ACTIONS(1561), - [anon_sym_DOLLARendif] = ACTIONS(1561), - [anon_sym_DOLLARelse] = ACTIONS(1561), - [anon_sym_DOLLARswitch] = ACTIONS(1561), - [anon_sym_DOLLARfor] = ACTIONS(1561), - [anon_sym_DOLLARforeach] = ACTIONS(1561), - [anon_sym_DOLLARalignof] = ACTIONS(1561), - [anon_sym_DOLLARextnameof] = ACTIONS(1561), - [anon_sym_DOLLARnameof] = ACTIONS(1561), - [anon_sym_DOLLARoffsetof] = ACTIONS(1561), - [anon_sym_DOLLARqnameof] = ACTIONS(1561), - [anon_sym_DOLLARvaconst] = ACTIONS(1561), - [anon_sym_DOLLARvaarg] = ACTIONS(1561), - [anon_sym_DOLLARvaref] = ACTIONS(1561), - [anon_sym_DOLLARvaexpr] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [anon_sym_DOLLARvacount] = ACTIONS(1561), - [anon_sym_DOLLAReval] = ACTIONS(1561), - [anon_sym_DOLLARis_const] = ACTIONS(1561), - [anon_sym_DOLLARsizeof] = ACTIONS(1561), - [anon_sym_DOLLARstringify] = ACTIONS(1561), - [anon_sym_DOLLARappend] = ACTIONS(1561), - [anon_sym_DOLLARconcat] = ACTIONS(1561), - [anon_sym_DOLLARdefined] = ACTIONS(1561), - [anon_sym_DOLLARembed] = ACTIONS(1561), - [anon_sym_DOLLARand] = ACTIONS(1561), - [anon_sym_DOLLARor] = ACTIONS(1561), - [anon_sym_DOLLARfeature] = ACTIONS(1561), - [anon_sym_DOLLARassignable] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_typeid] = ACTIONS(1561), - [anon_sym_LBRACE_PIPE] = ACTIONS(1563), - [anon_sym_void] = ACTIONS(1561), - [anon_sym_bool] = ACTIONS(1561), - [anon_sym_char] = ACTIONS(1561), - [anon_sym_ichar] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [anon_sym_ushort] = ACTIONS(1561), - [anon_sym_uint] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_ulong] = ACTIONS(1561), - [anon_sym_int128] = ACTIONS(1561), - [anon_sym_uint128] = ACTIONS(1561), - [anon_sym_float] = ACTIONS(1561), - [anon_sym_double] = ACTIONS(1561), - [anon_sym_float16] = ACTIONS(1561), - [anon_sym_bfloat16] = ACTIONS(1561), - [anon_sym_float128] = ACTIONS(1561), - [anon_sym_iptr] = ACTIONS(1561), - [anon_sym_uptr] = ACTIONS(1561), - [anon_sym_isz] = ACTIONS(1561), - [anon_sym_usz] = ACTIONS(1561), - [anon_sym_anyfault] = ACTIONS(1561), - [anon_sym_any] = ACTIONS(1561), - [anon_sym_DOLLARtypeof] = ACTIONS(1561), - [anon_sym_DOLLARtypefrom] = ACTIONS(1561), - [anon_sym_DOLLARevaltype] = ACTIONS(1561), - [anon_sym_DOLLARvatype] = ACTIONS(1561), - [sym_real_literal] = ACTIONS(1563), + [sym_ct_ident] = ACTIONS(1641), + [sym_at_ident] = ACTIONS(1643), + [sym_hash_ident] = ACTIONS(1643), + [sym_type_ident] = ACTIONS(1643), + [sym_ct_type_ident] = ACTIONS(1643), + [sym_const_ident] = ACTIONS(1641), + [sym_builtin] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_tlocal] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_var] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_defer] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_nextcase] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_foreach] = ACTIONS(1641), + [anon_sym_foreach_r] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym_DOLLARassert] = ACTIONS(1641), + [anon_sym_DOLLARerror] = ACTIONS(1641), + [anon_sym_DOLLARecho] = ACTIONS(1641), + [anon_sym_DOLLARif] = ACTIONS(1641), + [anon_sym_DOLLARendif] = ACTIONS(1641), + [anon_sym_DOLLARelse] = ACTIONS(1641), + [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARfor] = ACTIONS(1641), + [anon_sym_DOLLARforeach] = ACTIONS(1641), + [anon_sym_DOLLARalignof] = ACTIONS(1641), + [anon_sym_DOLLARextnameof] = ACTIONS(1641), + [anon_sym_DOLLARnameof] = ACTIONS(1641), + [anon_sym_DOLLARoffsetof] = ACTIONS(1641), + [anon_sym_DOLLARqnameof] = ACTIONS(1641), + [anon_sym_DOLLARvaconst] = ACTIONS(1641), + [anon_sym_DOLLARvaarg] = ACTIONS(1641), + [anon_sym_DOLLARvaref] = ACTIONS(1641), + [anon_sym_DOLLARvaexpr] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_DOLLARvacount] = ACTIONS(1641), + [anon_sym_DOLLAReval] = ACTIONS(1641), + [anon_sym_DOLLARis_const] = ACTIONS(1641), + [anon_sym_DOLLARsizeof] = ACTIONS(1641), + [anon_sym_DOLLARstringify] = ACTIONS(1641), + [anon_sym_DOLLARappend] = ACTIONS(1641), + [anon_sym_DOLLARconcat] = ACTIONS(1641), + [anon_sym_DOLLARdefined] = ACTIONS(1641), + [anon_sym_DOLLARembed] = ACTIONS(1641), + [anon_sym_DOLLARand] = ACTIONS(1641), + [anon_sym_DOLLARor] = ACTIONS(1641), + [anon_sym_DOLLARfeature] = ACTIONS(1641), + [anon_sym_DOLLARassignable] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_typeid] = ACTIONS(1641), + [anon_sym_LBRACE_PIPE] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_ichar] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_ushort] = ACTIONS(1641), + [anon_sym_uint] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_ulong] = ACTIONS(1641), + [anon_sym_int128] = ACTIONS(1641), + [anon_sym_uint128] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_float16] = ACTIONS(1641), + [anon_sym_bfloat16] = ACTIONS(1641), + [anon_sym_float128] = ACTIONS(1641), + [anon_sym_iptr] = ACTIONS(1641), + [anon_sym_uptr] = ACTIONS(1641), + [anon_sym_isz] = ACTIONS(1641), + [anon_sym_usz] = ACTIONS(1641), + [anon_sym_anyfault] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_DOLLARtypeof] = ACTIONS(1641), + [anon_sym_DOLLARtypefrom] = ACTIONS(1641), + [anon_sym_DOLLARevaltype] = ACTIONS(1641), + [anon_sym_DOLLARvatype] = ACTIONS(1641), + [sym_real_literal] = ACTIONS(1643), }, - [566] = { - [sym_line_comment] = STATE(566), - [sym_doc_comment] = STATE(566), - [sym_block_comment] = STATE(566), - [sym_ident] = ACTIONS(1573), - [sym_integer_literal] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [anon_sym_BQUOTE] = ACTIONS(1575), - [sym_bytes_literal] = ACTIONS(1575), + [515] = { + [sym_line_comment] = STATE(515), + [sym_doc_comment] = STATE(515), + [sym_block_comment] = STATE(515), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1573), - [sym_at_ident] = ACTIONS(1575), - [sym_hash_ident] = ACTIONS(1575), - [sym_type_ident] = ACTIONS(1575), - [sym_ct_type_ident] = ACTIONS(1575), - [sym_const_ident] = ACTIONS(1573), - [sym_builtin] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_tlocal] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_fn] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_var] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_defer] = ACTIONS(1573), - [anon_sym_assert] = ACTIONS(1573), - [anon_sym_nextcase] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_AMP_AMP] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_foreach] = ACTIONS(1573), - [anon_sym_foreach_r] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_int] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_asm] = ACTIONS(1573), - [anon_sym_DOLLARassert] = ACTIONS(1573), - [anon_sym_DOLLARerror] = ACTIONS(1573), - [anon_sym_DOLLARecho] = ACTIONS(1573), - [anon_sym_DOLLARif] = ACTIONS(1573), - [anon_sym_DOLLARendif] = ACTIONS(1573), - [anon_sym_DOLLARelse] = ACTIONS(1573), - [anon_sym_DOLLARswitch] = ACTIONS(1573), - [anon_sym_DOLLARfor] = ACTIONS(1573), - [anon_sym_DOLLARforeach] = ACTIONS(1573), - [anon_sym_DOLLARalignof] = ACTIONS(1573), - [anon_sym_DOLLARextnameof] = ACTIONS(1573), - [anon_sym_DOLLARnameof] = ACTIONS(1573), - [anon_sym_DOLLARoffsetof] = ACTIONS(1573), - [anon_sym_DOLLARqnameof] = ACTIONS(1573), - [anon_sym_DOLLARvaconst] = ACTIONS(1573), - [anon_sym_DOLLARvaarg] = ACTIONS(1573), - [anon_sym_DOLLARvaref] = ACTIONS(1573), - [anon_sym_DOLLARvaexpr] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [anon_sym_null] = ACTIONS(1573), - [anon_sym_DOLLARvacount] = ACTIONS(1573), - [anon_sym_DOLLAReval] = ACTIONS(1573), - [anon_sym_DOLLARis_const] = ACTIONS(1573), - [anon_sym_DOLLARsizeof] = ACTIONS(1573), - [anon_sym_DOLLARstringify] = ACTIONS(1573), - [anon_sym_DOLLARappend] = ACTIONS(1573), - [anon_sym_DOLLARconcat] = ACTIONS(1573), - [anon_sym_DOLLARdefined] = ACTIONS(1573), - [anon_sym_DOLLARembed] = ACTIONS(1573), - [anon_sym_DOLLARand] = ACTIONS(1573), - [anon_sym_DOLLARor] = ACTIONS(1573), - [anon_sym_DOLLARfeature] = ACTIONS(1573), - [anon_sym_DOLLARassignable] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_typeid] = ACTIONS(1573), - [anon_sym_LBRACE_PIPE] = ACTIONS(1575), - [anon_sym_void] = ACTIONS(1573), - [anon_sym_bool] = ACTIONS(1573), - [anon_sym_char] = ACTIONS(1573), - [anon_sym_ichar] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [anon_sym_ushort] = ACTIONS(1573), - [anon_sym_uint] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_ulong] = ACTIONS(1573), - [anon_sym_int128] = ACTIONS(1573), - [anon_sym_uint128] = ACTIONS(1573), - [anon_sym_float] = ACTIONS(1573), - [anon_sym_double] = ACTIONS(1573), - [anon_sym_float16] = ACTIONS(1573), - [anon_sym_bfloat16] = ACTIONS(1573), - [anon_sym_float128] = ACTIONS(1573), - [anon_sym_iptr] = ACTIONS(1573), - [anon_sym_uptr] = ACTIONS(1573), - [anon_sym_isz] = ACTIONS(1573), - [anon_sym_usz] = ACTIONS(1573), - [anon_sym_anyfault] = ACTIONS(1573), - [anon_sym_any] = ACTIONS(1573), - [anon_sym_DOLLARtypeof] = ACTIONS(1573), - [anon_sym_DOLLARtypefrom] = ACTIONS(1573), - [anon_sym_DOLLARevaltype] = ACTIONS(1573), - [anon_sym_DOLLARvatype] = ACTIONS(1573), - [sym_real_literal] = ACTIONS(1575), - }, - [567] = { - [sym_line_comment] = STATE(567), - [sym_doc_comment] = STATE(567), - [sym_block_comment] = STATE(567), - [sym_ident] = ACTIONS(1391), - [sym_integer_literal] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [anon_sym_BQUOTE] = ACTIONS(1393), - [sym_bytes_literal] = ACTIONS(1393), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1391), - [sym_at_ident] = ACTIONS(1393), - [sym_hash_ident] = ACTIONS(1393), - [sym_type_ident] = ACTIONS(1393), - [sym_ct_type_ident] = ACTIONS(1393), - [sym_const_ident] = ACTIONS(1391), - [sym_builtin] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_tlocal] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_var] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_defer] = ACTIONS(1391), - [anon_sym_assert] = ACTIONS(1391), - [anon_sym_nextcase] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_foreach] = ACTIONS(1391), - [anon_sym_foreach_r] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_int] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1391), - [anon_sym_DOLLARassert] = ACTIONS(1391), - [anon_sym_DOLLARerror] = ACTIONS(1391), - [anon_sym_DOLLARecho] = ACTIONS(1391), - [anon_sym_DOLLARif] = ACTIONS(1391), - [anon_sym_DOLLARendif] = ACTIONS(1391), - [anon_sym_DOLLARelse] = ACTIONS(1391), - [anon_sym_DOLLARswitch] = ACTIONS(1391), - [anon_sym_DOLLARfor] = ACTIONS(1391), - [anon_sym_DOLLARforeach] = ACTIONS(1391), - [anon_sym_DOLLARalignof] = ACTIONS(1391), - [anon_sym_DOLLARextnameof] = ACTIONS(1391), - [anon_sym_DOLLARnameof] = ACTIONS(1391), - [anon_sym_DOLLARoffsetof] = ACTIONS(1391), - [anon_sym_DOLLARqnameof] = ACTIONS(1391), - [anon_sym_DOLLARvaconst] = ACTIONS(1391), - [anon_sym_DOLLARvaarg] = ACTIONS(1391), - [anon_sym_DOLLARvaref] = ACTIONS(1391), - [anon_sym_DOLLARvaexpr] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1391), - [anon_sym_false] = ACTIONS(1391), - [anon_sym_null] = ACTIONS(1391), - [anon_sym_DOLLARvacount] = ACTIONS(1391), - [anon_sym_DOLLAReval] = ACTIONS(1391), - [anon_sym_DOLLARis_const] = ACTIONS(1391), - [anon_sym_DOLLARsizeof] = ACTIONS(1391), - [anon_sym_DOLLARstringify] = ACTIONS(1391), - [anon_sym_DOLLARappend] = ACTIONS(1391), - [anon_sym_DOLLARconcat] = ACTIONS(1391), - [anon_sym_DOLLARdefined] = ACTIONS(1391), - [anon_sym_DOLLARembed] = ACTIONS(1391), - [anon_sym_DOLLARand] = ACTIONS(1391), - [anon_sym_DOLLARor] = ACTIONS(1391), - [anon_sym_DOLLARfeature] = ACTIONS(1391), - [anon_sym_DOLLARassignable] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_typeid] = ACTIONS(1391), - [anon_sym_LBRACE_PIPE] = ACTIONS(1393), - [anon_sym_void] = ACTIONS(1391), - [anon_sym_bool] = ACTIONS(1391), - [anon_sym_char] = ACTIONS(1391), - [anon_sym_ichar] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_ushort] = ACTIONS(1391), - [anon_sym_uint] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_ulong] = ACTIONS(1391), - [anon_sym_int128] = ACTIONS(1391), - [anon_sym_uint128] = ACTIONS(1391), - [anon_sym_float] = ACTIONS(1391), - [anon_sym_double] = ACTIONS(1391), - [anon_sym_float16] = ACTIONS(1391), - [anon_sym_bfloat16] = ACTIONS(1391), - [anon_sym_float128] = ACTIONS(1391), - [anon_sym_iptr] = ACTIONS(1391), - [anon_sym_uptr] = ACTIONS(1391), - [anon_sym_isz] = ACTIONS(1391), - [anon_sym_usz] = ACTIONS(1391), - [anon_sym_anyfault] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_DOLLARtypeof] = ACTIONS(1391), - [anon_sym_DOLLARtypefrom] = ACTIONS(1391), - [anon_sym_DOLLARevaltype] = ACTIONS(1391), - [anon_sym_DOLLARvatype] = ACTIONS(1391), - [sym_real_literal] = ACTIONS(1393), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARendif] = ACTIONS(1645), + [anon_sym_DOLLARelse] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), }, - [568] = { - [sym_line_comment] = STATE(568), - [sym_doc_comment] = STATE(568), - [sym_block_comment] = STATE(568), - [sym_ident] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_bytes_literal] = ACTIONS(1583), + [516] = { + [sym_line_comment] = STATE(516), + [sym_doc_comment] = STATE(516), + [sym_block_comment] = STATE(516), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1581), - [sym_at_ident] = ACTIONS(1583), - [sym_hash_ident] = ACTIONS(1583), - [sym_type_ident] = ACTIONS(1583), - [sym_ct_type_ident] = ACTIONS(1583), - [sym_const_ident] = ACTIONS(1581), - [sym_builtin] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_tlocal] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_fn] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_var] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_defer] = ACTIONS(1581), - [anon_sym_assert] = ACTIONS(1581), - [anon_sym_nextcase] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_foreach] = ACTIONS(1581), - [anon_sym_foreach_r] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_int] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_asm] = ACTIONS(1581), - [anon_sym_DOLLARassert] = ACTIONS(1581), - [anon_sym_DOLLARerror] = ACTIONS(1581), - [anon_sym_DOLLARecho] = ACTIONS(1581), - [anon_sym_DOLLARif] = ACTIONS(1581), - [anon_sym_DOLLARendif] = ACTIONS(1581), - [anon_sym_DOLLARelse] = ACTIONS(1581), - [anon_sym_DOLLARswitch] = ACTIONS(1581), - [anon_sym_DOLLARfor] = ACTIONS(1581), - [anon_sym_DOLLARforeach] = ACTIONS(1581), - [anon_sym_DOLLARalignof] = ACTIONS(1581), - [anon_sym_DOLLARextnameof] = ACTIONS(1581), - [anon_sym_DOLLARnameof] = ACTIONS(1581), - [anon_sym_DOLLARoffsetof] = ACTIONS(1581), - [anon_sym_DOLLARqnameof] = ACTIONS(1581), - [anon_sym_DOLLARvaconst] = ACTIONS(1581), - [anon_sym_DOLLARvaarg] = ACTIONS(1581), - [anon_sym_DOLLARvaref] = ACTIONS(1581), - [anon_sym_DOLLARvaexpr] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1581), - [anon_sym_false] = ACTIONS(1581), - [anon_sym_null] = ACTIONS(1581), - [anon_sym_DOLLARvacount] = ACTIONS(1581), - [anon_sym_DOLLAReval] = ACTIONS(1581), - [anon_sym_DOLLARis_const] = ACTIONS(1581), - [anon_sym_DOLLARsizeof] = ACTIONS(1581), - [anon_sym_DOLLARstringify] = ACTIONS(1581), - [anon_sym_DOLLARappend] = ACTIONS(1581), - [anon_sym_DOLLARconcat] = ACTIONS(1581), - [anon_sym_DOLLARdefined] = ACTIONS(1581), - [anon_sym_DOLLARembed] = ACTIONS(1581), - [anon_sym_DOLLARand] = ACTIONS(1581), - [anon_sym_DOLLARor] = ACTIONS(1581), - [anon_sym_DOLLARfeature] = ACTIONS(1581), - [anon_sym_DOLLARassignable] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_typeid] = ACTIONS(1581), - [anon_sym_LBRACE_PIPE] = ACTIONS(1583), - [anon_sym_void] = ACTIONS(1581), - [anon_sym_bool] = ACTIONS(1581), - [anon_sym_char] = ACTIONS(1581), - [anon_sym_ichar] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [anon_sym_ushort] = ACTIONS(1581), - [anon_sym_uint] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_ulong] = ACTIONS(1581), - [anon_sym_int128] = ACTIONS(1581), - [anon_sym_uint128] = ACTIONS(1581), - [anon_sym_float] = ACTIONS(1581), - [anon_sym_double] = ACTIONS(1581), - [anon_sym_float16] = ACTIONS(1581), - [anon_sym_bfloat16] = ACTIONS(1581), - [anon_sym_float128] = ACTIONS(1581), - [anon_sym_iptr] = ACTIONS(1581), - [anon_sym_uptr] = ACTIONS(1581), - [anon_sym_isz] = ACTIONS(1581), - [anon_sym_usz] = ACTIONS(1581), - [anon_sym_anyfault] = ACTIONS(1581), - [anon_sym_any] = ACTIONS(1581), - [anon_sym_DOLLARtypeof] = ACTIONS(1581), - [anon_sym_DOLLARtypefrom] = ACTIONS(1581), - [anon_sym_DOLLARevaltype] = ACTIONS(1581), - [anon_sym_DOLLARvatype] = ACTIONS(1581), - [sym_real_literal] = ACTIONS(1583), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARendif] = ACTIONS(1525), + [anon_sym_DOLLARelse] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, - [569] = { - [sym_line_comment] = STATE(569), - [sym_doc_comment] = STATE(569), - [sym_block_comment] = STATE(569), - [sym_ident] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [anon_sym_BQUOTE] = ACTIONS(1397), - [sym_bytes_literal] = ACTIONS(1397), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1395), - [sym_at_ident] = ACTIONS(1397), - [sym_hash_ident] = ACTIONS(1397), - [sym_type_ident] = ACTIONS(1397), - [sym_ct_type_ident] = ACTIONS(1397), - [sym_const_ident] = ACTIONS(1395), - [sym_builtin] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_tlocal] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_var] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_defer] = ACTIONS(1395), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_nextcase] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_foreach] = ACTIONS(1395), - [anon_sym_foreach_r] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_int] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_asm] = ACTIONS(1395), - [anon_sym_DOLLARassert] = ACTIONS(1395), - [anon_sym_DOLLARerror] = ACTIONS(1395), - [anon_sym_DOLLARecho] = ACTIONS(1395), - [anon_sym_DOLLARif] = ACTIONS(1395), - [anon_sym_DOLLARendif] = ACTIONS(1395), - [anon_sym_DOLLARelse] = ACTIONS(1395), - [anon_sym_DOLLARswitch] = ACTIONS(1395), - [anon_sym_DOLLARfor] = ACTIONS(1395), - [anon_sym_DOLLARforeach] = ACTIONS(1395), - [anon_sym_DOLLARalignof] = ACTIONS(1395), - [anon_sym_DOLLARextnameof] = ACTIONS(1395), - [anon_sym_DOLLARnameof] = ACTIONS(1395), - [anon_sym_DOLLARoffsetof] = ACTIONS(1395), - [anon_sym_DOLLARqnameof] = ACTIONS(1395), - [anon_sym_DOLLARvaconst] = ACTIONS(1395), - [anon_sym_DOLLARvaarg] = ACTIONS(1395), - [anon_sym_DOLLARvaref] = ACTIONS(1395), - [anon_sym_DOLLARvaexpr] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_DOLLARvacount] = ACTIONS(1395), - [anon_sym_DOLLAReval] = ACTIONS(1395), - [anon_sym_DOLLARis_const] = ACTIONS(1395), - [anon_sym_DOLLARsizeof] = ACTIONS(1395), - [anon_sym_DOLLARstringify] = ACTIONS(1395), - [anon_sym_DOLLARappend] = ACTIONS(1395), - [anon_sym_DOLLARconcat] = ACTIONS(1395), - [anon_sym_DOLLARdefined] = ACTIONS(1395), - [anon_sym_DOLLARembed] = ACTIONS(1395), - [anon_sym_DOLLARand] = ACTIONS(1395), - [anon_sym_DOLLARor] = ACTIONS(1395), - [anon_sym_DOLLARfeature] = ACTIONS(1395), - [anon_sym_DOLLARassignable] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_typeid] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_ichar] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [anon_sym_ushort] = ACTIONS(1395), - [anon_sym_uint] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_ulong] = ACTIONS(1395), - [anon_sym_int128] = ACTIONS(1395), - [anon_sym_uint128] = ACTIONS(1395), - [anon_sym_float] = ACTIONS(1395), - [anon_sym_double] = ACTIONS(1395), - [anon_sym_float16] = ACTIONS(1395), - [anon_sym_bfloat16] = ACTIONS(1395), - [anon_sym_float128] = ACTIONS(1395), - [anon_sym_iptr] = ACTIONS(1395), - [anon_sym_uptr] = ACTIONS(1395), - [anon_sym_isz] = ACTIONS(1395), - [anon_sym_usz] = ACTIONS(1395), - [anon_sym_anyfault] = ACTIONS(1395), - [anon_sym_any] = ACTIONS(1395), - [anon_sym_DOLLARtypeof] = ACTIONS(1395), - [anon_sym_DOLLARtypefrom] = ACTIONS(1395), - [anon_sym_DOLLARevaltype] = ACTIONS(1395), - [anon_sym_DOLLARvatype] = ACTIONS(1395), - [sym_real_literal] = ACTIONS(1397), + [517] = { + [sym_line_comment] = STATE(517), + [sym_doc_comment] = STATE(517), + [sym_block_comment] = STATE(517), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARendif] = ACTIONS(1437), + [anon_sym_DOLLARelse] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, - [570] = { - [sym_line_comment] = STATE(570), - [sym_doc_comment] = STATE(570), - [sym_block_comment] = STATE(570), - [sym_ident] = ACTIONS(1565), - [sym_integer_literal] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [anon_sym_BQUOTE] = ACTIONS(1567), - [sym_bytes_literal] = ACTIONS(1567), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1565), - [sym_at_ident] = ACTIONS(1567), - [sym_hash_ident] = ACTIONS(1567), - [sym_type_ident] = ACTIONS(1567), - [sym_ct_type_ident] = ACTIONS(1567), - [sym_const_ident] = ACTIONS(1565), - [sym_builtin] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_tlocal] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_fn] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_var] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_defer] = ACTIONS(1565), - [anon_sym_assert] = ACTIONS(1565), - [anon_sym_nextcase] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_foreach] = ACTIONS(1565), - [anon_sym_foreach_r] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_int] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_asm] = ACTIONS(1565), - [anon_sym_DOLLARassert] = ACTIONS(1565), - [anon_sym_DOLLARerror] = ACTIONS(1565), - [anon_sym_DOLLARecho] = ACTIONS(1565), - [anon_sym_DOLLARif] = ACTIONS(1565), - [anon_sym_DOLLARendif] = ACTIONS(1565), - [anon_sym_DOLLARelse] = ACTIONS(1565), - [anon_sym_DOLLARswitch] = ACTIONS(1565), - [anon_sym_DOLLARfor] = ACTIONS(1565), - [anon_sym_DOLLARforeach] = ACTIONS(1565), - [anon_sym_DOLLARalignof] = ACTIONS(1565), - [anon_sym_DOLLARextnameof] = ACTIONS(1565), - [anon_sym_DOLLARnameof] = ACTIONS(1565), - [anon_sym_DOLLARoffsetof] = ACTIONS(1565), - [anon_sym_DOLLARqnameof] = ACTIONS(1565), - [anon_sym_DOLLARvaconst] = ACTIONS(1565), - [anon_sym_DOLLARvaarg] = ACTIONS(1565), - [anon_sym_DOLLARvaref] = ACTIONS(1565), - [anon_sym_DOLLARvaexpr] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1565), - [anon_sym_false] = ACTIONS(1565), - [anon_sym_null] = ACTIONS(1565), - [anon_sym_DOLLARvacount] = ACTIONS(1565), - [anon_sym_DOLLAReval] = ACTIONS(1565), - [anon_sym_DOLLARis_const] = ACTIONS(1565), - [anon_sym_DOLLARsizeof] = ACTIONS(1565), - [anon_sym_DOLLARstringify] = ACTIONS(1565), - [anon_sym_DOLLARappend] = ACTIONS(1565), - [anon_sym_DOLLARconcat] = ACTIONS(1565), - [anon_sym_DOLLARdefined] = ACTIONS(1565), - [anon_sym_DOLLARembed] = ACTIONS(1565), - [anon_sym_DOLLARand] = ACTIONS(1565), - [anon_sym_DOLLARor] = ACTIONS(1565), - [anon_sym_DOLLARfeature] = ACTIONS(1565), - [anon_sym_DOLLARassignable] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_typeid] = ACTIONS(1565), - [anon_sym_LBRACE_PIPE] = ACTIONS(1567), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_bool] = ACTIONS(1565), - [anon_sym_char] = ACTIONS(1565), - [anon_sym_ichar] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [anon_sym_ushort] = ACTIONS(1565), - [anon_sym_uint] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_ulong] = ACTIONS(1565), - [anon_sym_int128] = ACTIONS(1565), - [anon_sym_uint128] = ACTIONS(1565), - [anon_sym_float] = ACTIONS(1565), - [anon_sym_double] = ACTIONS(1565), - [anon_sym_float16] = ACTIONS(1565), - [anon_sym_bfloat16] = ACTIONS(1565), - [anon_sym_float128] = ACTIONS(1565), - [anon_sym_iptr] = ACTIONS(1565), - [anon_sym_uptr] = ACTIONS(1565), - [anon_sym_isz] = ACTIONS(1565), - [anon_sym_usz] = ACTIONS(1565), - [anon_sym_anyfault] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1565), - [anon_sym_DOLLARtypeof] = ACTIONS(1565), - [anon_sym_DOLLARtypefrom] = ACTIONS(1565), - [anon_sym_DOLLARevaltype] = ACTIONS(1565), - [anon_sym_DOLLARvatype] = ACTIONS(1565), - [sym_real_literal] = ACTIONS(1567), + [518] = { + [sym_line_comment] = STATE(518), + [sym_doc_comment] = STATE(518), + [sym_block_comment] = STATE(518), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARendif] = ACTIONS(1453), + [anon_sym_DOLLARelse] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, - [571] = { - [sym_line_comment] = STATE(571), - [sym_doc_comment] = STATE(571), - [sym_block_comment] = STATE(571), - [sym_ident] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1409), - [sym_bytes_literal] = ACTIONS(1409), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1407), - [sym_at_ident] = ACTIONS(1409), - [sym_hash_ident] = ACTIONS(1409), - [sym_type_ident] = ACTIONS(1409), - [sym_ct_type_ident] = ACTIONS(1409), - [sym_const_ident] = ACTIONS(1407), - [sym_builtin] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_tlocal] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_var] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_defer] = ACTIONS(1407), - [anon_sym_assert] = ACTIONS(1407), - [anon_sym_nextcase] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_foreach] = ACTIONS(1407), - [anon_sym_foreach_r] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_int] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym_DOLLARassert] = ACTIONS(1407), - [anon_sym_DOLLARerror] = ACTIONS(1407), - [anon_sym_DOLLARecho] = ACTIONS(1407), - [anon_sym_DOLLARif] = ACTIONS(1407), - [anon_sym_DOLLARendif] = ACTIONS(1407), - [anon_sym_DOLLARelse] = ACTIONS(1407), - [anon_sym_DOLLARswitch] = ACTIONS(1407), - [anon_sym_DOLLARfor] = ACTIONS(1407), - [anon_sym_DOLLARforeach] = ACTIONS(1407), - [anon_sym_DOLLARalignof] = ACTIONS(1407), - [anon_sym_DOLLARextnameof] = ACTIONS(1407), - [anon_sym_DOLLARnameof] = ACTIONS(1407), - [anon_sym_DOLLARoffsetof] = ACTIONS(1407), - [anon_sym_DOLLARqnameof] = ACTIONS(1407), - [anon_sym_DOLLARvaconst] = ACTIONS(1407), - [anon_sym_DOLLARvaarg] = ACTIONS(1407), - [anon_sym_DOLLARvaref] = ACTIONS(1407), - [anon_sym_DOLLARvaexpr] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [anon_sym_null] = ACTIONS(1407), - [anon_sym_DOLLARvacount] = ACTIONS(1407), - [anon_sym_DOLLAReval] = ACTIONS(1407), - [anon_sym_DOLLARis_const] = ACTIONS(1407), - [anon_sym_DOLLARsizeof] = ACTIONS(1407), - [anon_sym_DOLLARstringify] = ACTIONS(1407), - [anon_sym_DOLLARappend] = ACTIONS(1407), - [anon_sym_DOLLARconcat] = ACTIONS(1407), - [anon_sym_DOLLARdefined] = ACTIONS(1407), - [anon_sym_DOLLARembed] = ACTIONS(1407), - [anon_sym_DOLLARand] = ACTIONS(1407), - [anon_sym_DOLLARor] = ACTIONS(1407), - [anon_sym_DOLLARfeature] = ACTIONS(1407), - [anon_sym_DOLLARassignable] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_typeid] = ACTIONS(1407), - [anon_sym_LBRACE_PIPE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1407), - [anon_sym_bool] = ACTIONS(1407), - [anon_sym_char] = ACTIONS(1407), - [anon_sym_ichar] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_ushort] = ACTIONS(1407), - [anon_sym_uint] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_ulong] = ACTIONS(1407), - [anon_sym_int128] = ACTIONS(1407), - [anon_sym_uint128] = ACTIONS(1407), - [anon_sym_float] = ACTIONS(1407), - [anon_sym_double] = ACTIONS(1407), - [anon_sym_float16] = ACTIONS(1407), - [anon_sym_bfloat16] = ACTIONS(1407), - [anon_sym_float128] = ACTIONS(1407), - [anon_sym_iptr] = ACTIONS(1407), - [anon_sym_uptr] = ACTIONS(1407), - [anon_sym_isz] = ACTIONS(1407), - [anon_sym_usz] = ACTIONS(1407), - [anon_sym_anyfault] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_DOLLARtypeof] = ACTIONS(1407), - [anon_sym_DOLLARtypefrom] = ACTIONS(1407), - [anon_sym_DOLLARevaltype] = ACTIONS(1407), - [anon_sym_DOLLARvatype] = ACTIONS(1407), - [sym_real_literal] = ACTIONS(1409), + [519] = { + [sym_line_comment] = STATE(519), + [sym_doc_comment] = STATE(519), + [sym_block_comment] = STATE(519), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARendif] = ACTIONS(1465), + [anon_sym_DOLLARelse] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, - [572] = { - [sym_line_comment] = STATE(572), - [sym_doc_comment] = STATE(572), - [sym_block_comment] = STATE(572), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARendif] = ACTIONS(1475), - [anon_sym_DOLLARelse] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARappend] = ACTIONS(1475), - [anon_sym_DOLLARconcat] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), + [520] = { + [sym_line_comment] = STATE(520), + [sym_doc_comment] = STATE(520), + [sym_block_comment] = STATE(520), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARendif] = ACTIONS(1469), + [anon_sym_DOLLARelse] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, - [573] = { - [sym_line_comment] = STATE(573), - [sym_doc_comment] = STATE(573), - [sym_block_comment] = STATE(573), + [521] = { + [sym_line_comment] = STATE(521), + [sym_doc_comment] = STATE(521), + [sym_block_comment] = STATE(521), [sym_ident] = ACTIONS(1509), [sym_integer_literal] = ACTIONS(1511), [anon_sym_SQUOTE] = ACTIONS(1511), @@ -91654,358 +85540,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1509), [sym_real_literal] = ACTIONS(1511), }, - [574] = { - [sym_line_comment] = STATE(574), - [sym_doc_comment] = STATE(574), - [sym_block_comment] = STATE(574), - [sym_ident] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [anon_sym_BQUOTE] = ACTIONS(1519), - [sym_bytes_literal] = ACTIONS(1519), + [522] = { + [sym_line_comment] = STATE(522), + [sym_doc_comment] = STATE(522), + [sym_block_comment] = STATE(522), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1517), - [sym_at_ident] = ACTIONS(1519), - [sym_hash_ident] = ACTIONS(1519), - [sym_type_ident] = ACTIONS(1519), - [sym_ct_type_ident] = ACTIONS(1519), - [sym_const_ident] = ACTIONS(1517), - [sym_builtin] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_tlocal] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_var] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_defer] = ACTIONS(1517), - [anon_sym_assert] = ACTIONS(1517), - [anon_sym_nextcase] = ACTIONS(1517), - [anon_sym_switch] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_foreach] = ACTIONS(1517), - [anon_sym_foreach_r] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_int] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_asm] = ACTIONS(1517), - [anon_sym_DOLLARassert] = ACTIONS(1517), - [anon_sym_DOLLARerror] = ACTIONS(1517), - [anon_sym_DOLLARecho] = ACTIONS(1517), - [anon_sym_DOLLARif] = ACTIONS(1517), - [anon_sym_DOLLARendif] = ACTIONS(1517), - [anon_sym_DOLLARelse] = ACTIONS(1517), - [anon_sym_DOLLARswitch] = ACTIONS(1517), - [anon_sym_DOLLARfor] = ACTIONS(1517), - [anon_sym_DOLLARforeach] = ACTIONS(1517), - [anon_sym_DOLLARalignof] = ACTIONS(1517), - [anon_sym_DOLLARextnameof] = ACTIONS(1517), - [anon_sym_DOLLARnameof] = ACTIONS(1517), - [anon_sym_DOLLARoffsetof] = ACTIONS(1517), - [anon_sym_DOLLARqnameof] = ACTIONS(1517), - [anon_sym_DOLLARvaconst] = ACTIONS(1517), - [anon_sym_DOLLARvaarg] = ACTIONS(1517), - [anon_sym_DOLLARvaref] = ACTIONS(1517), - [anon_sym_DOLLARvaexpr] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_null] = ACTIONS(1517), - [anon_sym_DOLLARvacount] = ACTIONS(1517), - [anon_sym_DOLLAReval] = ACTIONS(1517), - [anon_sym_DOLLARis_const] = ACTIONS(1517), - [anon_sym_DOLLARsizeof] = ACTIONS(1517), - [anon_sym_DOLLARstringify] = ACTIONS(1517), - [anon_sym_DOLLARappend] = ACTIONS(1517), - [anon_sym_DOLLARconcat] = ACTIONS(1517), - [anon_sym_DOLLARdefined] = ACTIONS(1517), - [anon_sym_DOLLARembed] = ACTIONS(1517), - [anon_sym_DOLLARand] = ACTIONS(1517), - [anon_sym_DOLLARor] = ACTIONS(1517), - [anon_sym_DOLLARfeature] = ACTIONS(1517), - [anon_sym_DOLLARassignable] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_typeid] = ACTIONS(1517), - [anon_sym_LBRACE_PIPE] = ACTIONS(1519), - [anon_sym_void] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_ichar] = ACTIONS(1517), - [anon_sym_short] = ACTIONS(1517), - [anon_sym_ushort] = ACTIONS(1517), - [anon_sym_uint] = ACTIONS(1517), - [anon_sym_long] = ACTIONS(1517), - [anon_sym_ulong] = ACTIONS(1517), - [anon_sym_int128] = ACTIONS(1517), - [anon_sym_uint128] = ACTIONS(1517), - [anon_sym_float] = ACTIONS(1517), - [anon_sym_double] = ACTIONS(1517), - [anon_sym_float16] = ACTIONS(1517), - [anon_sym_bfloat16] = ACTIONS(1517), - [anon_sym_float128] = ACTIONS(1517), - [anon_sym_iptr] = ACTIONS(1517), - [anon_sym_uptr] = ACTIONS(1517), - [anon_sym_isz] = ACTIONS(1517), - [anon_sym_usz] = ACTIONS(1517), - [anon_sym_anyfault] = ACTIONS(1517), - [anon_sym_any] = ACTIONS(1517), - [anon_sym_DOLLARtypeof] = ACTIONS(1517), - [anon_sym_DOLLARtypefrom] = ACTIONS(1517), - [anon_sym_DOLLARevaltype] = ACTIONS(1517), - [anon_sym_DOLLARvatype] = ACTIONS(1517), - [sym_real_literal] = ACTIONS(1519), - }, - [575] = { - [sym_line_comment] = STATE(575), - [sym_doc_comment] = STATE(575), - [sym_block_comment] = STATE(575), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARendif] = ACTIONS(1463), - [anon_sym_DOLLARelse] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARappend] = ACTIONS(1463), - [anon_sym_DOLLARconcat] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), - }, - [576] = { - [sym_line_comment] = STATE(576), - [sym_doc_comment] = STATE(576), - [sym_block_comment] = STATE(576), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARendif] = ACTIONS(1491), - [anon_sym_DOLLARelse] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARappend] = ACTIONS(1491), - [anon_sym_DOLLARconcat] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARendif] = ACTIONS(1513), + [anon_sym_DOLLARelse] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, - [577] = { - [sym_line_comment] = STATE(577), - [sym_doc_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [523] = { + [sym_line_comment] = STATE(523), + [sym_doc_comment] = STATE(523), + [sym_block_comment] = STATE(523), [sym_ident] = ACTIONS(1585), [sym_integer_literal] = ACTIONS(1587), [anon_sym_SQUOTE] = ACTIONS(1587), @@ -92118,2196 +85772,1286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1585), [sym_real_literal] = ACTIONS(1587), }, - [578] = { - [sym_line_comment] = STATE(578), - [sym_doc_comment] = STATE(578), - [sym_block_comment] = STATE(578), - [sym_ident] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_bytes_literal] = ACTIONS(1515), + [524] = { + [sym_line_comment] = STATE(524), + [sym_doc_comment] = STATE(524), + [sym_block_comment] = STATE(524), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARendif] = ACTIONS(1601), + [anon_sym_DOLLARelse] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), + }, + [525] = { + [sym_line_comment] = STATE(525), + [sym_doc_comment] = STATE(525), + [sym_block_comment] = STATE(525), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARendif] = ACTIONS(1501), + [anon_sym_DOLLARelse] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), + }, + [526] = { + [sym_line_comment] = STATE(526), + [sym_doc_comment] = STATE(526), + [sym_block_comment] = STATE(526), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARendif] = ACTIONS(1549), + [anon_sym_DOLLARelse] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), + }, + [527] = { + [sym_line_comment] = STATE(527), + [sym_doc_comment] = STATE(527), + [sym_block_comment] = STATE(527), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARendif] = ACTIONS(1589), + [anon_sym_DOLLARelse] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), + }, + [528] = { + [sym_line_comment] = STATE(528), + [sym_doc_comment] = STATE(528), + [sym_block_comment] = STATE(528), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARendif] = ACTIONS(1505), + [anon_sym_DOLLARelse] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), + }, + [529] = { + [sym_line_comment] = STATE(529), + [sym_doc_comment] = STATE(529), + [sym_block_comment] = STATE(529), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARendif] = ACTIONS(1565), + [anon_sym_DOLLARelse] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), + }, + [530] = { + [sym_line_comment] = STATE(530), + [sym_doc_comment] = STATE(530), + [sym_block_comment] = STATE(530), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1513), - [sym_at_ident] = ACTIONS(1515), - [sym_hash_ident] = ACTIONS(1515), - [sym_type_ident] = ACTIONS(1515), - [sym_ct_type_ident] = ACTIONS(1515), - [sym_const_ident] = ACTIONS(1513), - [sym_builtin] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_tlocal] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_var] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_defer] = ACTIONS(1513), - [anon_sym_assert] = ACTIONS(1513), - [anon_sym_nextcase] = ACTIONS(1513), - [anon_sym_switch] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_foreach] = ACTIONS(1513), - [anon_sym_foreach_r] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_do] = ACTIONS(1513), - [anon_sym_int] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_asm] = ACTIONS(1513), - [anon_sym_DOLLARassert] = ACTIONS(1513), - [anon_sym_DOLLARerror] = ACTIONS(1513), - [anon_sym_DOLLARecho] = ACTIONS(1513), - [anon_sym_DOLLARif] = ACTIONS(1513), - [anon_sym_DOLLARendif] = ACTIONS(1513), - [anon_sym_DOLLARelse] = ACTIONS(1513), - [anon_sym_DOLLARswitch] = ACTIONS(1513), - [anon_sym_DOLLARfor] = ACTIONS(1513), - [anon_sym_DOLLARforeach] = ACTIONS(1513), - [anon_sym_DOLLARalignof] = ACTIONS(1513), - [anon_sym_DOLLARextnameof] = ACTIONS(1513), - [anon_sym_DOLLARnameof] = ACTIONS(1513), - [anon_sym_DOLLARoffsetof] = ACTIONS(1513), - [anon_sym_DOLLARqnameof] = ACTIONS(1513), - [anon_sym_DOLLARvaconst] = ACTIONS(1513), - [anon_sym_DOLLARvaarg] = ACTIONS(1513), - [anon_sym_DOLLARvaref] = ACTIONS(1513), - [anon_sym_DOLLARvaexpr] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_null] = ACTIONS(1513), - [anon_sym_DOLLARvacount] = ACTIONS(1513), - [anon_sym_DOLLAReval] = ACTIONS(1513), - [anon_sym_DOLLARis_const] = ACTIONS(1513), - [anon_sym_DOLLARsizeof] = ACTIONS(1513), - [anon_sym_DOLLARstringify] = ACTIONS(1513), - [anon_sym_DOLLARappend] = ACTIONS(1513), - [anon_sym_DOLLARconcat] = ACTIONS(1513), - [anon_sym_DOLLARdefined] = ACTIONS(1513), - [anon_sym_DOLLARembed] = ACTIONS(1513), - [anon_sym_DOLLARand] = ACTIONS(1513), - [anon_sym_DOLLARor] = ACTIONS(1513), - [anon_sym_DOLLARfeature] = ACTIONS(1513), - [anon_sym_DOLLARassignable] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_typeid] = ACTIONS(1513), - [anon_sym_LBRACE_PIPE] = ACTIONS(1515), - [anon_sym_void] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_ichar] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [anon_sym_ushort] = ACTIONS(1513), - [anon_sym_uint] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_ulong] = ACTIONS(1513), - [anon_sym_int128] = ACTIONS(1513), - [anon_sym_uint128] = ACTIONS(1513), - [anon_sym_float] = ACTIONS(1513), - [anon_sym_double] = ACTIONS(1513), - [anon_sym_float16] = ACTIONS(1513), - [anon_sym_bfloat16] = ACTIONS(1513), - [anon_sym_float128] = ACTIONS(1513), - [anon_sym_iptr] = ACTIONS(1513), - [anon_sym_uptr] = ACTIONS(1513), - [anon_sym_isz] = ACTIONS(1513), - [anon_sym_usz] = ACTIONS(1513), - [anon_sym_anyfault] = ACTIONS(1513), - [anon_sym_any] = ACTIONS(1513), - [anon_sym_DOLLARtypeof] = ACTIONS(1513), - [anon_sym_DOLLARtypefrom] = ACTIONS(1513), - [anon_sym_DOLLARevaltype] = ACTIONS(1513), - [anon_sym_DOLLARvatype] = ACTIONS(1513), - [sym_real_literal] = ACTIONS(1515), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARendfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, - [579] = { - [sym_line_comment] = STATE(579), - [sym_doc_comment] = STATE(579), - [sym_block_comment] = STATE(579), - [sym_ident] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [anon_sym_BQUOTE] = ACTIONS(1543), - [sym_bytes_literal] = ACTIONS(1543), + [531] = { + [sym_line_comment] = STATE(531), + [sym_doc_comment] = STATE(531), + [sym_block_comment] = STATE(531), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1541), - [sym_at_ident] = ACTIONS(1543), - [sym_hash_ident] = ACTIONS(1543), - [sym_type_ident] = ACTIONS(1543), - [sym_ct_type_ident] = ACTIONS(1543), - [sym_const_ident] = ACTIONS(1541), - [sym_builtin] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_tlocal] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_defer] = ACTIONS(1541), - [anon_sym_assert] = ACTIONS(1541), - [anon_sym_nextcase] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_foreach] = ACTIONS(1541), - [anon_sym_foreach_r] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_int] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_asm] = ACTIONS(1541), - [anon_sym_DOLLARassert] = ACTIONS(1541), - [anon_sym_DOLLARerror] = ACTIONS(1541), - [anon_sym_DOLLARecho] = ACTIONS(1541), - [anon_sym_DOLLARif] = ACTIONS(1541), - [anon_sym_DOLLARswitch] = ACTIONS(1541), - [anon_sym_DOLLARfor] = ACTIONS(1541), - [anon_sym_DOLLARendfor] = ACTIONS(1541), - [anon_sym_DOLLARforeach] = ACTIONS(1541), - [anon_sym_DOLLARalignof] = ACTIONS(1541), - [anon_sym_DOLLARextnameof] = ACTIONS(1541), - [anon_sym_DOLLARnameof] = ACTIONS(1541), - [anon_sym_DOLLARoffsetof] = ACTIONS(1541), - [anon_sym_DOLLARqnameof] = ACTIONS(1541), - [anon_sym_DOLLARvaconst] = ACTIONS(1541), - [anon_sym_DOLLARvaarg] = ACTIONS(1541), - [anon_sym_DOLLARvaref] = ACTIONS(1541), - [anon_sym_DOLLARvaexpr] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_null] = ACTIONS(1541), - [anon_sym_DOLLARvacount] = ACTIONS(1541), - [anon_sym_DOLLAReval] = ACTIONS(1541), - [anon_sym_DOLLARis_const] = ACTIONS(1541), - [anon_sym_DOLLARsizeof] = ACTIONS(1541), - [anon_sym_DOLLARstringify] = ACTIONS(1541), - [anon_sym_DOLLARappend] = ACTIONS(1541), - [anon_sym_DOLLARconcat] = ACTIONS(1541), - [anon_sym_DOLLARdefined] = ACTIONS(1541), - [anon_sym_DOLLARembed] = ACTIONS(1541), - [anon_sym_DOLLARand] = ACTIONS(1541), - [anon_sym_DOLLARor] = ACTIONS(1541), - [anon_sym_DOLLARfeature] = ACTIONS(1541), - [anon_sym_DOLLARassignable] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_typeid] = ACTIONS(1541), - [anon_sym_LBRACE_PIPE] = ACTIONS(1543), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_ichar] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [anon_sym_ushort] = ACTIONS(1541), - [anon_sym_uint] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_ulong] = ACTIONS(1541), - [anon_sym_int128] = ACTIONS(1541), - [anon_sym_uint128] = ACTIONS(1541), - [anon_sym_float] = ACTIONS(1541), - [anon_sym_double] = ACTIONS(1541), - [anon_sym_float16] = ACTIONS(1541), - [anon_sym_bfloat16] = ACTIONS(1541), - [anon_sym_float128] = ACTIONS(1541), - [anon_sym_iptr] = ACTIONS(1541), - [anon_sym_uptr] = ACTIONS(1541), - [anon_sym_isz] = ACTIONS(1541), - [anon_sym_usz] = ACTIONS(1541), - [anon_sym_anyfault] = ACTIONS(1541), - [anon_sym_any] = ACTIONS(1541), - [anon_sym_DOLLARtypeof] = ACTIONS(1541), - [anon_sym_DOLLARtypefrom] = ACTIONS(1541), - [anon_sym_DOLLARevaltype] = ACTIONS(1541), - [anon_sym_DOLLARvatype] = ACTIONS(1541), - [sym_real_literal] = ACTIONS(1543), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARendif] = ACTIONS(1569), + [anon_sym_DOLLARelse] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, - [580] = { - [sym_line_comment] = STATE(580), - [sym_doc_comment] = STATE(580), - [sym_block_comment] = STATE(580), - [sym_ident] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_bytes_literal] = ACTIONS(1515), + [532] = { + [sym_line_comment] = STATE(532), + [sym_doc_comment] = STATE(532), + [sym_block_comment] = STATE(532), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1513), - [sym_at_ident] = ACTIONS(1515), - [sym_hash_ident] = ACTIONS(1515), - [sym_type_ident] = ACTIONS(1515), - [sym_ct_type_ident] = ACTIONS(1515), - [sym_const_ident] = ACTIONS(1513), - [sym_builtin] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_tlocal] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_var] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_defer] = ACTIONS(1513), - [anon_sym_assert] = ACTIONS(1513), - [anon_sym_nextcase] = ACTIONS(1513), - [anon_sym_switch] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_foreach] = ACTIONS(1513), - [anon_sym_foreach_r] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_do] = ACTIONS(1513), - [anon_sym_int] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_asm] = ACTIONS(1513), - [anon_sym_DOLLARassert] = ACTIONS(1513), - [anon_sym_DOLLARerror] = ACTIONS(1513), - [anon_sym_DOLLARecho] = ACTIONS(1513), - [anon_sym_DOLLARif] = ACTIONS(1513), - [anon_sym_DOLLARendif] = ACTIONS(1513), - [anon_sym_DOLLARswitch] = ACTIONS(1513), - [anon_sym_DOLLARfor] = ACTIONS(1513), - [anon_sym_DOLLARforeach] = ACTIONS(1513), - [anon_sym_DOLLARalignof] = ACTIONS(1513), - [anon_sym_DOLLARextnameof] = ACTIONS(1513), - [anon_sym_DOLLARnameof] = ACTIONS(1513), - [anon_sym_DOLLARoffsetof] = ACTIONS(1513), - [anon_sym_DOLLARqnameof] = ACTIONS(1513), - [anon_sym_DOLLARvaconst] = ACTIONS(1513), - [anon_sym_DOLLARvaarg] = ACTIONS(1513), - [anon_sym_DOLLARvaref] = ACTIONS(1513), - [anon_sym_DOLLARvaexpr] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_null] = ACTIONS(1513), - [anon_sym_DOLLARvacount] = ACTIONS(1513), - [anon_sym_DOLLAReval] = ACTIONS(1513), - [anon_sym_DOLLARis_const] = ACTIONS(1513), - [anon_sym_DOLLARsizeof] = ACTIONS(1513), - [anon_sym_DOLLARstringify] = ACTIONS(1513), - [anon_sym_DOLLARappend] = ACTIONS(1513), - [anon_sym_DOLLARconcat] = ACTIONS(1513), - [anon_sym_DOLLARdefined] = ACTIONS(1513), - [anon_sym_DOLLARembed] = ACTIONS(1513), - [anon_sym_DOLLARand] = ACTIONS(1513), - [anon_sym_DOLLARor] = ACTIONS(1513), - [anon_sym_DOLLARfeature] = ACTIONS(1513), - [anon_sym_DOLLARassignable] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_typeid] = ACTIONS(1513), - [anon_sym_LBRACE_PIPE] = ACTIONS(1515), - [anon_sym_void] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_ichar] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [anon_sym_ushort] = ACTIONS(1513), - [anon_sym_uint] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_ulong] = ACTIONS(1513), - [anon_sym_int128] = ACTIONS(1513), - [anon_sym_uint128] = ACTIONS(1513), - [anon_sym_float] = ACTIONS(1513), - [anon_sym_double] = ACTIONS(1513), - [anon_sym_float16] = ACTIONS(1513), - [anon_sym_bfloat16] = ACTIONS(1513), - [anon_sym_float128] = ACTIONS(1513), - [anon_sym_iptr] = ACTIONS(1513), - [anon_sym_uptr] = ACTIONS(1513), - [anon_sym_isz] = ACTIONS(1513), - [anon_sym_usz] = ACTIONS(1513), - [anon_sym_anyfault] = ACTIONS(1513), - [anon_sym_any] = ACTIONS(1513), - [anon_sym_DOLLARtypeof] = ACTIONS(1513), - [anon_sym_DOLLARtypefrom] = ACTIONS(1513), - [anon_sym_DOLLARevaltype] = ACTIONS(1513), - [anon_sym_DOLLARvatype] = ACTIONS(1513), - [sym_real_literal] = ACTIONS(1515), - }, - [581] = { - [sym_line_comment] = STATE(581), - [sym_doc_comment] = STATE(581), - [sym_block_comment] = STATE(581), - [sym_ident] = ACTIONS(1671), - [sym_integer_literal] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [anon_sym_BQUOTE] = ACTIONS(1673), - [sym_bytes_literal] = ACTIONS(1673), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1671), - [sym_at_ident] = ACTIONS(1673), - [sym_hash_ident] = ACTIONS(1673), - [sym_type_ident] = ACTIONS(1673), - [sym_ct_type_ident] = ACTIONS(1673), - [sym_const_ident] = ACTIONS(1671), - [sym_builtin] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_tlocal] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_fn] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_var] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_defer] = ACTIONS(1671), - [anon_sym_assert] = ACTIONS(1671), - [anon_sym_nextcase] = ACTIONS(1671), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_foreach] = ACTIONS(1671), - [anon_sym_foreach_r] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_do] = ACTIONS(1671), - [anon_sym_int] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1673), - [anon_sym_asm] = ACTIONS(1671), - [anon_sym_DOLLARassert] = ACTIONS(1671), - [anon_sym_DOLLARerror] = ACTIONS(1671), - [anon_sym_DOLLARecho] = ACTIONS(1671), - [anon_sym_DOLLARif] = ACTIONS(1671), - [anon_sym_DOLLARswitch] = ACTIONS(1671), - [anon_sym_DOLLARfor] = ACTIONS(1671), - [anon_sym_DOLLARforeach] = ACTIONS(1671), - [anon_sym_DOLLARendforeach] = ACTIONS(1671), - [anon_sym_DOLLARalignof] = ACTIONS(1671), - [anon_sym_DOLLARextnameof] = ACTIONS(1671), - [anon_sym_DOLLARnameof] = ACTIONS(1671), - [anon_sym_DOLLARoffsetof] = ACTIONS(1671), - [anon_sym_DOLLARqnameof] = ACTIONS(1671), - [anon_sym_DOLLARvaconst] = ACTIONS(1671), - [anon_sym_DOLLARvaarg] = ACTIONS(1671), - [anon_sym_DOLLARvaref] = ACTIONS(1671), - [anon_sym_DOLLARvaexpr] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = ACTIONS(1671), - [anon_sym_null] = ACTIONS(1671), - [anon_sym_DOLLARvacount] = ACTIONS(1671), - [anon_sym_DOLLAReval] = ACTIONS(1671), - [anon_sym_DOLLARis_const] = ACTIONS(1671), - [anon_sym_DOLLARsizeof] = ACTIONS(1671), - [anon_sym_DOLLARstringify] = ACTIONS(1671), - [anon_sym_DOLLARappend] = ACTIONS(1671), - [anon_sym_DOLLARconcat] = ACTIONS(1671), - [anon_sym_DOLLARdefined] = ACTIONS(1671), - [anon_sym_DOLLARembed] = ACTIONS(1671), - [anon_sym_DOLLARand] = ACTIONS(1671), - [anon_sym_DOLLARor] = ACTIONS(1671), - [anon_sym_DOLLARfeature] = ACTIONS(1671), - [anon_sym_DOLLARassignable] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_typeid] = ACTIONS(1671), - [anon_sym_LBRACE_PIPE] = ACTIONS(1673), - [anon_sym_void] = ACTIONS(1671), - [anon_sym_bool] = ACTIONS(1671), - [anon_sym_char] = ACTIONS(1671), - [anon_sym_ichar] = ACTIONS(1671), - [anon_sym_short] = ACTIONS(1671), - [anon_sym_ushort] = ACTIONS(1671), - [anon_sym_uint] = ACTIONS(1671), - [anon_sym_long] = ACTIONS(1671), - [anon_sym_ulong] = ACTIONS(1671), - [anon_sym_int128] = ACTIONS(1671), - [anon_sym_uint128] = ACTIONS(1671), - [anon_sym_float] = ACTIONS(1671), - [anon_sym_double] = ACTIONS(1671), - [anon_sym_float16] = ACTIONS(1671), - [anon_sym_bfloat16] = ACTIONS(1671), - [anon_sym_float128] = ACTIONS(1671), - [anon_sym_iptr] = ACTIONS(1671), - [anon_sym_uptr] = ACTIONS(1671), - [anon_sym_isz] = ACTIONS(1671), - [anon_sym_usz] = ACTIONS(1671), - [anon_sym_anyfault] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_DOLLARtypeof] = ACTIONS(1671), - [anon_sym_DOLLARtypefrom] = ACTIONS(1671), - [anon_sym_DOLLARevaltype] = ACTIONS(1671), - [anon_sym_DOLLARvatype] = ACTIONS(1671), - [sym_real_literal] = ACTIONS(1673), - }, - [582] = { - [sym_line_comment] = STATE(582), - [sym_doc_comment] = STATE(582), - [sym_block_comment] = STATE(582), - [sym_ident] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [anon_sym_BQUOTE] = ACTIONS(1677), - [sym_bytes_literal] = ACTIONS(1677), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1675), - [sym_at_ident] = ACTIONS(1677), - [sym_hash_ident] = ACTIONS(1677), - [sym_type_ident] = ACTIONS(1677), - [sym_ct_type_ident] = ACTIONS(1677), - [sym_const_ident] = ACTIONS(1675), - [sym_builtin] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_tlocal] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_fn] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [anon_sym_var] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_defer] = ACTIONS(1675), - [anon_sym_assert] = ACTIONS(1675), - [anon_sym_nextcase] = ACTIONS(1675), - [anon_sym_switch] = ACTIONS(1675), - [anon_sym_AMP_AMP] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_foreach] = ACTIONS(1675), - [anon_sym_foreach_r] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_int] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_asm] = ACTIONS(1675), - [anon_sym_DOLLARassert] = ACTIONS(1675), - [anon_sym_DOLLARerror] = ACTIONS(1675), - [anon_sym_DOLLARecho] = ACTIONS(1675), - [anon_sym_DOLLARif] = ACTIONS(1675), - [anon_sym_DOLLARswitch] = ACTIONS(1675), - [anon_sym_DOLLARfor] = ACTIONS(1675), - [anon_sym_DOLLARforeach] = ACTIONS(1675), - [anon_sym_DOLLARendforeach] = ACTIONS(1675), - [anon_sym_DOLLARalignof] = ACTIONS(1675), - [anon_sym_DOLLARextnameof] = ACTIONS(1675), - [anon_sym_DOLLARnameof] = ACTIONS(1675), - [anon_sym_DOLLARoffsetof] = ACTIONS(1675), - [anon_sym_DOLLARqnameof] = ACTIONS(1675), - [anon_sym_DOLLARvaconst] = ACTIONS(1675), - [anon_sym_DOLLARvaarg] = ACTIONS(1675), - [anon_sym_DOLLARvaref] = ACTIONS(1675), - [anon_sym_DOLLARvaexpr] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [anon_sym_null] = ACTIONS(1675), - [anon_sym_DOLLARvacount] = ACTIONS(1675), - [anon_sym_DOLLAReval] = ACTIONS(1675), - [anon_sym_DOLLARis_const] = ACTIONS(1675), - [anon_sym_DOLLARsizeof] = ACTIONS(1675), - [anon_sym_DOLLARstringify] = ACTIONS(1675), - [anon_sym_DOLLARappend] = ACTIONS(1675), - [anon_sym_DOLLARconcat] = ACTIONS(1675), - [anon_sym_DOLLARdefined] = ACTIONS(1675), - [anon_sym_DOLLARembed] = ACTIONS(1675), - [anon_sym_DOLLARand] = ACTIONS(1675), - [anon_sym_DOLLARor] = ACTIONS(1675), - [anon_sym_DOLLARfeature] = ACTIONS(1675), - [anon_sym_DOLLARassignable] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1677), - [anon_sym_TILDE] = ACTIONS(1677), - [anon_sym_PLUS_PLUS] = ACTIONS(1677), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_typeid] = ACTIONS(1675), - [anon_sym_LBRACE_PIPE] = ACTIONS(1677), - [anon_sym_void] = ACTIONS(1675), - [anon_sym_bool] = ACTIONS(1675), - [anon_sym_char] = ACTIONS(1675), - [anon_sym_ichar] = ACTIONS(1675), - [anon_sym_short] = ACTIONS(1675), - [anon_sym_ushort] = ACTIONS(1675), - [anon_sym_uint] = ACTIONS(1675), - [anon_sym_long] = ACTIONS(1675), - [anon_sym_ulong] = ACTIONS(1675), - [anon_sym_int128] = ACTIONS(1675), - [anon_sym_uint128] = ACTIONS(1675), - [anon_sym_float] = ACTIONS(1675), - [anon_sym_double] = ACTIONS(1675), - [anon_sym_float16] = ACTIONS(1675), - [anon_sym_bfloat16] = ACTIONS(1675), - [anon_sym_float128] = ACTIONS(1675), - [anon_sym_iptr] = ACTIONS(1675), - [anon_sym_uptr] = ACTIONS(1675), - [anon_sym_isz] = ACTIONS(1675), - [anon_sym_usz] = ACTIONS(1675), - [anon_sym_anyfault] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_DOLLARtypeof] = ACTIONS(1675), - [anon_sym_DOLLARtypefrom] = ACTIONS(1675), - [anon_sym_DOLLARevaltype] = ACTIONS(1675), - [anon_sym_DOLLARvatype] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1677), - }, - [583] = { - [sym_line_comment] = STATE(583), - [sym_doc_comment] = STATE(583), - [sym_block_comment] = STATE(583), - [sym_ident] = ACTIONS(1679), - [sym_integer_literal] = ACTIONS(1681), - [anon_sym_SQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_bytes_literal] = ACTIONS(1681), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1679), - [sym_at_ident] = ACTIONS(1681), - [sym_hash_ident] = ACTIONS(1681), - [sym_type_ident] = ACTIONS(1681), - [sym_ct_type_ident] = ACTIONS(1681), - [sym_const_ident] = ACTIONS(1679), - [sym_builtin] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1679), - [anon_sym_tlocal] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_fn] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_var] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_defer] = ACTIONS(1679), - [anon_sym_assert] = ACTIONS(1679), - [anon_sym_nextcase] = ACTIONS(1679), - [anon_sym_switch] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_foreach] = ACTIONS(1679), - [anon_sym_foreach_r] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_do] = ACTIONS(1679), - [anon_sym_int] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_asm] = ACTIONS(1679), - [anon_sym_DOLLARassert] = ACTIONS(1679), - [anon_sym_DOLLARerror] = ACTIONS(1679), - [anon_sym_DOLLARecho] = ACTIONS(1679), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_DOLLARswitch] = ACTIONS(1679), - [anon_sym_DOLLARfor] = ACTIONS(1679), - [anon_sym_DOLLARendfor] = ACTIONS(1679), - [anon_sym_DOLLARforeach] = ACTIONS(1679), - [anon_sym_DOLLARalignof] = ACTIONS(1679), - [anon_sym_DOLLARextnameof] = ACTIONS(1679), - [anon_sym_DOLLARnameof] = ACTIONS(1679), - [anon_sym_DOLLARoffsetof] = ACTIONS(1679), - [anon_sym_DOLLARqnameof] = ACTIONS(1679), - [anon_sym_DOLLARvaconst] = ACTIONS(1679), - [anon_sym_DOLLARvaarg] = ACTIONS(1679), - [anon_sym_DOLLARvaref] = ACTIONS(1679), - [anon_sym_DOLLARvaexpr] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1679), - [anon_sym_false] = ACTIONS(1679), - [anon_sym_null] = ACTIONS(1679), - [anon_sym_DOLLARvacount] = ACTIONS(1679), - [anon_sym_DOLLAReval] = ACTIONS(1679), - [anon_sym_DOLLARis_const] = ACTIONS(1679), - [anon_sym_DOLLARsizeof] = ACTIONS(1679), - [anon_sym_DOLLARstringify] = ACTIONS(1679), - [anon_sym_DOLLARappend] = ACTIONS(1679), - [anon_sym_DOLLARconcat] = ACTIONS(1679), - [anon_sym_DOLLARdefined] = ACTIONS(1679), - [anon_sym_DOLLARembed] = ACTIONS(1679), - [anon_sym_DOLLARand] = ACTIONS(1679), - [anon_sym_DOLLARor] = ACTIONS(1679), - [anon_sym_DOLLARfeature] = ACTIONS(1679), - [anon_sym_DOLLARassignable] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_PLUS_PLUS] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1681), - [anon_sym_typeid] = ACTIONS(1679), - [anon_sym_LBRACE_PIPE] = ACTIONS(1681), - [anon_sym_void] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_ichar] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [anon_sym_ushort] = ACTIONS(1679), - [anon_sym_uint] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_ulong] = ACTIONS(1679), - [anon_sym_int128] = ACTIONS(1679), - [anon_sym_uint128] = ACTIONS(1679), - [anon_sym_float] = ACTIONS(1679), - [anon_sym_double] = ACTIONS(1679), - [anon_sym_float16] = ACTIONS(1679), - [anon_sym_bfloat16] = ACTIONS(1679), - [anon_sym_float128] = ACTIONS(1679), - [anon_sym_iptr] = ACTIONS(1679), - [anon_sym_uptr] = ACTIONS(1679), - [anon_sym_isz] = ACTIONS(1679), - [anon_sym_usz] = ACTIONS(1679), - [anon_sym_anyfault] = ACTIONS(1679), - [anon_sym_any] = ACTIONS(1679), - [anon_sym_DOLLARtypeof] = ACTIONS(1679), - [anon_sym_DOLLARtypefrom] = ACTIONS(1679), - [anon_sym_DOLLARevaltype] = ACTIONS(1679), - [anon_sym_DOLLARvatype] = ACTIONS(1679), - [sym_real_literal] = ACTIONS(1681), - }, - [584] = { - [sym_line_comment] = STATE(584), - [sym_doc_comment] = STATE(584), - [sym_block_comment] = STATE(584), - [sym_ident] = ACTIONS(1683), - [sym_integer_literal] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_bytes_literal] = ACTIONS(1685), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1683), - [sym_at_ident] = ACTIONS(1685), - [sym_hash_ident] = ACTIONS(1685), - [sym_type_ident] = ACTIONS(1685), - [sym_ct_type_ident] = ACTIONS(1685), - [sym_const_ident] = ACTIONS(1683), - [sym_builtin] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1683), - [anon_sym_tlocal] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_fn] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_defer] = ACTIONS(1683), - [anon_sym_assert] = ACTIONS(1683), - [anon_sym_nextcase] = ACTIONS(1683), - [anon_sym_switch] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_foreach] = ACTIONS(1683), - [anon_sym_foreach_r] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_int] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_asm] = ACTIONS(1683), - [anon_sym_DOLLARassert] = ACTIONS(1683), - [anon_sym_DOLLARerror] = ACTIONS(1683), - [anon_sym_DOLLARecho] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1683), - [anon_sym_DOLLARswitch] = ACTIONS(1683), - [anon_sym_DOLLARfor] = ACTIONS(1683), - [anon_sym_DOLLARendfor] = ACTIONS(1683), - [anon_sym_DOLLARforeach] = ACTIONS(1683), - [anon_sym_DOLLARalignof] = ACTIONS(1683), - [anon_sym_DOLLARextnameof] = ACTIONS(1683), - [anon_sym_DOLLARnameof] = ACTIONS(1683), - [anon_sym_DOLLARoffsetof] = ACTIONS(1683), - [anon_sym_DOLLARqnameof] = ACTIONS(1683), - [anon_sym_DOLLARvaconst] = ACTIONS(1683), - [anon_sym_DOLLARvaarg] = ACTIONS(1683), - [anon_sym_DOLLARvaref] = ACTIONS(1683), - [anon_sym_DOLLARvaexpr] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_DOLLARvacount] = ACTIONS(1683), - [anon_sym_DOLLAReval] = ACTIONS(1683), - [anon_sym_DOLLARis_const] = ACTIONS(1683), - [anon_sym_DOLLARsizeof] = ACTIONS(1683), - [anon_sym_DOLLARstringify] = ACTIONS(1683), - [anon_sym_DOLLARappend] = ACTIONS(1683), - [anon_sym_DOLLARconcat] = ACTIONS(1683), - [anon_sym_DOLLARdefined] = ACTIONS(1683), - [anon_sym_DOLLARembed] = ACTIONS(1683), - [anon_sym_DOLLARand] = ACTIONS(1683), - [anon_sym_DOLLARor] = ACTIONS(1683), - [anon_sym_DOLLARfeature] = ACTIONS(1683), - [anon_sym_DOLLARassignable] = ACTIONS(1683), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1685), - [anon_sym_PLUS_PLUS] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_typeid] = ACTIONS(1683), - [anon_sym_LBRACE_PIPE] = ACTIONS(1685), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_bool] = ACTIONS(1683), - [anon_sym_char] = ACTIONS(1683), - [anon_sym_ichar] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1683), - [anon_sym_ushort] = ACTIONS(1683), - [anon_sym_uint] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1683), - [anon_sym_ulong] = ACTIONS(1683), - [anon_sym_int128] = ACTIONS(1683), - [anon_sym_uint128] = ACTIONS(1683), - [anon_sym_float] = ACTIONS(1683), - [anon_sym_double] = ACTIONS(1683), - [anon_sym_float16] = ACTIONS(1683), - [anon_sym_bfloat16] = ACTIONS(1683), - [anon_sym_float128] = ACTIONS(1683), - [anon_sym_iptr] = ACTIONS(1683), - [anon_sym_uptr] = ACTIONS(1683), - [anon_sym_isz] = ACTIONS(1683), - [anon_sym_usz] = ACTIONS(1683), - [anon_sym_anyfault] = ACTIONS(1683), - [anon_sym_any] = ACTIONS(1683), - [anon_sym_DOLLARtypeof] = ACTIONS(1683), - [anon_sym_DOLLARtypefrom] = ACTIONS(1683), - [anon_sym_DOLLARevaltype] = ACTIONS(1683), - [anon_sym_DOLLARvatype] = ACTIONS(1683), - [sym_real_literal] = ACTIONS(1685), - }, - [585] = { - [sym_line_comment] = STATE(585), - [sym_doc_comment] = STATE(585), - [sym_block_comment] = STATE(585), - [sym_ident] = ACTIONS(1687), - [sym_integer_literal] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [anon_sym_BQUOTE] = ACTIONS(1689), - [sym_bytes_literal] = ACTIONS(1689), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1687), - [sym_at_ident] = ACTIONS(1689), - [sym_hash_ident] = ACTIONS(1689), - [sym_type_ident] = ACTIONS(1689), - [sym_ct_type_ident] = ACTIONS(1689), - [sym_const_ident] = ACTIONS(1687), - [sym_builtin] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_tlocal] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_fn] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_var] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_defer] = ACTIONS(1687), - [anon_sym_assert] = ACTIONS(1687), - [anon_sym_nextcase] = ACTIONS(1687), - [anon_sym_switch] = ACTIONS(1687), - [anon_sym_AMP_AMP] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_foreach] = ACTIONS(1687), - [anon_sym_foreach_r] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_int] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_asm] = ACTIONS(1687), - [anon_sym_DOLLARassert] = ACTIONS(1687), - [anon_sym_DOLLARerror] = ACTIONS(1687), - [anon_sym_DOLLARecho] = ACTIONS(1687), - [anon_sym_DOLLARif] = ACTIONS(1687), - [anon_sym_DOLLARswitch] = ACTIONS(1687), - [anon_sym_DOLLARfor] = ACTIONS(1687), - [anon_sym_DOLLARendfor] = ACTIONS(1687), - [anon_sym_DOLLARforeach] = ACTIONS(1687), - [anon_sym_DOLLARalignof] = ACTIONS(1687), - [anon_sym_DOLLARextnameof] = ACTIONS(1687), - [anon_sym_DOLLARnameof] = ACTIONS(1687), - [anon_sym_DOLLARoffsetof] = ACTIONS(1687), - [anon_sym_DOLLARqnameof] = ACTIONS(1687), - [anon_sym_DOLLARvaconst] = ACTIONS(1687), - [anon_sym_DOLLARvaarg] = ACTIONS(1687), - [anon_sym_DOLLARvaref] = ACTIONS(1687), - [anon_sym_DOLLARvaexpr] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1687), - [anon_sym_false] = ACTIONS(1687), - [anon_sym_null] = ACTIONS(1687), - [anon_sym_DOLLARvacount] = ACTIONS(1687), - [anon_sym_DOLLAReval] = ACTIONS(1687), - [anon_sym_DOLLARis_const] = ACTIONS(1687), - [anon_sym_DOLLARsizeof] = ACTIONS(1687), - [anon_sym_DOLLARstringify] = ACTIONS(1687), - [anon_sym_DOLLARappend] = ACTIONS(1687), - [anon_sym_DOLLARconcat] = ACTIONS(1687), - [anon_sym_DOLLARdefined] = ACTIONS(1687), - [anon_sym_DOLLARembed] = ACTIONS(1687), - [anon_sym_DOLLARand] = ACTIONS(1687), - [anon_sym_DOLLARor] = ACTIONS(1687), - [anon_sym_DOLLARfeature] = ACTIONS(1687), - [anon_sym_DOLLARassignable] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_typeid] = ACTIONS(1687), - [anon_sym_LBRACE_PIPE] = ACTIONS(1689), - [anon_sym_void] = ACTIONS(1687), - [anon_sym_bool] = ACTIONS(1687), - [anon_sym_char] = ACTIONS(1687), - [anon_sym_ichar] = ACTIONS(1687), - [anon_sym_short] = ACTIONS(1687), - [anon_sym_ushort] = ACTIONS(1687), - [anon_sym_uint] = ACTIONS(1687), - [anon_sym_long] = ACTIONS(1687), - [anon_sym_ulong] = ACTIONS(1687), - [anon_sym_int128] = ACTIONS(1687), - [anon_sym_uint128] = ACTIONS(1687), - [anon_sym_float] = ACTIONS(1687), - [anon_sym_double] = ACTIONS(1687), - [anon_sym_float16] = ACTIONS(1687), - [anon_sym_bfloat16] = ACTIONS(1687), - [anon_sym_float128] = ACTIONS(1687), - [anon_sym_iptr] = ACTIONS(1687), - [anon_sym_uptr] = ACTIONS(1687), - [anon_sym_isz] = ACTIONS(1687), - [anon_sym_usz] = ACTIONS(1687), - [anon_sym_anyfault] = ACTIONS(1687), - [anon_sym_any] = ACTIONS(1687), - [anon_sym_DOLLARtypeof] = ACTIONS(1687), - [anon_sym_DOLLARtypefrom] = ACTIONS(1687), - [anon_sym_DOLLARevaltype] = ACTIONS(1687), - [anon_sym_DOLLARvatype] = ACTIONS(1687), - [sym_real_literal] = ACTIONS(1689), - }, - [586] = { - [sym_line_comment] = STATE(586), - [sym_doc_comment] = STATE(586), - [sym_block_comment] = STATE(586), - [sym_ident] = ACTIONS(1691), - [sym_integer_literal] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [anon_sym_BQUOTE] = ACTIONS(1693), - [sym_bytes_literal] = ACTIONS(1693), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1691), - [sym_at_ident] = ACTIONS(1693), - [sym_hash_ident] = ACTIONS(1693), - [sym_type_ident] = ACTIONS(1693), - [sym_ct_type_ident] = ACTIONS(1693), - [sym_const_ident] = ACTIONS(1691), - [sym_builtin] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_tlocal] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_fn] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_var] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_defer] = ACTIONS(1691), - [anon_sym_assert] = ACTIONS(1691), - [anon_sym_nextcase] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_foreach] = ACTIONS(1691), - [anon_sym_foreach_r] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_int] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_asm] = ACTIONS(1691), - [anon_sym_DOLLARassert] = ACTIONS(1691), - [anon_sym_DOLLARerror] = ACTIONS(1691), - [anon_sym_DOLLARecho] = ACTIONS(1691), - [anon_sym_DOLLARif] = ACTIONS(1691), - [anon_sym_DOLLARswitch] = ACTIONS(1691), - [anon_sym_DOLLARfor] = ACTIONS(1691), - [anon_sym_DOLLARendfor] = ACTIONS(1691), - [anon_sym_DOLLARforeach] = ACTIONS(1691), - [anon_sym_DOLLARalignof] = ACTIONS(1691), - [anon_sym_DOLLARextnameof] = ACTIONS(1691), - [anon_sym_DOLLARnameof] = ACTIONS(1691), - [anon_sym_DOLLARoffsetof] = ACTIONS(1691), - [anon_sym_DOLLARqnameof] = ACTIONS(1691), - [anon_sym_DOLLARvaconst] = ACTIONS(1691), - [anon_sym_DOLLARvaarg] = ACTIONS(1691), - [anon_sym_DOLLARvaref] = ACTIONS(1691), - [anon_sym_DOLLARvaexpr] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1691), - [anon_sym_false] = ACTIONS(1691), - [anon_sym_null] = ACTIONS(1691), - [anon_sym_DOLLARvacount] = ACTIONS(1691), - [anon_sym_DOLLAReval] = ACTIONS(1691), - [anon_sym_DOLLARis_const] = ACTIONS(1691), - [anon_sym_DOLLARsizeof] = ACTIONS(1691), - [anon_sym_DOLLARstringify] = ACTIONS(1691), - [anon_sym_DOLLARappend] = ACTIONS(1691), - [anon_sym_DOLLARconcat] = ACTIONS(1691), - [anon_sym_DOLLARdefined] = ACTIONS(1691), - [anon_sym_DOLLARembed] = ACTIONS(1691), - [anon_sym_DOLLARand] = ACTIONS(1691), - [anon_sym_DOLLARor] = ACTIONS(1691), - [anon_sym_DOLLARfeature] = ACTIONS(1691), - [anon_sym_DOLLARassignable] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_PLUS_PLUS] = ACTIONS(1693), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_typeid] = ACTIONS(1691), - [anon_sym_LBRACE_PIPE] = ACTIONS(1693), - [anon_sym_void] = ACTIONS(1691), - [anon_sym_bool] = ACTIONS(1691), - [anon_sym_char] = ACTIONS(1691), - [anon_sym_ichar] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [anon_sym_ushort] = ACTIONS(1691), - [anon_sym_uint] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_ulong] = ACTIONS(1691), - [anon_sym_int128] = ACTIONS(1691), - [anon_sym_uint128] = ACTIONS(1691), - [anon_sym_float] = ACTIONS(1691), - [anon_sym_double] = ACTIONS(1691), - [anon_sym_float16] = ACTIONS(1691), - [anon_sym_bfloat16] = ACTIONS(1691), - [anon_sym_float128] = ACTIONS(1691), - [anon_sym_iptr] = ACTIONS(1691), - [anon_sym_uptr] = ACTIONS(1691), - [anon_sym_isz] = ACTIONS(1691), - [anon_sym_usz] = ACTIONS(1691), - [anon_sym_anyfault] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_DOLLARtypeof] = ACTIONS(1691), - [anon_sym_DOLLARtypefrom] = ACTIONS(1691), - [anon_sym_DOLLARevaltype] = ACTIONS(1691), - [anon_sym_DOLLARvatype] = ACTIONS(1691), - [sym_real_literal] = ACTIONS(1693), - }, - [587] = { - [sym_line_comment] = STATE(587), - [sym_doc_comment] = STATE(587), - [sym_block_comment] = STATE(587), - [sym_ident] = ACTIONS(1695), - [sym_integer_literal] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [anon_sym_BQUOTE] = ACTIONS(1697), - [sym_bytes_literal] = ACTIONS(1697), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1695), - [sym_at_ident] = ACTIONS(1697), - [sym_hash_ident] = ACTIONS(1697), - [sym_type_ident] = ACTIONS(1697), - [sym_ct_type_ident] = ACTIONS(1697), - [sym_const_ident] = ACTIONS(1695), - [sym_builtin] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_tlocal] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_fn] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_var] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_defer] = ACTIONS(1695), - [anon_sym_assert] = ACTIONS(1695), - [anon_sym_nextcase] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_foreach] = ACTIONS(1695), - [anon_sym_foreach_r] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_int] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_asm] = ACTIONS(1695), - [anon_sym_DOLLARassert] = ACTIONS(1695), - [anon_sym_DOLLARerror] = ACTIONS(1695), - [anon_sym_DOLLARecho] = ACTIONS(1695), - [anon_sym_DOLLARif] = ACTIONS(1695), - [anon_sym_DOLLARswitch] = ACTIONS(1695), - [anon_sym_DOLLARfor] = ACTIONS(1695), - [anon_sym_DOLLARendfor] = ACTIONS(1695), - [anon_sym_DOLLARforeach] = ACTIONS(1695), - [anon_sym_DOLLARalignof] = ACTIONS(1695), - [anon_sym_DOLLARextnameof] = ACTIONS(1695), - [anon_sym_DOLLARnameof] = ACTIONS(1695), - [anon_sym_DOLLARoffsetof] = ACTIONS(1695), - [anon_sym_DOLLARqnameof] = ACTIONS(1695), - [anon_sym_DOLLARvaconst] = ACTIONS(1695), - [anon_sym_DOLLARvaarg] = ACTIONS(1695), - [anon_sym_DOLLARvaref] = ACTIONS(1695), - [anon_sym_DOLLARvaexpr] = ACTIONS(1695), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_null] = ACTIONS(1695), - [anon_sym_DOLLARvacount] = ACTIONS(1695), - [anon_sym_DOLLAReval] = ACTIONS(1695), - [anon_sym_DOLLARis_const] = ACTIONS(1695), - [anon_sym_DOLLARsizeof] = ACTIONS(1695), - [anon_sym_DOLLARstringify] = ACTIONS(1695), - [anon_sym_DOLLARappend] = ACTIONS(1695), - [anon_sym_DOLLARconcat] = ACTIONS(1695), - [anon_sym_DOLLARdefined] = ACTIONS(1695), - [anon_sym_DOLLARembed] = ACTIONS(1695), - [anon_sym_DOLLARand] = ACTIONS(1695), - [anon_sym_DOLLARor] = ACTIONS(1695), - [anon_sym_DOLLARfeature] = ACTIONS(1695), - [anon_sym_DOLLARassignable] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [anon_sym_typeid] = ACTIONS(1695), - [anon_sym_LBRACE_PIPE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1695), - [anon_sym_bool] = ACTIONS(1695), - [anon_sym_char] = ACTIONS(1695), - [anon_sym_ichar] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [anon_sym_ushort] = ACTIONS(1695), - [anon_sym_uint] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_ulong] = ACTIONS(1695), - [anon_sym_int128] = ACTIONS(1695), - [anon_sym_uint128] = ACTIONS(1695), - [anon_sym_float] = ACTIONS(1695), - [anon_sym_double] = ACTIONS(1695), - [anon_sym_float16] = ACTIONS(1695), - [anon_sym_bfloat16] = ACTIONS(1695), - [anon_sym_float128] = ACTIONS(1695), - [anon_sym_iptr] = ACTIONS(1695), - [anon_sym_uptr] = ACTIONS(1695), - [anon_sym_isz] = ACTIONS(1695), - [anon_sym_usz] = ACTIONS(1695), - [anon_sym_anyfault] = ACTIONS(1695), - [anon_sym_any] = ACTIONS(1695), - [anon_sym_DOLLARtypeof] = ACTIONS(1695), - [anon_sym_DOLLARtypefrom] = ACTIONS(1695), - [anon_sym_DOLLARevaltype] = ACTIONS(1695), - [anon_sym_DOLLARvatype] = ACTIONS(1695), - [sym_real_literal] = ACTIONS(1697), - }, - [588] = { - [sym_line_comment] = STATE(588), - [sym_doc_comment] = STATE(588), - [sym_block_comment] = STATE(588), - [sym_ident] = ACTIONS(1699), - [sym_integer_literal] = ACTIONS(1701), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [anon_sym_BQUOTE] = ACTIONS(1701), - [sym_bytes_literal] = ACTIONS(1701), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1699), - [sym_at_ident] = ACTIONS(1701), - [sym_hash_ident] = ACTIONS(1701), - [sym_type_ident] = ACTIONS(1701), - [sym_ct_type_ident] = ACTIONS(1701), - [sym_const_ident] = ACTIONS(1699), - [sym_builtin] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_tlocal] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_defer] = ACTIONS(1699), - [anon_sym_assert] = ACTIONS(1699), - [anon_sym_nextcase] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_foreach] = ACTIONS(1699), - [anon_sym_foreach_r] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_int] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_asm] = ACTIONS(1699), - [anon_sym_DOLLARassert] = ACTIONS(1699), - [anon_sym_DOLLARerror] = ACTIONS(1699), - [anon_sym_DOLLARecho] = ACTIONS(1699), - [anon_sym_DOLLARif] = ACTIONS(1699), - [anon_sym_DOLLARswitch] = ACTIONS(1699), - [anon_sym_DOLLARfor] = ACTIONS(1699), - [anon_sym_DOLLARendfor] = ACTIONS(1699), - [anon_sym_DOLLARforeach] = ACTIONS(1699), - [anon_sym_DOLLARalignof] = ACTIONS(1699), - [anon_sym_DOLLARextnameof] = ACTIONS(1699), - [anon_sym_DOLLARnameof] = ACTIONS(1699), - [anon_sym_DOLLARoffsetof] = ACTIONS(1699), - [anon_sym_DOLLARqnameof] = ACTIONS(1699), - [anon_sym_DOLLARvaconst] = ACTIONS(1699), - [anon_sym_DOLLARvaarg] = ACTIONS(1699), - [anon_sym_DOLLARvaref] = ACTIONS(1699), - [anon_sym_DOLLARvaexpr] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_DOLLARvacount] = ACTIONS(1699), - [anon_sym_DOLLAReval] = ACTIONS(1699), - [anon_sym_DOLLARis_const] = ACTIONS(1699), - [anon_sym_DOLLARsizeof] = ACTIONS(1699), - [anon_sym_DOLLARstringify] = ACTIONS(1699), - [anon_sym_DOLLARappend] = ACTIONS(1699), - [anon_sym_DOLLARconcat] = ACTIONS(1699), - [anon_sym_DOLLARdefined] = ACTIONS(1699), - [anon_sym_DOLLARembed] = ACTIONS(1699), - [anon_sym_DOLLARand] = ACTIONS(1699), - [anon_sym_DOLLARor] = ACTIONS(1699), - [anon_sym_DOLLARfeature] = ACTIONS(1699), - [anon_sym_DOLLARassignable] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_typeid] = ACTIONS(1699), - [anon_sym_LBRACE_PIPE] = ACTIONS(1701), - [anon_sym_void] = ACTIONS(1699), - [anon_sym_bool] = ACTIONS(1699), - [anon_sym_char] = ACTIONS(1699), - [anon_sym_ichar] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [anon_sym_ushort] = ACTIONS(1699), - [anon_sym_uint] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_ulong] = ACTIONS(1699), - [anon_sym_int128] = ACTIONS(1699), - [anon_sym_uint128] = ACTIONS(1699), - [anon_sym_float] = ACTIONS(1699), - [anon_sym_double] = ACTIONS(1699), - [anon_sym_float16] = ACTIONS(1699), - [anon_sym_bfloat16] = ACTIONS(1699), - [anon_sym_float128] = ACTIONS(1699), - [anon_sym_iptr] = ACTIONS(1699), - [anon_sym_uptr] = ACTIONS(1699), - [anon_sym_isz] = ACTIONS(1699), - [anon_sym_usz] = ACTIONS(1699), - [anon_sym_anyfault] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_DOLLARtypeof] = ACTIONS(1699), - [anon_sym_DOLLARtypefrom] = ACTIONS(1699), - [anon_sym_DOLLARevaltype] = ACTIONS(1699), - [anon_sym_DOLLARvatype] = ACTIONS(1699), - [sym_real_literal] = ACTIONS(1701), - }, - [589] = { - [sym_line_comment] = STATE(589), - [sym_doc_comment] = STATE(589), - [sym_block_comment] = STATE(589), - [sym_ident] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [sym_bytes_literal] = ACTIONS(1705), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1703), - [sym_at_ident] = ACTIONS(1705), - [sym_hash_ident] = ACTIONS(1705), - [sym_type_ident] = ACTIONS(1705), - [sym_ct_type_ident] = ACTIONS(1705), - [sym_const_ident] = ACTIONS(1703), - [sym_builtin] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_tlocal] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_var] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_defer] = ACTIONS(1703), - [anon_sym_assert] = ACTIONS(1703), - [anon_sym_nextcase] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_foreach] = ACTIONS(1703), - [anon_sym_foreach_r] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_int] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_asm] = ACTIONS(1703), - [anon_sym_DOLLARassert] = ACTIONS(1703), - [anon_sym_DOLLARerror] = ACTIONS(1703), - [anon_sym_DOLLARecho] = ACTIONS(1703), - [anon_sym_DOLLARif] = ACTIONS(1703), - [anon_sym_DOLLARswitch] = ACTIONS(1703), - [anon_sym_DOLLARfor] = ACTIONS(1703), - [anon_sym_DOLLARendfor] = ACTIONS(1703), - [anon_sym_DOLLARforeach] = ACTIONS(1703), - [anon_sym_DOLLARalignof] = ACTIONS(1703), - [anon_sym_DOLLARextnameof] = ACTIONS(1703), - [anon_sym_DOLLARnameof] = ACTIONS(1703), - [anon_sym_DOLLARoffsetof] = ACTIONS(1703), - [anon_sym_DOLLARqnameof] = ACTIONS(1703), - [anon_sym_DOLLARvaconst] = ACTIONS(1703), - [anon_sym_DOLLARvaarg] = ACTIONS(1703), - [anon_sym_DOLLARvaref] = ACTIONS(1703), - [anon_sym_DOLLARvaexpr] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [anon_sym_DOLLARvacount] = ACTIONS(1703), - [anon_sym_DOLLAReval] = ACTIONS(1703), - [anon_sym_DOLLARis_const] = ACTIONS(1703), - [anon_sym_DOLLARsizeof] = ACTIONS(1703), - [anon_sym_DOLLARstringify] = ACTIONS(1703), - [anon_sym_DOLLARappend] = ACTIONS(1703), - [anon_sym_DOLLARconcat] = ACTIONS(1703), - [anon_sym_DOLLARdefined] = ACTIONS(1703), - [anon_sym_DOLLARembed] = ACTIONS(1703), - [anon_sym_DOLLARand] = ACTIONS(1703), - [anon_sym_DOLLARor] = ACTIONS(1703), - [anon_sym_DOLLARfeature] = ACTIONS(1703), - [anon_sym_DOLLARassignable] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_typeid] = ACTIONS(1703), - [anon_sym_LBRACE_PIPE] = ACTIONS(1705), - [anon_sym_void] = ACTIONS(1703), - [anon_sym_bool] = ACTIONS(1703), - [anon_sym_char] = ACTIONS(1703), - [anon_sym_ichar] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_ushort] = ACTIONS(1703), - [anon_sym_uint] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_ulong] = ACTIONS(1703), - [anon_sym_int128] = ACTIONS(1703), - [anon_sym_uint128] = ACTIONS(1703), - [anon_sym_float] = ACTIONS(1703), - [anon_sym_double] = ACTIONS(1703), - [anon_sym_float16] = ACTIONS(1703), - [anon_sym_bfloat16] = ACTIONS(1703), - [anon_sym_float128] = ACTIONS(1703), - [anon_sym_iptr] = ACTIONS(1703), - [anon_sym_uptr] = ACTIONS(1703), - [anon_sym_isz] = ACTIONS(1703), - [anon_sym_usz] = ACTIONS(1703), - [anon_sym_anyfault] = ACTIONS(1703), - [anon_sym_any] = ACTIONS(1703), - [anon_sym_DOLLARtypeof] = ACTIONS(1703), - [anon_sym_DOLLARtypefrom] = ACTIONS(1703), - [anon_sym_DOLLARevaltype] = ACTIONS(1703), - [anon_sym_DOLLARvatype] = ACTIONS(1703), - [sym_real_literal] = ACTIONS(1705), - }, - [590] = { - [sym_line_comment] = STATE(590), - [sym_doc_comment] = STATE(590), - [sym_block_comment] = STATE(590), - [sym_ident] = ACTIONS(1707), - [sym_integer_literal] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [anon_sym_BQUOTE] = ACTIONS(1709), - [sym_bytes_literal] = ACTIONS(1709), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1707), - [sym_at_ident] = ACTIONS(1709), - [sym_hash_ident] = ACTIONS(1709), - [sym_type_ident] = ACTIONS(1709), - [sym_ct_type_ident] = ACTIONS(1709), - [sym_const_ident] = ACTIONS(1707), - [sym_builtin] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_tlocal] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_fn] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_var] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_defer] = ACTIONS(1707), - [anon_sym_assert] = ACTIONS(1707), - [anon_sym_nextcase] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_foreach] = ACTIONS(1707), - [anon_sym_foreach_r] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_int] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_asm] = ACTIONS(1707), - [anon_sym_DOLLARassert] = ACTIONS(1707), - [anon_sym_DOLLARerror] = ACTIONS(1707), - [anon_sym_DOLLARecho] = ACTIONS(1707), - [anon_sym_DOLLARif] = ACTIONS(1707), - [anon_sym_DOLLARswitch] = ACTIONS(1707), - [anon_sym_DOLLARfor] = ACTIONS(1707), - [anon_sym_DOLLARendfor] = ACTIONS(1707), - [anon_sym_DOLLARforeach] = ACTIONS(1707), - [anon_sym_DOLLARalignof] = ACTIONS(1707), - [anon_sym_DOLLARextnameof] = ACTIONS(1707), - [anon_sym_DOLLARnameof] = ACTIONS(1707), - [anon_sym_DOLLARoffsetof] = ACTIONS(1707), - [anon_sym_DOLLARqnameof] = ACTIONS(1707), - [anon_sym_DOLLARvaconst] = ACTIONS(1707), - [anon_sym_DOLLARvaarg] = ACTIONS(1707), - [anon_sym_DOLLARvaref] = ACTIONS(1707), - [anon_sym_DOLLARvaexpr] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_DOLLARvacount] = ACTIONS(1707), - [anon_sym_DOLLAReval] = ACTIONS(1707), - [anon_sym_DOLLARis_const] = ACTIONS(1707), - [anon_sym_DOLLARsizeof] = ACTIONS(1707), - [anon_sym_DOLLARstringify] = ACTIONS(1707), - [anon_sym_DOLLARappend] = ACTIONS(1707), - [anon_sym_DOLLARconcat] = ACTIONS(1707), - [anon_sym_DOLLARdefined] = ACTIONS(1707), - [anon_sym_DOLLARembed] = ACTIONS(1707), - [anon_sym_DOLLARand] = ACTIONS(1707), - [anon_sym_DOLLARor] = ACTIONS(1707), - [anon_sym_DOLLARfeature] = ACTIONS(1707), - [anon_sym_DOLLARassignable] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_typeid] = ACTIONS(1707), - [anon_sym_LBRACE_PIPE] = ACTIONS(1709), - [anon_sym_void] = ACTIONS(1707), - [anon_sym_bool] = ACTIONS(1707), - [anon_sym_char] = ACTIONS(1707), - [anon_sym_ichar] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [anon_sym_ushort] = ACTIONS(1707), - [anon_sym_uint] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_ulong] = ACTIONS(1707), - [anon_sym_int128] = ACTIONS(1707), - [anon_sym_uint128] = ACTIONS(1707), - [anon_sym_float] = ACTIONS(1707), - [anon_sym_double] = ACTIONS(1707), - [anon_sym_float16] = ACTIONS(1707), - [anon_sym_bfloat16] = ACTIONS(1707), - [anon_sym_float128] = ACTIONS(1707), - [anon_sym_iptr] = ACTIONS(1707), - [anon_sym_uptr] = ACTIONS(1707), - [anon_sym_isz] = ACTIONS(1707), - [anon_sym_usz] = ACTIONS(1707), - [anon_sym_anyfault] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_DOLLARtypeof] = ACTIONS(1707), - [anon_sym_DOLLARtypefrom] = ACTIONS(1707), - [anon_sym_DOLLARevaltype] = ACTIONS(1707), - [anon_sym_DOLLARvatype] = ACTIONS(1707), - [sym_real_literal] = ACTIONS(1709), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARendif] = ACTIONS(1605), + [anon_sym_DOLLARelse] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, - [591] = { - [sym_line_comment] = STATE(591), - [sym_doc_comment] = STATE(591), - [sym_block_comment] = STATE(591), - [sym_ident] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1619), - [anon_sym_SQUOTE] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [anon_sym_BQUOTE] = ACTIONS(1619), - [sym_bytes_literal] = ACTIONS(1619), + [533] = { + [sym_line_comment] = STATE(533), + [sym_doc_comment] = STATE(533), + [sym_block_comment] = STATE(533), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1617), - [sym_at_ident] = ACTIONS(1619), - [sym_hash_ident] = ACTIONS(1619), - [sym_type_ident] = ACTIONS(1619), - [sym_ct_type_ident] = ACTIONS(1619), - [sym_const_ident] = ACTIONS(1617), - [sym_builtin] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_tlocal] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_var] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_defer] = ACTIONS(1617), - [anon_sym_assert] = ACTIONS(1617), - [anon_sym_nextcase] = ACTIONS(1617), - [anon_sym_switch] = ACTIONS(1617), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_foreach] = ACTIONS(1617), - [anon_sym_foreach_r] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_do] = ACTIONS(1617), - [anon_sym_int] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1617), - [anon_sym_DOLLARassert] = ACTIONS(1617), - [anon_sym_DOLLARerror] = ACTIONS(1617), - [anon_sym_DOLLARecho] = ACTIONS(1617), - [anon_sym_DOLLARif] = ACTIONS(1617), - [anon_sym_DOLLARswitch] = ACTIONS(1617), - [anon_sym_DOLLARfor] = ACTIONS(1617), - [anon_sym_DOLLARendfor] = ACTIONS(1617), - [anon_sym_DOLLARforeach] = ACTIONS(1617), - [anon_sym_DOLLARalignof] = ACTIONS(1617), - [anon_sym_DOLLARextnameof] = ACTIONS(1617), - [anon_sym_DOLLARnameof] = ACTIONS(1617), - [anon_sym_DOLLARoffsetof] = ACTIONS(1617), - [anon_sym_DOLLARqnameof] = ACTIONS(1617), - [anon_sym_DOLLARvaconst] = ACTIONS(1617), - [anon_sym_DOLLARvaarg] = ACTIONS(1617), - [anon_sym_DOLLARvaref] = ACTIONS(1617), - [anon_sym_DOLLARvaexpr] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [anon_sym_DOLLARvacount] = ACTIONS(1617), - [anon_sym_DOLLAReval] = ACTIONS(1617), - [anon_sym_DOLLARis_const] = ACTIONS(1617), - [anon_sym_DOLLARsizeof] = ACTIONS(1617), - [anon_sym_DOLLARstringify] = ACTIONS(1617), - [anon_sym_DOLLARappend] = ACTIONS(1617), - [anon_sym_DOLLARconcat] = ACTIONS(1617), - [anon_sym_DOLLARdefined] = ACTIONS(1617), - [anon_sym_DOLLARembed] = ACTIONS(1617), - [anon_sym_DOLLARand] = ACTIONS(1617), - [anon_sym_DOLLARor] = ACTIONS(1617), - [anon_sym_DOLLARfeature] = ACTIONS(1617), - [anon_sym_DOLLARassignable] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_TILDE] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1619), - [anon_sym_DASH_DASH] = ACTIONS(1619), - [anon_sym_typeid] = ACTIONS(1617), - [anon_sym_LBRACE_PIPE] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_char] = ACTIONS(1617), - [anon_sym_ichar] = ACTIONS(1617), - [anon_sym_short] = ACTIONS(1617), - [anon_sym_ushort] = ACTIONS(1617), - [anon_sym_uint] = ACTIONS(1617), - [anon_sym_long] = ACTIONS(1617), - [anon_sym_ulong] = ACTIONS(1617), - [anon_sym_int128] = ACTIONS(1617), - [anon_sym_uint128] = ACTIONS(1617), - [anon_sym_float] = ACTIONS(1617), - [anon_sym_double] = ACTIONS(1617), - [anon_sym_float16] = ACTIONS(1617), - [anon_sym_bfloat16] = ACTIONS(1617), - [anon_sym_float128] = ACTIONS(1617), - [anon_sym_iptr] = ACTIONS(1617), - [anon_sym_uptr] = ACTIONS(1617), - [anon_sym_isz] = ACTIONS(1617), - [anon_sym_usz] = ACTIONS(1617), - [anon_sym_anyfault] = ACTIONS(1617), - [anon_sym_any] = ACTIONS(1617), - [anon_sym_DOLLARtypeof] = ACTIONS(1617), - [anon_sym_DOLLARtypefrom] = ACTIONS(1617), - [anon_sym_DOLLARevaltype] = ACTIONS(1617), - [anon_sym_DOLLARvatype] = ACTIONS(1617), - [sym_real_literal] = ACTIONS(1619), - }, - [592] = { - [sym_line_comment] = STATE(592), - [sym_doc_comment] = STATE(592), - [sym_block_comment] = STATE(592), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARendfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARappend] = ACTIONS(1499), - [anon_sym_DOLLARconcat] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), - }, - [593] = { - [sym_line_comment] = STATE(593), - [sym_doc_comment] = STATE(593), - [sym_block_comment] = STATE(593), - [sym_ident] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_bytes_literal] = ACTIONS(1429), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1427), - [sym_at_ident] = ACTIONS(1429), - [sym_hash_ident] = ACTIONS(1429), - [sym_type_ident] = ACTIONS(1429), - [sym_ct_type_ident] = ACTIONS(1429), - [sym_const_ident] = ACTIONS(1427), - [sym_builtin] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_tlocal] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_var] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_defer] = ACTIONS(1427), - [anon_sym_assert] = ACTIONS(1427), - [anon_sym_nextcase] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_foreach] = ACTIONS(1427), - [anon_sym_foreach_r] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_int] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1427), - [anon_sym_DOLLARassert] = ACTIONS(1427), - [anon_sym_DOLLARerror] = ACTIONS(1427), - [anon_sym_DOLLARecho] = ACTIONS(1427), - [anon_sym_DOLLARif] = ACTIONS(1427), - [anon_sym_DOLLARswitch] = ACTIONS(1427), - [anon_sym_DOLLARfor] = ACTIONS(1427), - [anon_sym_DOLLARendfor] = ACTIONS(1427), - [anon_sym_DOLLARforeach] = ACTIONS(1427), - [anon_sym_DOLLARalignof] = ACTIONS(1427), - [anon_sym_DOLLARextnameof] = ACTIONS(1427), - [anon_sym_DOLLARnameof] = ACTIONS(1427), - [anon_sym_DOLLARoffsetof] = ACTIONS(1427), - [anon_sym_DOLLARqnameof] = ACTIONS(1427), - [anon_sym_DOLLARvaconst] = ACTIONS(1427), - [anon_sym_DOLLARvaarg] = ACTIONS(1427), - [anon_sym_DOLLARvaref] = ACTIONS(1427), - [anon_sym_DOLLARvaexpr] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [anon_sym_DOLLARvacount] = ACTIONS(1427), - [anon_sym_DOLLAReval] = ACTIONS(1427), - [anon_sym_DOLLARis_const] = ACTIONS(1427), - [anon_sym_DOLLARsizeof] = ACTIONS(1427), - [anon_sym_DOLLARstringify] = ACTIONS(1427), - [anon_sym_DOLLARappend] = ACTIONS(1427), - [anon_sym_DOLLARconcat] = ACTIONS(1427), - [anon_sym_DOLLARdefined] = ACTIONS(1427), - [anon_sym_DOLLARembed] = ACTIONS(1427), - [anon_sym_DOLLARand] = ACTIONS(1427), - [anon_sym_DOLLARor] = ACTIONS(1427), - [anon_sym_DOLLARfeature] = ACTIONS(1427), - [anon_sym_DOLLARassignable] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_typeid] = ACTIONS(1427), - [anon_sym_LBRACE_PIPE] = ACTIONS(1429), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_bool] = ACTIONS(1427), - [anon_sym_char] = ACTIONS(1427), - [anon_sym_ichar] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [anon_sym_ushort] = ACTIONS(1427), - [anon_sym_uint] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_ulong] = ACTIONS(1427), - [anon_sym_int128] = ACTIONS(1427), - [anon_sym_uint128] = ACTIONS(1427), - [anon_sym_float] = ACTIONS(1427), - [anon_sym_double] = ACTIONS(1427), - [anon_sym_float16] = ACTIONS(1427), - [anon_sym_bfloat16] = ACTIONS(1427), - [anon_sym_float128] = ACTIONS(1427), - [anon_sym_iptr] = ACTIONS(1427), - [anon_sym_uptr] = ACTIONS(1427), - [anon_sym_isz] = ACTIONS(1427), - [anon_sym_usz] = ACTIONS(1427), - [anon_sym_anyfault] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_DOLLARtypeof] = ACTIONS(1427), - [anon_sym_DOLLARtypefrom] = ACTIONS(1427), - [anon_sym_DOLLARevaltype] = ACTIONS(1427), - [anon_sym_DOLLARvatype] = ACTIONS(1427), - [sym_real_literal] = ACTIONS(1429), - }, - [594] = { - [sym_line_comment] = STATE(594), - [sym_doc_comment] = STATE(594), - [sym_block_comment] = STATE(594), - [sym_ident] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_BQUOTE] = ACTIONS(1449), - [sym_bytes_literal] = ACTIONS(1449), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1447), - [sym_at_ident] = ACTIONS(1449), - [sym_hash_ident] = ACTIONS(1449), - [sym_type_ident] = ACTIONS(1449), - [sym_ct_type_ident] = ACTIONS(1449), - [sym_const_ident] = ACTIONS(1447), - [sym_builtin] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_tlocal] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_var] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_defer] = ACTIONS(1447), - [anon_sym_assert] = ACTIONS(1447), - [anon_sym_nextcase] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_foreach] = ACTIONS(1447), - [anon_sym_foreach_r] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_int] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_asm] = ACTIONS(1447), - [anon_sym_DOLLARassert] = ACTIONS(1447), - [anon_sym_DOLLARerror] = ACTIONS(1447), - [anon_sym_DOLLARecho] = ACTIONS(1447), - [anon_sym_DOLLARif] = ACTIONS(1447), - [anon_sym_DOLLARswitch] = ACTIONS(1447), - [anon_sym_DOLLARfor] = ACTIONS(1447), - [anon_sym_DOLLARendfor] = ACTIONS(1447), - [anon_sym_DOLLARforeach] = ACTIONS(1447), - [anon_sym_DOLLARalignof] = ACTIONS(1447), - [anon_sym_DOLLARextnameof] = ACTIONS(1447), - [anon_sym_DOLLARnameof] = ACTIONS(1447), - [anon_sym_DOLLARoffsetof] = ACTIONS(1447), - [anon_sym_DOLLARqnameof] = ACTIONS(1447), - [anon_sym_DOLLARvaconst] = ACTIONS(1447), - [anon_sym_DOLLARvaarg] = ACTIONS(1447), - [anon_sym_DOLLARvaref] = ACTIONS(1447), - [anon_sym_DOLLARvaexpr] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_DOLLARvacount] = ACTIONS(1447), - [anon_sym_DOLLAReval] = ACTIONS(1447), - [anon_sym_DOLLARis_const] = ACTIONS(1447), - [anon_sym_DOLLARsizeof] = ACTIONS(1447), - [anon_sym_DOLLARstringify] = ACTIONS(1447), - [anon_sym_DOLLARappend] = ACTIONS(1447), - [anon_sym_DOLLARconcat] = ACTIONS(1447), - [anon_sym_DOLLARdefined] = ACTIONS(1447), - [anon_sym_DOLLARembed] = ACTIONS(1447), - [anon_sym_DOLLARand] = ACTIONS(1447), - [anon_sym_DOLLARor] = ACTIONS(1447), - [anon_sym_DOLLARfeature] = ACTIONS(1447), - [anon_sym_DOLLARassignable] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_typeid] = ACTIONS(1447), - [anon_sym_LBRACE_PIPE] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_ichar] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [anon_sym_ushort] = ACTIONS(1447), - [anon_sym_uint] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_ulong] = ACTIONS(1447), - [anon_sym_int128] = ACTIONS(1447), - [anon_sym_uint128] = ACTIONS(1447), - [anon_sym_float] = ACTIONS(1447), - [anon_sym_double] = ACTIONS(1447), - [anon_sym_float16] = ACTIONS(1447), - [anon_sym_bfloat16] = ACTIONS(1447), - [anon_sym_float128] = ACTIONS(1447), - [anon_sym_iptr] = ACTIONS(1447), - [anon_sym_uptr] = ACTIONS(1447), - [anon_sym_isz] = ACTIONS(1447), - [anon_sym_usz] = ACTIONS(1447), - [anon_sym_anyfault] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_DOLLARtypeof] = ACTIONS(1447), - [anon_sym_DOLLARtypefrom] = ACTIONS(1447), - [anon_sym_DOLLARevaltype] = ACTIONS(1447), - [anon_sym_DOLLARvatype] = ACTIONS(1447), - [sym_real_literal] = ACTIONS(1449), - }, - [595] = { - [sym_line_comment] = STATE(595), - [sym_doc_comment] = STATE(595), - [sym_block_comment] = STATE(595), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARendfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARappend] = ACTIONS(1479), - [anon_sym_DOLLARconcat] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARendif] = ACTIONS(1533), + [anon_sym_DOLLARelse] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, - [596] = { - [sym_line_comment] = STATE(596), - [sym_doc_comment] = STATE(596), - [sym_block_comment] = STATE(596), - [sym_ident] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_bytes_literal] = ACTIONS(1659), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1657), - [sym_at_ident] = ACTIONS(1659), - [sym_hash_ident] = ACTIONS(1659), - [sym_type_ident] = ACTIONS(1659), - [sym_ct_type_ident] = ACTIONS(1659), - [sym_const_ident] = ACTIONS(1657), - [sym_builtin] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_tlocal] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_var] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_assert] = ACTIONS(1657), - [anon_sym_nextcase] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_foreach] = ACTIONS(1657), - [anon_sym_foreach_r] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1657), - [anon_sym_DOLLARassert] = ACTIONS(1657), - [anon_sym_DOLLARerror] = ACTIONS(1657), - [anon_sym_DOLLARecho] = ACTIONS(1657), - [anon_sym_DOLLARif] = ACTIONS(1657), - [anon_sym_DOLLARswitch] = ACTIONS(1657), - [anon_sym_DOLLARfor] = ACTIONS(1657), - [anon_sym_DOLLARendfor] = ACTIONS(1657), - [anon_sym_DOLLARforeach] = ACTIONS(1657), - [anon_sym_DOLLARalignof] = ACTIONS(1657), - [anon_sym_DOLLARextnameof] = ACTIONS(1657), - [anon_sym_DOLLARnameof] = ACTIONS(1657), - [anon_sym_DOLLARoffsetof] = ACTIONS(1657), - [anon_sym_DOLLARqnameof] = ACTIONS(1657), - [anon_sym_DOLLARvaconst] = ACTIONS(1657), - [anon_sym_DOLLARvaarg] = ACTIONS(1657), - [anon_sym_DOLLARvaref] = ACTIONS(1657), - [anon_sym_DOLLARvaexpr] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_DOLLARvacount] = ACTIONS(1657), - [anon_sym_DOLLAReval] = ACTIONS(1657), - [anon_sym_DOLLARis_const] = ACTIONS(1657), - [anon_sym_DOLLARsizeof] = ACTIONS(1657), - [anon_sym_DOLLARstringify] = ACTIONS(1657), - [anon_sym_DOLLARappend] = ACTIONS(1657), - [anon_sym_DOLLARconcat] = ACTIONS(1657), - [anon_sym_DOLLARdefined] = ACTIONS(1657), - [anon_sym_DOLLARembed] = ACTIONS(1657), - [anon_sym_DOLLARand] = ACTIONS(1657), - [anon_sym_DOLLARor] = ACTIONS(1657), - [anon_sym_DOLLARfeature] = ACTIONS(1657), - [anon_sym_DOLLARassignable] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_typeid] = ACTIONS(1657), - [anon_sym_LBRACE_PIPE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_ichar] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [anon_sym_ushort] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_ulong] = ACTIONS(1657), - [anon_sym_int128] = ACTIONS(1657), - [anon_sym_uint128] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_double] = ACTIONS(1657), - [anon_sym_float16] = ACTIONS(1657), - [anon_sym_bfloat16] = ACTIONS(1657), - [anon_sym_float128] = ACTIONS(1657), - [anon_sym_iptr] = ACTIONS(1657), - [anon_sym_uptr] = ACTIONS(1657), - [anon_sym_isz] = ACTIONS(1657), - [anon_sym_usz] = ACTIONS(1657), - [anon_sym_anyfault] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_DOLLARtypeof] = ACTIONS(1657), - [anon_sym_DOLLARtypefrom] = ACTIONS(1657), - [anon_sym_DOLLARevaltype] = ACTIONS(1657), - [anon_sym_DOLLARvatype] = ACTIONS(1657), - [sym_real_literal] = ACTIONS(1659), + [534] = { + [sym_line_comment] = STATE(534), + [sym_doc_comment] = STATE(534), + [sym_block_comment] = STATE(534), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARendif] = ACTIONS(1537), + [anon_sym_DOLLARelse] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, - [597] = { - [sym_line_comment] = STATE(597), - [sym_doc_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [535] = { + [sym_line_comment] = STATE(535), + [sym_doc_comment] = STATE(535), + [sym_block_comment] = STATE(535), [sym_ident] = ACTIONS(1553), [sym_integer_literal] = ACTIONS(1555), [anon_sym_SQUOTE] = ACTIONS(1555), @@ -94356,9 +87100,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1553), [anon_sym_DOLLARecho] = ACTIONS(1553), [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARendif] = ACTIONS(1553), + [anon_sym_DOLLARelse] = ACTIONS(1553), [anon_sym_DOLLARswitch] = ACTIONS(1553), [anon_sym_DOLLARfor] = ACTIONS(1553), - [anon_sym_DOLLARendfor] = ACTIONS(1553), [anon_sym_DOLLARforeach] = ACTIONS(1553), [anon_sym_DOLLARalignof] = ACTIONS(1553), [anon_sym_DOLLARextnameof] = ACTIONS(1553), @@ -94419,355 +87164,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1553), [sym_real_literal] = ACTIONS(1555), }, - [598] = { - [sym_line_comment] = STATE(598), - [sym_doc_comment] = STATE(598), - [sym_block_comment] = STATE(598), - [sym_ident] = ACTIONS(1565), - [sym_integer_literal] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [anon_sym_BQUOTE] = ACTIONS(1567), - [sym_bytes_literal] = ACTIONS(1567), + [536] = { + [sym_line_comment] = STATE(536), + [sym_doc_comment] = STATE(536), + [sym_block_comment] = STATE(536), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARendif] = ACTIONS(1517), + [anon_sym_DOLLARelse] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), + }, + [537] = { + [sym_line_comment] = STATE(537), + [sym_doc_comment] = STATE(537), + [sym_block_comment] = STATE(537), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARendif] = ACTIONS(1609), + [anon_sym_DOLLARelse] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), + }, + [538] = { + [sym_line_comment] = STATE(538), + [sym_doc_comment] = STATE(538), + [sym_block_comment] = STATE(538), + [sym_ident] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1663), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [anon_sym_BQUOTE] = ACTIONS(1663), + [sym_bytes_literal] = ACTIONS(1663), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1661), + [sym_at_ident] = ACTIONS(1663), + [sym_hash_ident] = ACTIONS(1663), + [sym_type_ident] = ACTIONS(1663), + [sym_ct_type_ident] = ACTIONS(1663), + [sym_const_ident] = ACTIONS(1661), + [sym_builtin] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_tlocal] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_fn] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_var] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_defer] = ACTIONS(1661), + [anon_sym_assert] = ACTIONS(1661), + [anon_sym_nextcase] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_foreach] = ACTIONS(1661), + [anon_sym_foreach_r] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_int] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_asm] = ACTIONS(1661), + [anon_sym_DOLLARassert] = ACTIONS(1661), + [anon_sym_DOLLARerror] = ACTIONS(1661), + [anon_sym_DOLLARecho] = ACTIONS(1661), + [anon_sym_DOLLARif] = ACTIONS(1661), + [anon_sym_DOLLARendif] = ACTIONS(1661), + [anon_sym_DOLLARelse] = ACTIONS(1661), + [anon_sym_DOLLARswitch] = ACTIONS(1661), + [anon_sym_DOLLARfor] = ACTIONS(1661), + [anon_sym_DOLLARforeach] = ACTIONS(1661), + [anon_sym_DOLLARalignof] = ACTIONS(1661), + [anon_sym_DOLLARextnameof] = ACTIONS(1661), + [anon_sym_DOLLARnameof] = ACTIONS(1661), + [anon_sym_DOLLARoffsetof] = ACTIONS(1661), + [anon_sym_DOLLARqnameof] = ACTIONS(1661), + [anon_sym_DOLLARvaconst] = ACTIONS(1661), + [anon_sym_DOLLARvaarg] = ACTIONS(1661), + [anon_sym_DOLLARvaref] = ACTIONS(1661), + [anon_sym_DOLLARvaexpr] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [anon_sym_DOLLARvacount] = ACTIONS(1661), + [anon_sym_DOLLAReval] = ACTIONS(1661), + [anon_sym_DOLLARis_const] = ACTIONS(1661), + [anon_sym_DOLLARsizeof] = ACTIONS(1661), + [anon_sym_DOLLARstringify] = ACTIONS(1661), + [anon_sym_DOLLARappend] = ACTIONS(1661), + [anon_sym_DOLLARconcat] = ACTIONS(1661), + [anon_sym_DOLLARdefined] = ACTIONS(1661), + [anon_sym_DOLLARembed] = ACTIONS(1661), + [anon_sym_DOLLARand] = ACTIONS(1661), + [anon_sym_DOLLARor] = ACTIONS(1661), + [anon_sym_DOLLARfeature] = ACTIONS(1661), + [anon_sym_DOLLARassignable] = ACTIONS(1661), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_typeid] = ACTIONS(1661), + [anon_sym_LBRACE_PIPE] = ACTIONS(1663), + [anon_sym_void] = ACTIONS(1661), + [anon_sym_bool] = ACTIONS(1661), + [anon_sym_char] = ACTIONS(1661), + [anon_sym_ichar] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [anon_sym_ushort] = ACTIONS(1661), + [anon_sym_uint] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_ulong] = ACTIONS(1661), + [anon_sym_int128] = ACTIONS(1661), + [anon_sym_uint128] = ACTIONS(1661), + [anon_sym_float] = ACTIONS(1661), + [anon_sym_double] = ACTIONS(1661), + [anon_sym_float16] = ACTIONS(1661), + [anon_sym_bfloat16] = ACTIONS(1661), + [anon_sym_float128] = ACTIONS(1661), + [anon_sym_iptr] = ACTIONS(1661), + [anon_sym_uptr] = ACTIONS(1661), + [anon_sym_isz] = ACTIONS(1661), + [anon_sym_usz] = ACTIONS(1661), + [anon_sym_anyfault] = ACTIONS(1661), + [anon_sym_any] = ACTIONS(1661), + [anon_sym_DOLLARtypeof] = ACTIONS(1661), + [anon_sym_DOLLARtypefrom] = ACTIONS(1661), + [anon_sym_DOLLARevaltype] = ACTIONS(1661), + [anon_sym_DOLLARvatype] = ACTIONS(1661), + [sym_real_literal] = ACTIONS(1663), + }, + [539] = { + [sym_line_comment] = STATE(539), + [sym_doc_comment] = STATE(539), + [sym_block_comment] = STATE(539), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARendif] = ACTIONS(1581), + [anon_sym_DOLLARelse] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), + }, + [540] = { + [sym_line_comment] = STATE(540), + [sym_doc_comment] = STATE(540), + [sym_block_comment] = STATE(540), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1565), - [sym_at_ident] = ACTIONS(1567), - [sym_hash_ident] = ACTIONS(1567), - [sym_type_ident] = ACTIONS(1567), - [sym_ct_type_ident] = ACTIONS(1567), - [sym_const_ident] = ACTIONS(1565), - [sym_builtin] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_tlocal] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_fn] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_var] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_defer] = ACTIONS(1565), - [anon_sym_assert] = ACTIONS(1565), - [anon_sym_nextcase] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_foreach] = ACTIONS(1565), - [anon_sym_foreach_r] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_int] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_asm] = ACTIONS(1565), - [anon_sym_DOLLARassert] = ACTIONS(1565), - [anon_sym_DOLLARerror] = ACTIONS(1565), - [anon_sym_DOLLARecho] = ACTIONS(1565), - [anon_sym_DOLLARif] = ACTIONS(1565), - [anon_sym_DOLLARswitch] = ACTIONS(1565), - [anon_sym_DOLLARfor] = ACTIONS(1565), - [anon_sym_DOLLARendfor] = ACTIONS(1565), - [anon_sym_DOLLARforeach] = ACTIONS(1565), - [anon_sym_DOLLARalignof] = ACTIONS(1565), - [anon_sym_DOLLARextnameof] = ACTIONS(1565), - [anon_sym_DOLLARnameof] = ACTIONS(1565), - [anon_sym_DOLLARoffsetof] = ACTIONS(1565), - [anon_sym_DOLLARqnameof] = ACTIONS(1565), - [anon_sym_DOLLARvaconst] = ACTIONS(1565), - [anon_sym_DOLLARvaarg] = ACTIONS(1565), - [anon_sym_DOLLARvaref] = ACTIONS(1565), - [anon_sym_DOLLARvaexpr] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1565), - [anon_sym_false] = ACTIONS(1565), - [anon_sym_null] = ACTIONS(1565), - [anon_sym_DOLLARvacount] = ACTIONS(1565), - [anon_sym_DOLLAReval] = ACTIONS(1565), - [anon_sym_DOLLARis_const] = ACTIONS(1565), - [anon_sym_DOLLARsizeof] = ACTIONS(1565), - [anon_sym_DOLLARstringify] = ACTIONS(1565), - [anon_sym_DOLLARappend] = ACTIONS(1565), - [anon_sym_DOLLARconcat] = ACTIONS(1565), - [anon_sym_DOLLARdefined] = ACTIONS(1565), - [anon_sym_DOLLARembed] = ACTIONS(1565), - [anon_sym_DOLLARand] = ACTIONS(1565), - [anon_sym_DOLLARor] = ACTIONS(1565), - [anon_sym_DOLLARfeature] = ACTIONS(1565), - [anon_sym_DOLLARassignable] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_typeid] = ACTIONS(1565), - [anon_sym_LBRACE_PIPE] = ACTIONS(1567), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_bool] = ACTIONS(1565), - [anon_sym_char] = ACTIONS(1565), - [anon_sym_ichar] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [anon_sym_ushort] = ACTIONS(1565), - [anon_sym_uint] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_ulong] = ACTIONS(1565), - [anon_sym_int128] = ACTIONS(1565), - [anon_sym_uint128] = ACTIONS(1565), - [anon_sym_float] = ACTIONS(1565), - [anon_sym_double] = ACTIONS(1565), - [anon_sym_float16] = ACTIONS(1565), - [anon_sym_bfloat16] = ACTIONS(1565), - [anon_sym_float128] = ACTIONS(1565), - [anon_sym_iptr] = ACTIONS(1565), - [anon_sym_uptr] = ACTIONS(1565), - [anon_sym_isz] = ACTIONS(1565), - [anon_sym_usz] = ACTIONS(1565), - [anon_sym_anyfault] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1565), - [anon_sym_DOLLARtypeof] = ACTIONS(1565), - [anon_sym_DOLLARtypefrom] = ACTIONS(1565), - [anon_sym_DOLLARevaltype] = ACTIONS(1565), - [anon_sym_DOLLARvatype] = ACTIONS(1565), - [sym_real_literal] = ACTIONS(1567), - }, - [599] = { - [sym_line_comment] = STATE(599), - [sym_doc_comment] = STATE(599), - [sym_block_comment] = STATE(599), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARendfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARappend] = ACTIONS(1463), - [anon_sym_DOLLARconcat] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), - }, - [600] = { - [sym_line_comment] = STATE(600), - [sym_doc_comment] = STATE(600), - [sym_block_comment] = STATE(600), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARendfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARappend] = ACTIONS(1491), - [anon_sym_DOLLARconcat] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARendif] = ACTIONS(1577), + [anon_sym_DOLLARelse] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, - [601] = { - [sym_line_comment] = STATE(601), - [sym_doc_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [541] = { + [sym_line_comment] = STATE(541), + [sym_doc_comment] = STATE(541), + [sym_block_comment] = STATE(541), [sym_ident] = ACTIONS(1593), [sym_integer_literal] = ACTIONS(1595), [anon_sym_SQUOTE] = ACTIONS(1595), @@ -94816,9 +87796,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1593), [anon_sym_DOLLARecho] = ACTIONS(1593), [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARendif] = ACTIONS(1593), + [anon_sym_DOLLARelse] = ACTIONS(1593), [anon_sym_DOLLARswitch] = ACTIONS(1593), [anon_sym_DOLLARfor] = ACTIONS(1593), - [anon_sym_DOLLARendfor] = ACTIONS(1593), [anon_sym_DOLLARforeach] = ACTIONS(1593), [anon_sym_DOLLARalignof] = ACTIONS(1593), [anon_sym_DOLLARextnameof] = ACTIONS(1593), @@ -94879,1045 +87860,3258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1593), [sym_real_literal] = ACTIONS(1595), }, - [602] = { - [sym_line_comment] = STATE(602), - [sym_doc_comment] = STATE(602), - [sym_block_comment] = STATE(602), - [sym_ident] = ACTIONS(1597), - [sym_integer_literal] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [sym_bytes_literal] = ACTIONS(1599), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1597), - [sym_at_ident] = ACTIONS(1599), - [sym_hash_ident] = ACTIONS(1599), - [sym_type_ident] = ACTIONS(1599), - [sym_ct_type_ident] = ACTIONS(1599), - [sym_const_ident] = ACTIONS(1597), - [sym_builtin] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_tlocal] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_fn] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_defer] = ACTIONS(1597), - [anon_sym_assert] = ACTIONS(1597), - [anon_sym_nextcase] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_foreach] = ACTIONS(1597), - [anon_sym_foreach_r] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_int] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_asm] = ACTIONS(1597), - [anon_sym_DOLLARassert] = ACTIONS(1597), - [anon_sym_DOLLARerror] = ACTIONS(1597), - [anon_sym_DOLLARecho] = ACTIONS(1597), - [anon_sym_DOLLARif] = ACTIONS(1597), - [anon_sym_DOLLARswitch] = ACTIONS(1597), - [anon_sym_DOLLARfor] = ACTIONS(1597), - [anon_sym_DOLLARendfor] = ACTIONS(1597), - [anon_sym_DOLLARforeach] = ACTIONS(1597), - [anon_sym_DOLLARalignof] = ACTIONS(1597), - [anon_sym_DOLLARextnameof] = ACTIONS(1597), - [anon_sym_DOLLARnameof] = ACTIONS(1597), - [anon_sym_DOLLARoffsetof] = ACTIONS(1597), - [anon_sym_DOLLARqnameof] = ACTIONS(1597), - [anon_sym_DOLLARvaconst] = ACTIONS(1597), - [anon_sym_DOLLARvaarg] = ACTIONS(1597), - [anon_sym_DOLLARvaref] = ACTIONS(1597), - [anon_sym_DOLLARvaexpr] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_DOLLARvacount] = ACTIONS(1597), - [anon_sym_DOLLAReval] = ACTIONS(1597), - [anon_sym_DOLLARis_const] = ACTIONS(1597), - [anon_sym_DOLLARsizeof] = ACTIONS(1597), - [anon_sym_DOLLARstringify] = ACTIONS(1597), - [anon_sym_DOLLARappend] = ACTIONS(1597), - [anon_sym_DOLLARconcat] = ACTIONS(1597), - [anon_sym_DOLLARdefined] = ACTIONS(1597), - [anon_sym_DOLLARembed] = ACTIONS(1597), - [anon_sym_DOLLARand] = ACTIONS(1597), - [anon_sym_DOLLARor] = ACTIONS(1597), - [anon_sym_DOLLARfeature] = ACTIONS(1597), - [anon_sym_DOLLARassignable] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_typeid] = ACTIONS(1597), - [anon_sym_LBRACE_PIPE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_char] = ACTIONS(1597), - [anon_sym_ichar] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [anon_sym_ushort] = ACTIONS(1597), - [anon_sym_uint] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_ulong] = ACTIONS(1597), - [anon_sym_int128] = ACTIONS(1597), - [anon_sym_uint128] = ACTIONS(1597), - [anon_sym_float] = ACTIONS(1597), - [anon_sym_double] = ACTIONS(1597), - [anon_sym_float16] = ACTIONS(1597), - [anon_sym_bfloat16] = ACTIONS(1597), - [anon_sym_float128] = ACTIONS(1597), - [anon_sym_iptr] = ACTIONS(1597), - [anon_sym_uptr] = ACTIONS(1597), - [anon_sym_isz] = ACTIONS(1597), - [anon_sym_usz] = ACTIONS(1597), - [anon_sym_anyfault] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_DOLLARtypeof] = ACTIONS(1597), - [anon_sym_DOLLARtypefrom] = ACTIONS(1597), - [anon_sym_DOLLARevaltype] = ACTIONS(1597), - [anon_sym_DOLLARvatype] = ACTIONS(1597), - [sym_real_literal] = ACTIONS(1599), - }, - [603] = { - [sym_line_comment] = STATE(603), - [sym_doc_comment] = STATE(603), - [sym_block_comment] = STATE(603), - [sym_ident] = ACTIONS(1601), - [sym_integer_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [anon_sym_BQUOTE] = ACTIONS(1603), - [sym_bytes_literal] = ACTIONS(1603), + [542] = { + [sym_line_comment] = STATE(542), + [sym_doc_comment] = STATE(542), + [sym_block_comment] = STATE(542), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1601), - [sym_at_ident] = ACTIONS(1603), - [sym_hash_ident] = ACTIONS(1603), - [sym_type_ident] = ACTIONS(1603), - [sym_ct_type_ident] = ACTIONS(1603), - [sym_const_ident] = ACTIONS(1601), - [sym_builtin] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_tlocal] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_fn] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_var] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_defer] = ACTIONS(1601), - [anon_sym_assert] = ACTIONS(1601), - [anon_sym_nextcase] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_AMP_AMP] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_foreach] = ACTIONS(1601), - [anon_sym_foreach_r] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_int] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1601), - [anon_sym_DOLLARassert] = ACTIONS(1601), - [anon_sym_DOLLARerror] = ACTIONS(1601), - [anon_sym_DOLLARecho] = ACTIONS(1601), - [anon_sym_DOLLARif] = ACTIONS(1601), - [anon_sym_DOLLARswitch] = ACTIONS(1601), - [anon_sym_DOLLARfor] = ACTIONS(1601), - [anon_sym_DOLLARendfor] = ACTIONS(1601), - [anon_sym_DOLLARforeach] = ACTIONS(1601), - [anon_sym_DOLLARalignof] = ACTIONS(1601), - [anon_sym_DOLLARextnameof] = ACTIONS(1601), - [anon_sym_DOLLARnameof] = ACTIONS(1601), - [anon_sym_DOLLARoffsetof] = ACTIONS(1601), - [anon_sym_DOLLARqnameof] = ACTIONS(1601), - [anon_sym_DOLLARvaconst] = ACTIONS(1601), - [anon_sym_DOLLARvaarg] = ACTIONS(1601), - [anon_sym_DOLLARvaref] = ACTIONS(1601), - [anon_sym_DOLLARvaexpr] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1601), - [anon_sym_false] = ACTIONS(1601), - [anon_sym_null] = ACTIONS(1601), - [anon_sym_DOLLARvacount] = ACTIONS(1601), - [anon_sym_DOLLAReval] = ACTIONS(1601), - [anon_sym_DOLLARis_const] = ACTIONS(1601), - [anon_sym_DOLLARsizeof] = ACTIONS(1601), - [anon_sym_DOLLARstringify] = ACTIONS(1601), - [anon_sym_DOLLARappend] = ACTIONS(1601), - [anon_sym_DOLLARconcat] = ACTIONS(1601), - [anon_sym_DOLLARdefined] = ACTIONS(1601), - [anon_sym_DOLLARembed] = ACTIONS(1601), - [anon_sym_DOLLARand] = ACTIONS(1601), - [anon_sym_DOLLARor] = ACTIONS(1601), - [anon_sym_DOLLARfeature] = ACTIONS(1601), - [anon_sym_DOLLARassignable] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_typeid] = ACTIONS(1601), - [anon_sym_LBRACE_PIPE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_char] = ACTIONS(1601), - [anon_sym_ichar] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [anon_sym_ushort] = ACTIONS(1601), - [anon_sym_uint] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_ulong] = ACTIONS(1601), - [anon_sym_int128] = ACTIONS(1601), - [anon_sym_uint128] = ACTIONS(1601), - [anon_sym_float] = ACTIONS(1601), - [anon_sym_double] = ACTIONS(1601), - [anon_sym_float16] = ACTIONS(1601), - [anon_sym_bfloat16] = ACTIONS(1601), - [anon_sym_float128] = ACTIONS(1601), - [anon_sym_iptr] = ACTIONS(1601), - [anon_sym_uptr] = ACTIONS(1601), - [anon_sym_isz] = ACTIONS(1601), - [anon_sym_usz] = ACTIONS(1601), - [anon_sym_anyfault] = ACTIONS(1601), - [anon_sym_any] = ACTIONS(1601), - [anon_sym_DOLLARtypeof] = ACTIONS(1601), - [anon_sym_DOLLARtypefrom] = ACTIONS(1601), - [anon_sym_DOLLARevaltype] = ACTIONS(1601), - [anon_sym_DOLLARvatype] = ACTIONS(1601), - [sym_real_literal] = ACTIONS(1603), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARendif] = ACTIONS(1633), + [anon_sym_DOLLARelse] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, - [604] = { - [sym_line_comment] = STATE(604), - [sym_doc_comment] = STATE(604), - [sym_block_comment] = STATE(604), - [sym_ident] = ACTIONS(1605), - [sym_integer_literal] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [anon_sym_BQUOTE] = ACTIONS(1607), - [sym_bytes_literal] = ACTIONS(1607), + [543] = { + [sym_line_comment] = STATE(543), + [sym_doc_comment] = STATE(543), + [sym_block_comment] = STATE(543), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARendif] = ACTIONS(1377), + [anon_sym_DOLLARelse] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), + }, + [544] = { + [sym_line_comment] = STATE(544), + [sym_doc_comment] = STATE(544), + [sym_block_comment] = STATE(544), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARendif] = ACTIONS(1381), + [anon_sym_DOLLARelse] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), + }, + [545] = { + [sym_line_comment] = STATE(545), + [sym_doc_comment] = STATE(545), + [sym_block_comment] = STATE(545), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARendif] = ACTIONS(1385), + [anon_sym_DOLLARelse] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), + }, + [546] = { + [sym_line_comment] = STATE(546), + [sym_doc_comment] = STATE(546), + [sym_block_comment] = STATE(546), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARendif] = ACTIONS(1357), + [anon_sym_DOLLARelse] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, + [547] = { + [sym_line_comment] = STATE(547), + [sym_doc_comment] = STATE(547), + [sym_block_comment] = STATE(547), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1605), - [sym_at_ident] = ACTIONS(1607), - [sym_hash_ident] = ACTIONS(1607), - [sym_type_ident] = ACTIONS(1607), - [sym_ct_type_ident] = ACTIONS(1607), - [sym_const_ident] = ACTIONS(1605), - [sym_builtin] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_tlocal] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_fn] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_var] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_defer] = ACTIONS(1605), - [anon_sym_assert] = ACTIONS(1605), - [anon_sym_nextcase] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_foreach] = ACTIONS(1605), - [anon_sym_foreach_r] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_int] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_asm] = ACTIONS(1605), - [anon_sym_DOLLARassert] = ACTIONS(1605), - [anon_sym_DOLLARerror] = ACTIONS(1605), - [anon_sym_DOLLARecho] = ACTIONS(1605), - [anon_sym_DOLLARif] = ACTIONS(1605), - [anon_sym_DOLLARswitch] = ACTIONS(1605), - [anon_sym_DOLLARfor] = ACTIONS(1605), - [anon_sym_DOLLARendfor] = ACTIONS(1605), - [anon_sym_DOLLARforeach] = ACTIONS(1605), - [anon_sym_DOLLARalignof] = ACTIONS(1605), - [anon_sym_DOLLARextnameof] = ACTIONS(1605), - [anon_sym_DOLLARnameof] = ACTIONS(1605), - [anon_sym_DOLLARoffsetof] = ACTIONS(1605), - [anon_sym_DOLLARqnameof] = ACTIONS(1605), - [anon_sym_DOLLARvaconst] = ACTIONS(1605), - [anon_sym_DOLLARvaarg] = ACTIONS(1605), - [anon_sym_DOLLARvaref] = ACTIONS(1605), - [anon_sym_DOLLARvaexpr] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1605), - [anon_sym_false] = ACTIONS(1605), - [anon_sym_null] = ACTIONS(1605), - [anon_sym_DOLLARvacount] = ACTIONS(1605), - [anon_sym_DOLLAReval] = ACTIONS(1605), - [anon_sym_DOLLARis_const] = ACTIONS(1605), - [anon_sym_DOLLARsizeof] = ACTIONS(1605), - [anon_sym_DOLLARstringify] = ACTIONS(1605), - [anon_sym_DOLLARappend] = ACTIONS(1605), - [anon_sym_DOLLARconcat] = ACTIONS(1605), - [anon_sym_DOLLARdefined] = ACTIONS(1605), - [anon_sym_DOLLARembed] = ACTIONS(1605), - [anon_sym_DOLLARand] = ACTIONS(1605), - [anon_sym_DOLLARor] = ACTIONS(1605), - [anon_sym_DOLLARfeature] = ACTIONS(1605), - [anon_sym_DOLLARassignable] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_typeid] = ACTIONS(1605), - [anon_sym_LBRACE_PIPE] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_char] = ACTIONS(1605), - [anon_sym_ichar] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [anon_sym_ushort] = ACTIONS(1605), - [anon_sym_uint] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_ulong] = ACTIONS(1605), - [anon_sym_int128] = ACTIONS(1605), - [anon_sym_uint128] = ACTIONS(1605), - [anon_sym_float] = ACTIONS(1605), - [anon_sym_double] = ACTIONS(1605), - [anon_sym_float16] = ACTIONS(1605), - [anon_sym_bfloat16] = ACTIONS(1605), - [anon_sym_float128] = ACTIONS(1605), - [anon_sym_iptr] = ACTIONS(1605), - [anon_sym_uptr] = ACTIONS(1605), - [anon_sym_isz] = ACTIONS(1605), - [anon_sym_usz] = ACTIONS(1605), - [anon_sym_anyfault] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1605), - [anon_sym_DOLLARtypeof] = ACTIONS(1605), - [anon_sym_DOLLARtypefrom] = ACTIONS(1605), - [anon_sym_DOLLARevaltype] = ACTIONS(1605), - [anon_sym_DOLLARvatype] = ACTIONS(1605), - [sym_real_literal] = ACTIONS(1607), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARendif] = ACTIONS(1545), + [anon_sym_DOLLARelse] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, - [605] = { - [sym_line_comment] = STATE(605), - [sym_doc_comment] = STATE(605), - [sym_block_comment] = STATE(605), - [sym_ident] = ACTIONS(1609), - [sym_integer_literal] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [anon_sym_BQUOTE] = ACTIONS(1611), - [sym_bytes_literal] = ACTIONS(1611), + [548] = { + [sym_line_comment] = STATE(548), + [sym_doc_comment] = STATE(548), + [sym_block_comment] = STATE(548), + [sym_ident] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [sym_bytes_literal] = ACTIONS(1391), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1389), + [sym_at_ident] = ACTIONS(1391), + [sym_hash_ident] = ACTIONS(1391), + [sym_type_ident] = ACTIONS(1391), + [sym_ct_type_ident] = ACTIONS(1391), + [sym_const_ident] = ACTIONS(1389), + [sym_builtin] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_tlocal] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_var] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_defer] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1389), + [anon_sym_nextcase] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_foreach] = ACTIONS(1389), + [anon_sym_foreach_r] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_int] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_DOLLARassert] = ACTIONS(1389), + [anon_sym_DOLLARerror] = ACTIONS(1389), + [anon_sym_DOLLARecho] = ACTIONS(1389), + [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARendif] = ACTIONS(1389), + [anon_sym_DOLLARelse] = ACTIONS(1389), + [anon_sym_DOLLARswitch] = ACTIONS(1389), + [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARforeach] = ACTIONS(1389), + [anon_sym_DOLLARalignof] = ACTIONS(1389), + [anon_sym_DOLLARextnameof] = ACTIONS(1389), + [anon_sym_DOLLARnameof] = ACTIONS(1389), + [anon_sym_DOLLARoffsetof] = ACTIONS(1389), + [anon_sym_DOLLARqnameof] = ACTIONS(1389), + [anon_sym_DOLLARvaconst] = ACTIONS(1389), + [anon_sym_DOLLARvaarg] = ACTIONS(1389), + [anon_sym_DOLLARvaref] = ACTIONS(1389), + [anon_sym_DOLLARvaexpr] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_DOLLARvacount] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), + [anon_sym_DOLLARand] = ACTIONS(1389), + [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLARassignable] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_typeid] = ACTIONS(1389), + [anon_sym_LBRACE_PIPE] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_ichar] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_ushort] = ACTIONS(1389), + [anon_sym_uint] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_ulong] = ACTIONS(1389), + [anon_sym_int128] = ACTIONS(1389), + [anon_sym_uint128] = ACTIONS(1389), + [anon_sym_float] = ACTIONS(1389), + [anon_sym_double] = ACTIONS(1389), + [anon_sym_float16] = ACTIONS(1389), + [anon_sym_bfloat16] = ACTIONS(1389), + [anon_sym_float128] = ACTIONS(1389), + [anon_sym_iptr] = ACTIONS(1389), + [anon_sym_uptr] = ACTIONS(1389), + [anon_sym_isz] = ACTIONS(1389), + [anon_sym_usz] = ACTIONS(1389), + [anon_sym_anyfault] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_DOLLARtypeof] = ACTIONS(1389), + [anon_sym_DOLLARtypefrom] = ACTIONS(1389), + [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), + [sym_real_literal] = ACTIONS(1391), + }, + [549] = { + [sym_line_comment] = STATE(549), + [sym_doc_comment] = STATE(549), + [sym_block_comment] = STATE(549), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARendforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), + }, + [550] = { + [sym_line_comment] = STATE(550), + [sym_doc_comment] = STATE(550), + [sym_block_comment] = STATE(550), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARendif] = ACTIONS(1393), + [anon_sym_DOLLARelse] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), + }, + [551] = { + [sym_line_comment] = STATE(551), + [sym_doc_comment] = STATE(551), + [sym_block_comment] = STATE(551), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARendif] = ACTIONS(1397), + [anon_sym_DOLLARelse] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), + }, + [552] = { + [sym_line_comment] = STATE(552), + [sym_doc_comment] = STATE(552), + [sym_block_comment] = STATE(552), + [sym_ident] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_BQUOTE] = ACTIONS(1403), + [sym_bytes_literal] = ACTIONS(1403), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1401), + [sym_at_ident] = ACTIONS(1403), + [sym_hash_ident] = ACTIONS(1403), + [sym_type_ident] = ACTIONS(1403), + [sym_ct_type_ident] = ACTIONS(1403), + [sym_const_ident] = ACTIONS(1401), + [sym_builtin] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_tlocal] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_var] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_defer] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1401), + [anon_sym_nextcase] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_foreach] = ACTIONS(1401), + [anon_sym_foreach_r] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_int] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_DOLLARassert] = ACTIONS(1401), + [anon_sym_DOLLARerror] = ACTIONS(1401), + [anon_sym_DOLLARecho] = ACTIONS(1401), + [anon_sym_DOLLARif] = ACTIONS(1401), + [anon_sym_DOLLARendif] = ACTIONS(1401), + [anon_sym_DOLLARelse] = ACTIONS(1401), + [anon_sym_DOLLARswitch] = ACTIONS(1401), + [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARforeach] = ACTIONS(1401), + [anon_sym_DOLLARalignof] = ACTIONS(1401), + [anon_sym_DOLLARextnameof] = ACTIONS(1401), + [anon_sym_DOLLARnameof] = ACTIONS(1401), + [anon_sym_DOLLARoffsetof] = ACTIONS(1401), + [anon_sym_DOLLARqnameof] = ACTIONS(1401), + [anon_sym_DOLLARvaconst] = ACTIONS(1401), + [anon_sym_DOLLARvaarg] = ACTIONS(1401), + [anon_sym_DOLLARvaref] = ACTIONS(1401), + [anon_sym_DOLLARvaexpr] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1401), + [anon_sym_DOLLARvacount] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), + [anon_sym_DOLLARand] = ACTIONS(1401), + [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLARassignable] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), + [anon_sym_typeid] = ACTIONS(1401), + [anon_sym_LBRACE_PIPE] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_ichar] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), + }, + [553] = { + [sym_line_comment] = STATE(553), + [sym_doc_comment] = STATE(553), + [sym_block_comment] = STATE(553), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARendif] = ACTIONS(1405), + [anon_sym_DOLLARelse] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), + }, + [554] = { + [sym_line_comment] = STATE(554), + [sym_doc_comment] = STATE(554), + [sym_block_comment] = STATE(554), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARendif] = ACTIONS(1409), + [anon_sym_DOLLARelse] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), + }, + [555] = { + [sym_line_comment] = STATE(555), + [sym_doc_comment] = STATE(555), + [sym_block_comment] = STATE(555), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARendif] = ACTIONS(1413), + [anon_sym_DOLLARelse] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), + }, + [556] = { + [sym_line_comment] = STATE(556), + [sym_doc_comment] = STATE(556), + [sym_block_comment] = STATE(556), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1609), - [sym_at_ident] = ACTIONS(1611), - [sym_hash_ident] = ACTIONS(1611), - [sym_type_ident] = ACTIONS(1611), - [sym_ct_type_ident] = ACTIONS(1611), - [sym_const_ident] = ACTIONS(1609), - [sym_builtin] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_tlocal] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_fn] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_var] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_defer] = ACTIONS(1609), - [anon_sym_assert] = ACTIONS(1609), - [anon_sym_nextcase] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_foreach] = ACTIONS(1609), - [anon_sym_foreach_r] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_asm] = ACTIONS(1609), - [anon_sym_DOLLARassert] = ACTIONS(1609), - [anon_sym_DOLLARerror] = ACTIONS(1609), - [anon_sym_DOLLARecho] = ACTIONS(1609), - [anon_sym_DOLLARif] = ACTIONS(1609), - [anon_sym_DOLLARswitch] = ACTIONS(1609), - [anon_sym_DOLLARfor] = ACTIONS(1609), - [anon_sym_DOLLARendfor] = ACTIONS(1609), - [anon_sym_DOLLARforeach] = ACTIONS(1609), - [anon_sym_DOLLARalignof] = ACTIONS(1609), - [anon_sym_DOLLARextnameof] = ACTIONS(1609), - [anon_sym_DOLLARnameof] = ACTIONS(1609), - [anon_sym_DOLLARoffsetof] = ACTIONS(1609), - [anon_sym_DOLLARqnameof] = ACTIONS(1609), - [anon_sym_DOLLARvaconst] = ACTIONS(1609), - [anon_sym_DOLLARvaarg] = ACTIONS(1609), - [anon_sym_DOLLARvaref] = ACTIONS(1609), - [anon_sym_DOLLARvaexpr] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_DOLLARvacount] = ACTIONS(1609), - [anon_sym_DOLLAReval] = ACTIONS(1609), - [anon_sym_DOLLARis_const] = ACTIONS(1609), - [anon_sym_DOLLARsizeof] = ACTIONS(1609), - [anon_sym_DOLLARstringify] = ACTIONS(1609), - [anon_sym_DOLLARappend] = ACTIONS(1609), - [anon_sym_DOLLARconcat] = ACTIONS(1609), - [anon_sym_DOLLARdefined] = ACTIONS(1609), - [anon_sym_DOLLARembed] = ACTIONS(1609), - [anon_sym_DOLLARand] = ACTIONS(1609), - [anon_sym_DOLLARor] = ACTIONS(1609), - [anon_sym_DOLLARfeature] = ACTIONS(1609), - [anon_sym_DOLLARassignable] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_typeid] = ACTIONS(1609), - [anon_sym_LBRACE_PIPE] = ACTIONS(1611), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_ichar] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [anon_sym_ushort] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_ulong] = ACTIONS(1609), - [anon_sym_int128] = ACTIONS(1609), - [anon_sym_uint128] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_double] = ACTIONS(1609), - [anon_sym_float16] = ACTIONS(1609), - [anon_sym_bfloat16] = ACTIONS(1609), - [anon_sym_float128] = ACTIONS(1609), - [anon_sym_iptr] = ACTIONS(1609), - [anon_sym_uptr] = ACTIONS(1609), - [anon_sym_isz] = ACTIONS(1609), - [anon_sym_usz] = ACTIONS(1609), - [anon_sym_anyfault] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1609), - [anon_sym_DOLLARtypeof] = ACTIONS(1609), - [anon_sym_DOLLARtypefrom] = ACTIONS(1609), - [anon_sym_DOLLARevaltype] = ACTIONS(1609), - [anon_sym_DOLLARvatype] = ACTIONS(1609), - [sym_real_literal] = ACTIONS(1611), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARendif] = ACTIONS(1613), + [anon_sym_DOLLARelse] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [606] = { - [sym_line_comment] = STATE(606), - [sym_doc_comment] = STATE(606), - [sym_block_comment] = STATE(606), - [sym_ident] = ACTIONS(1625), - [sym_integer_literal] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [anon_sym_BQUOTE] = ACTIONS(1627), - [sym_bytes_literal] = ACTIONS(1627), + [557] = { + [sym_line_comment] = STATE(557), + [sym_doc_comment] = STATE(557), + [sym_block_comment] = STATE(557), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARendif] = ACTIONS(1477), + [anon_sym_DOLLARelse] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), + }, + [558] = { + [sym_line_comment] = STATE(558), + [sym_doc_comment] = STATE(558), + [sym_block_comment] = STATE(558), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARendif] = ACTIONS(1421), + [anon_sym_DOLLARelse] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), + }, + [559] = { + [sym_line_comment] = STATE(559), + [sym_doc_comment] = STATE(559), + [sym_block_comment] = STATE(559), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARendif] = ACTIONS(1425), + [anon_sym_DOLLARelse] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), + }, + [560] = { + [sym_line_comment] = STATE(560), + [sym_doc_comment] = STATE(560), + [sym_block_comment] = STATE(560), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARendif] = ACTIONS(1429), + [anon_sym_DOLLARelse] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), + }, + [561] = { + [sym_line_comment] = STATE(561), + [sym_doc_comment] = STATE(561), + [sym_block_comment] = STATE(561), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARendif] = ACTIONS(1473), + [anon_sym_DOLLARelse] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), + }, + [562] = { + [sym_line_comment] = STATE(562), + [sym_doc_comment] = STATE(562), + [sym_block_comment] = STATE(562), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1625), - [sym_at_ident] = ACTIONS(1627), - [sym_hash_ident] = ACTIONS(1627), - [sym_type_ident] = ACTIONS(1627), - [sym_ct_type_ident] = ACTIONS(1627), - [sym_const_ident] = ACTIONS(1625), - [sym_builtin] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_tlocal] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_fn] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_var] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_defer] = ACTIONS(1625), - [anon_sym_assert] = ACTIONS(1625), - [anon_sym_nextcase] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_AMP_AMP] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_foreach] = ACTIONS(1625), - [anon_sym_foreach_r] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_int] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_asm] = ACTIONS(1625), - [anon_sym_DOLLARassert] = ACTIONS(1625), - [anon_sym_DOLLARerror] = ACTIONS(1625), - [anon_sym_DOLLARecho] = ACTIONS(1625), - [anon_sym_DOLLARif] = ACTIONS(1625), - [anon_sym_DOLLARswitch] = ACTIONS(1625), - [anon_sym_DOLLARfor] = ACTIONS(1625), - [anon_sym_DOLLARendfor] = ACTIONS(1625), - [anon_sym_DOLLARforeach] = ACTIONS(1625), - [anon_sym_DOLLARalignof] = ACTIONS(1625), - [anon_sym_DOLLARextnameof] = ACTIONS(1625), - [anon_sym_DOLLARnameof] = ACTIONS(1625), - [anon_sym_DOLLARoffsetof] = ACTIONS(1625), - [anon_sym_DOLLARqnameof] = ACTIONS(1625), - [anon_sym_DOLLARvaconst] = ACTIONS(1625), - [anon_sym_DOLLARvaarg] = ACTIONS(1625), - [anon_sym_DOLLARvaref] = ACTIONS(1625), - [anon_sym_DOLLARvaexpr] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [anon_sym_null] = ACTIONS(1625), - [anon_sym_DOLLARvacount] = ACTIONS(1625), - [anon_sym_DOLLAReval] = ACTIONS(1625), - [anon_sym_DOLLARis_const] = ACTIONS(1625), - [anon_sym_DOLLARsizeof] = ACTIONS(1625), - [anon_sym_DOLLARstringify] = ACTIONS(1625), - [anon_sym_DOLLARappend] = ACTIONS(1625), - [anon_sym_DOLLARconcat] = ACTIONS(1625), - [anon_sym_DOLLARdefined] = ACTIONS(1625), - [anon_sym_DOLLARembed] = ACTIONS(1625), - [anon_sym_DOLLARand] = ACTIONS(1625), - [anon_sym_DOLLARor] = ACTIONS(1625), - [anon_sym_DOLLARfeature] = ACTIONS(1625), - [anon_sym_DOLLARassignable] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_typeid] = ACTIONS(1625), - [anon_sym_LBRACE_PIPE] = ACTIONS(1627), - [anon_sym_void] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_char] = ACTIONS(1625), - [anon_sym_ichar] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [anon_sym_ushort] = ACTIONS(1625), - [anon_sym_uint] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_ulong] = ACTIONS(1625), - [anon_sym_int128] = ACTIONS(1625), - [anon_sym_uint128] = ACTIONS(1625), - [anon_sym_float] = ACTIONS(1625), - [anon_sym_double] = ACTIONS(1625), - [anon_sym_float16] = ACTIONS(1625), - [anon_sym_bfloat16] = ACTIONS(1625), - [anon_sym_float128] = ACTIONS(1625), - [anon_sym_iptr] = ACTIONS(1625), - [anon_sym_uptr] = ACTIONS(1625), - [anon_sym_isz] = ACTIONS(1625), - [anon_sym_usz] = ACTIONS(1625), - [anon_sym_anyfault] = ACTIONS(1625), - [anon_sym_any] = ACTIONS(1625), - [anon_sym_DOLLARtypeof] = ACTIONS(1625), - [anon_sym_DOLLARtypefrom] = ACTIONS(1625), - [anon_sym_DOLLARevaltype] = ACTIONS(1625), - [anon_sym_DOLLARvatype] = ACTIONS(1625), - [sym_real_literal] = ACTIONS(1627), - }, - [607] = { - [sym_line_comment] = STATE(607), - [sym_doc_comment] = STATE(607), - [sym_block_comment] = STATE(607), - [sym_ident] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1651), - [sym_bytes_literal] = ACTIONS(1651), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1649), - [sym_at_ident] = ACTIONS(1651), - [sym_hash_ident] = ACTIONS(1651), - [sym_type_ident] = ACTIONS(1651), - [sym_ct_type_ident] = ACTIONS(1651), - [sym_const_ident] = ACTIONS(1649), - [sym_builtin] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_tlocal] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_var] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_nextcase] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_foreach] = ACTIONS(1649), - [anon_sym_foreach_r] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_DOLLARassert] = ACTIONS(1649), - [anon_sym_DOLLARerror] = ACTIONS(1649), - [anon_sym_DOLLARecho] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_DOLLARswitch] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_DOLLARendfor] = ACTIONS(1649), - [anon_sym_DOLLARforeach] = ACTIONS(1649), - [anon_sym_DOLLARalignof] = ACTIONS(1649), - [anon_sym_DOLLARextnameof] = ACTIONS(1649), - [anon_sym_DOLLARnameof] = ACTIONS(1649), - [anon_sym_DOLLARoffsetof] = ACTIONS(1649), - [anon_sym_DOLLARqnameof] = ACTIONS(1649), - [anon_sym_DOLLARvaconst] = ACTIONS(1649), - [anon_sym_DOLLARvaarg] = ACTIONS(1649), - [anon_sym_DOLLARvaref] = ACTIONS(1649), - [anon_sym_DOLLARvaexpr] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [anon_sym_DOLLARvacount] = ACTIONS(1649), - [anon_sym_DOLLAReval] = ACTIONS(1649), - [anon_sym_DOLLARis_const] = ACTIONS(1649), - [anon_sym_DOLLARsizeof] = ACTIONS(1649), - [anon_sym_DOLLARstringify] = ACTIONS(1649), - [anon_sym_DOLLARappend] = ACTIONS(1649), - [anon_sym_DOLLARconcat] = ACTIONS(1649), - [anon_sym_DOLLARdefined] = ACTIONS(1649), - [anon_sym_DOLLARembed] = ACTIONS(1649), - [anon_sym_DOLLARand] = ACTIONS(1649), - [anon_sym_DOLLARor] = ACTIONS(1649), - [anon_sym_DOLLARfeature] = ACTIONS(1649), - [anon_sym_DOLLARassignable] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_typeid] = ACTIONS(1649), - [anon_sym_LBRACE_PIPE] = ACTIONS(1651), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_ichar] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [anon_sym_ushort] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_ulong] = ACTIONS(1649), - [anon_sym_int128] = ACTIONS(1649), - [anon_sym_uint128] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_double] = ACTIONS(1649), - [anon_sym_float16] = ACTIONS(1649), - [anon_sym_bfloat16] = ACTIONS(1649), - [anon_sym_float128] = ACTIONS(1649), - [anon_sym_iptr] = ACTIONS(1649), - [anon_sym_uptr] = ACTIONS(1649), - [anon_sym_isz] = ACTIONS(1649), - [anon_sym_usz] = ACTIONS(1649), - [anon_sym_anyfault] = ACTIONS(1649), - [anon_sym_any] = ACTIONS(1649), - [anon_sym_DOLLARtypeof] = ACTIONS(1649), - [anon_sym_DOLLARtypefrom] = ACTIONS(1649), - [anon_sym_DOLLARevaltype] = ACTIONS(1649), - [anon_sym_DOLLARvatype] = ACTIONS(1649), - [sym_real_literal] = ACTIONS(1651), - }, - [608] = { - [sym_line_comment] = STATE(608), - [sym_doc_comment] = STATE(608), - [sym_block_comment] = STATE(608), - [sym_ident] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_BQUOTE] = ACTIONS(1405), - [sym_bytes_literal] = ACTIONS(1405), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1403), - [sym_at_ident] = ACTIONS(1405), - [sym_hash_ident] = ACTIONS(1405), - [sym_type_ident] = ACTIONS(1405), - [sym_ct_type_ident] = ACTIONS(1405), - [sym_const_ident] = ACTIONS(1403), - [sym_builtin] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_tlocal] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_defer] = ACTIONS(1403), - [anon_sym_assert] = ACTIONS(1403), - [anon_sym_nextcase] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_foreach] = ACTIONS(1403), - [anon_sym_foreach_r] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_int] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1403), - [anon_sym_DOLLARassert] = ACTIONS(1403), - [anon_sym_DOLLARerror] = ACTIONS(1403), - [anon_sym_DOLLARecho] = ACTIONS(1403), - [anon_sym_DOLLARif] = ACTIONS(1403), - [anon_sym_DOLLARswitch] = ACTIONS(1403), - [anon_sym_DOLLARfor] = ACTIONS(1403), - [anon_sym_DOLLARendfor] = ACTIONS(1403), - [anon_sym_DOLLARforeach] = ACTIONS(1403), - [anon_sym_DOLLARalignof] = ACTIONS(1403), - [anon_sym_DOLLARextnameof] = ACTIONS(1403), - [anon_sym_DOLLARnameof] = ACTIONS(1403), - [anon_sym_DOLLARoffsetof] = ACTIONS(1403), - [anon_sym_DOLLARqnameof] = ACTIONS(1403), - [anon_sym_DOLLARvaconst] = ACTIONS(1403), - [anon_sym_DOLLARvaarg] = ACTIONS(1403), - [anon_sym_DOLLARvaref] = ACTIONS(1403), - [anon_sym_DOLLARvaexpr] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_DOLLARvacount] = ACTIONS(1403), - [anon_sym_DOLLAReval] = ACTIONS(1403), - [anon_sym_DOLLARis_const] = ACTIONS(1403), - [anon_sym_DOLLARsizeof] = ACTIONS(1403), - [anon_sym_DOLLARstringify] = ACTIONS(1403), - [anon_sym_DOLLARappend] = ACTIONS(1403), - [anon_sym_DOLLARconcat] = ACTIONS(1403), - [anon_sym_DOLLARdefined] = ACTIONS(1403), - [anon_sym_DOLLARembed] = ACTIONS(1403), - [anon_sym_DOLLARand] = ACTIONS(1403), - [anon_sym_DOLLARor] = ACTIONS(1403), - [anon_sym_DOLLARfeature] = ACTIONS(1403), - [anon_sym_DOLLARassignable] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_typeid] = ACTIONS(1403), - [anon_sym_LBRACE_PIPE] = ACTIONS(1405), - [anon_sym_void] = ACTIONS(1403), - [anon_sym_bool] = ACTIONS(1403), - [anon_sym_char] = ACTIONS(1403), - [anon_sym_ichar] = ACTIONS(1403), - [anon_sym_short] = ACTIONS(1403), - [anon_sym_ushort] = ACTIONS(1403), - [anon_sym_uint] = ACTIONS(1403), - [anon_sym_long] = ACTIONS(1403), - [anon_sym_ulong] = ACTIONS(1403), - [anon_sym_int128] = ACTIONS(1403), - [anon_sym_uint128] = ACTIONS(1403), - [anon_sym_float] = ACTIONS(1403), - [anon_sym_double] = ACTIONS(1403), - [anon_sym_float16] = ACTIONS(1403), - [anon_sym_bfloat16] = ACTIONS(1403), - [anon_sym_float128] = ACTIONS(1403), - [anon_sym_iptr] = ACTIONS(1403), - [anon_sym_uptr] = ACTIONS(1403), - [anon_sym_isz] = ACTIONS(1403), - [anon_sym_usz] = ACTIONS(1403), - [anon_sym_anyfault] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_DOLLARtypeof] = ACTIONS(1403), - [anon_sym_DOLLARtypefrom] = ACTIONS(1403), - [anon_sym_DOLLARevaltype] = ACTIONS(1403), - [anon_sym_DOLLARvatype] = ACTIONS(1403), - [sym_real_literal] = ACTIONS(1405), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARendif] = ACTIONS(1613), + [anon_sym_DOLLARelse] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [609] = { - [sym_line_comment] = STATE(609), - [sym_doc_comment] = STATE(609), - [sym_block_comment] = STATE(609), - [sym_ident] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [anon_sym_BQUOTE] = ACTIONS(1527), - [sym_bytes_literal] = ACTIONS(1527), + [563] = { + [sym_line_comment] = STATE(563), + [sym_doc_comment] = STATE(563), + [sym_block_comment] = STATE(563), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1525), - [sym_at_ident] = ACTIONS(1527), - [sym_hash_ident] = ACTIONS(1527), - [sym_type_ident] = ACTIONS(1527), - [sym_ct_type_ident] = ACTIONS(1527), - [sym_const_ident] = ACTIONS(1525), - [sym_builtin] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_tlocal] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_var] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_defer] = ACTIONS(1525), - [anon_sym_assert] = ACTIONS(1525), - [anon_sym_nextcase] = ACTIONS(1525), - [anon_sym_switch] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_foreach] = ACTIONS(1525), - [anon_sym_foreach_r] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_int] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym_DOLLARassert] = ACTIONS(1525), - [anon_sym_DOLLARerror] = ACTIONS(1525), - [anon_sym_DOLLARecho] = ACTIONS(1525), - [anon_sym_DOLLARif] = ACTIONS(1525), - [anon_sym_DOLLARswitch] = ACTIONS(1525), - [anon_sym_DOLLARfor] = ACTIONS(1525), - [anon_sym_DOLLARendfor] = ACTIONS(1525), - [anon_sym_DOLLARforeach] = ACTIONS(1525), - [anon_sym_DOLLARalignof] = ACTIONS(1525), - [anon_sym_DOLLARextnameof] = ACTIONS(1525), - [anon_sym_DOLLARnameof] = ACTIONS(1525), - [anon_sym_DOLLARoffsetof] = ACTIONS(1525), - [anon_sym_DOLLARqnameof] = ACTIONS(1525), - [anon_sym_DOLLARvaconst] = ACTIONS(1525), - [anon_sym_DOLLARvaarg] = ACTIONS(1525), - [anon_sym_DOLLARvaref] = ACTIONS(1525), - [anon_sym_DOLLARvaexpr] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1525), - [anon_sym_false] = ACTIONS(1525), - [anon_sym_null] = ACTIONS(1525), - [anon_sym_DOLLARvacount] = ACTIONS(1525), - [anon_sym_DOLLAReval] = ACTIONS(1525), - [anon_sym_DOLLARis_const] = ACTIONS(1525), - [anon_sym_DOLLARsizeof] = ACTIONS(1525), - [anon_sym_DOLLARstringify] = ACTIONS(1525), - [anon_sym_DOLLARappend] = ACTIONS(1525), - [anon_sym_DOLLARconcat] = ACTIONS(1525), - [anon_sym_DOLLARdefined] = ACTIONS(1525), - [anon_sym_DOLLARembed] = ACTIONS(1525), - [anon_sym_DOLLARand] = ACTIONS(1525), - [anon_sym_DOLLARor] = ACTIONS(1525), - [anon_sym_DOLLARfeature] = ACTIONS(1525), - [anon_sym_DOLLARassignable] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_typeid] = ACTIONS(1525), - [anon_sym_LBRACE_PIPE] = ACTIONS(1527), - [anon_sym_void] = ACTIONS(1525), - [anon_sym_bool] = ACTIONS(1525), - [anon_sym_char] = ACTIONS(1525), - [anon_sym_ichar] = ACTIONS(1525), - [anon_sym_short] = ACTIONS(1525), - [anon_sym_ushort] = ACTIONS(1525), - [anon_sym_uint] = ACTIONS(1525), - [anon_sym_long] = ACTIONS(1525), - [anon_sym_ulong] = ACTIONS(1525), - [anon_sym_int128] = ACTIONS(1525), - [anon_sym_uint128] = ACTIONS(1525), - [anon_sym_float] = ACTIONS(1525), - [anon_sym_double] = ACTIONS(1525), - [anon_sym_float16] = ACTIONS(1525), - [anon_sym_bfloat16] = ACTIONS(1525), - [anon_sym_float128] = ACTIONS(1525), - [anon_sym_iptr] = ACTIONS(1525), - [anon_sym_uptr] = ACTIONS(1525), - [anon_sym_isz] = ACTIONS(1525), - [anon_sym_usz] = ACTIONS(1525), - [anon_sym_anyfault] = ACTIONS(1525), - [anon_sym_any] = ACTIONS(1525), - [anon_sym_DOLLARtypeof] = ACTIONS(1525), - [anon_sym_DOLLARtypefrom] = ACTIONS(1525), - [anon_sym_DOLLARevaltype] = ACTIONS(1525), - [anon_sym_DOLLARvatype] = ACTIONS(1525), - [sym_real_literal] = ACTIONS(1527), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARendif] = ACTIONS(1597), + [anon_sym_DOLLARelse] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, - [610] = { - [sym_line_comment] = STATE(610), - [sym_doc_comment] = STATE(610), - [sym_block_comment] = STATE(610), - [sym_ident] = ACTIONS(1589), - [sym_integer_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [anon_sym_BQUOTE] = ACTIONS(1591), - [sym_bytes_literal] = ACTIONS(1591), + [564] = { + [sym_line_comment] = STATE(564), + [sym_doc_comment] = STATE(564), + [sym_block_comment] = STATE(564), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARendif] = ACTIONS(1441), + [anon_sym_DOLLARelse] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), + }, + [565] = { + [sym_line_comment] = STATE(565), + [sym_doc_comment] = STATE(565), + [sym_block_comment] = STATE(565), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARendif] = ACTIONS(1489), + [anon_sym_DOLLARelse] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), + }, + [566] = { + [sym_line_comment] = STATE(566), + [sym_doc_comment] = STATE(566), + [sym_block_comment] = STATE(566), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARendif] = ACTIONS(1445), + [anon_sym_DOLLARelse] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), + }, + [567] = { + [sym_line_comment] = STATE(567), + [sym_doc_comment] = STATE(567), + [sym_block_comment] = STATE(567), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARendif] = ACTIONS(1449), + [anon_sym_DOLLARelse] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), + }, + [568] = { + [sym_line_comment] = STATE(568), + [sym_doc_comment] = STATE(568), + [sym_block_comment] = STATE(568), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1589), - [sym_at_ident] = ACTIONS(1591), - [sym_hash_ident] = ACTIONS(1591), - [sym_type_ident] = ACTIONS(1591), - [sym_ct_type_ident] = ACTIONS(1591), - [sym_const_ident] = ACTIONS(1589), - [sym_builtin] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_tlocal] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_fn] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_var] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_defer] = ACTIONS(1589), - [anon_sym_assert] = ACTIONS(1589), - [anon_sym_nextcase] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1589), - [anon_sym_AMP_AMP] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_foreach] = ACTIONS(1589), - [anon_sym_foreach_r] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_int] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_asm] = ACTIONS(1589), - [anon_sym_DOLLARassert] = ACTIONS(1589), - [anon_sym_DOLLARerror] = ACTIONS(1589), - [anon_sym_DOLLARecho] = ACTIONS(1589), - [anon_sym_DOLLARif] = ACTIONS(1589), - [anon_sym_DOLLARswitch] = ACTIONS(1589), - [anon_sym_DOLLARfor] = ACTIONS(1589), - [anon_sym_DOLLARendfor] = ACTIONS(1589), - [anon_sym_DOLLARforeach] = ACTIONS(1589), - [anon_sym_DOLLARalignof] = ACTIONS(1589), - [anon_sym_DOLLARextnameof] = ACTIONS(1589), - [anon_sym_DOLLARnameof] = ACTIONS(1589), - [anon_sym_DOLLARoffsetof] = ACTIONS(1589), - [anon_sym_DOLLARqnameof] = ACTIONS(1589), - [anon_sym_DOLLARvaconst] = ACTIONS(1589), - [anon_sym_DOLLARvaarg] = ACTIONS(1589), - [anon_sym_DOLLARvaref] = ACTIONS(1589), - [anon_sym_DOLLARvaexpr] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_DOLLARvacount] = ACTIONS(1589), - [anon_sym_DOLLAReval] = ACTIONS(1589), - [anon_sym_DOLLARis_const] = ACTIONS(1589), - [anon_sym_DOLLARsizeof] = ACTIONS(1589), - [anon_sym_DOLLARstringify] = ACTIONS(1589), - [anon_sym_DOLLARappend] = ACTIONS(1589), - [anon_sym_DOLLARconcat] = ACTIONS(1589), - [anon_sym_DOLLARdefined] = ACTIONS(1589), - [anon_sym_DOLLARembed] = ACTIONS(1589), - [anon_sym_DOLLARand] = ACTIONS(1589), - [anon_sym_DOLLARor] = ACTIONS(1589), - [anon_sym_DOLLARfeature] = ACTIONS(1589), - [anon_sym_DOLLARassignable] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_typeid] = ACTIONS(1589), - [anon_sym_LBRACE_PIPE] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(1589), - [anon_sym_bool] = ACTIONS(1589), - [anon_sym_char] = ACTIONS(1589), - [anon_sym_ichar] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [anon_sym_ushort] = ACTIONS(1589), - [anon_sym_uint] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_ulong] = ACTIONS(1589), - [anon_sym_int128] = ACTIONS(1589), - [anon_sym_uint128] = ACTIONS(1589), - [anon_sym_float] = ACTIONS(1589), - [anon_sym_double] = ACTIONS(1589), - [anon_sym_float16] = ACTIONS(1589), - [anon_sym_bfloat16] = ACTIONS(1589), - [anon_sym_float128] = ACTIONS(1589), - [anon_sym_iptr] = ACTIONS(1589), - [anon_sym_uptr] = ACTIONS(1589), - [anon_sym_isz] = ACTIONS(1589), - [anon_sym_usz] = ACTIONS(1589), - [anon_sym_anyfault] = ACTIONS(1589), - [anon_sym_any] = ACTIONS(1589), - [anon_sym_DOLLARtypeof] = ACTIONS(1589), - [anon_sym_DOLLARtypefrom] = ACTIONS(1589), - [anon_sym_DOLLARevaltype] = ACTIONS(1589), - [anon_sym_DOLLARvatype] = ACTIONS(1589), - [sym_real_literal] = ACTIONS(1591), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARendif] = ACTIONS(1557), + [anon_sym_DOLLARelse] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, - [611] = { - [sym_line_comment] = STATE(611), - [sym_doc_comment] = STATE(611), - [sym_block_comment] = STATE(611), + [569] = { + [sym_line_comment] = STATE(569), + [sym_doc_comment] = STATE(569), + [sym_block_comment] = STATE(569), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARendif] = ACTIONS(1541), + [anon_sym_DOLLARelse] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), + }, + [570] = { + [sym_line_comment] = STATE(570), + [sym_doc_comment] = STATE(570), + [sym_block_comment] = STATE(570), [sym_ident] = ACTIONS(1363), [sym_integer_literal] = ACTIONS(1365), [anon_sym_SQUOTE] = ACTIONS(1365), @@ -95952,6 +91146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1363), [anon_sym_AMP_AMP] = ACTIONS(1365), [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), [anon_sym_for] = ACTIONS(1363), [anon_sym_foreach] = ACTIONS(1363), [anon_sym_foreach_r] = ACTIONS(1363), @@ -95966,9 +91161,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1363), [anon_sym_DOLLARecho] = ACTIONS(1363), [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARendif] = ACTIONS(1363), [anon_sym_DOLLARswitch] = ACTIONS(1363), [anon_sym_DOLLARfor] = ACTIONS(1363), - [anon_sym_DOLLARendfor] = ACTIONS(1363), [anon_sym_DOLLARforeach] = ACTIONS(1363), [anon_sym_DOLLARalignof] = ACTIONS(1363), [anon_sym_DOLLARextnameof] = ACTIONS(1363), @@ -96029,1045 +91224,2430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1363), [sym_real_literal] = ACTIONS(1365), }, - [612] = { - [sym_line_comment] = STATE(612), - [sym_doc_comment] = STATE(612), - [sym_block_comment] = STATE(612), - [sym_ident] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_bytes_literal] = ACTIONS(1647), + [571] = { + [sym_line_comment] = STATE(571), + [sym_doc_comment] = STATE(571), + [sym_block_comment] = STATE(571), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARendif] = ACTIONS(1457), + [anon_sym_DOLLARelse] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), + }, + [572] = { + [sym_line_comment] = STATE(572), + [sym_doc_comment] = STATE(572), + [sym_block_comment] = STATE(572), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1645), - [sym_at_ident] = ACTIONS(1647), - [sym_hash_ident] = ACTIONS(1647), - [sym_type_ident] = ACTIONS(1647), - [sym_ct_type_ident] = ACTIONS(1647), - [sym_const_ident] = ACTIONS(1645), - [sym_builtin] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_tlocal] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_fn] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_var] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_defer] = ACTIONS(1645), - [anon_sym_assert] = ACTIONS(1645), - [anon_sym_nextcase] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_foreach] = ACTIONS(1645), - [anon_sym_foreach_r] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_int] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_asm] = ACTIONS(1645), - [anon_sym_DOLLARassert] = ACTIONS(1645), - [anon_sym_DOLLARerror] = ACTIONS(1645), - [anon_sym_DOLLARecho] = ACTIONS(1645), - [anon_sym_DOLLARif] = ACTIONS(1645), - [anon_sym_DOLLARswitch] = ACTIONS(1645), - [anon_sym_DOLLARfor] = ACTIONS(1645), - [anon_sym_DOLLARendfor] = ACTIONS(1645), - [anon_sym_DOLLARforeach] = ACTIONS(1645), - [anon_sym_DOLLARalignof] = ACTIONS(1645), - [anon_sym_DOLLARextnameof] = ACTIONS(1645), - [anon_sym_DOLLARnameof] = ACTIONS(1645), - [anon_sym_DOLLARoffsetof] = ACTIONS(1645), - [anon_sym_DOLLARqnameof] = ACTIONS(1645), - [anon_sym_DOLLARvaconst] = ACTIONS(1645), - [anon_sym_DOLLARvaarg] = ACTIONS(1645), - [anon_sym_DOLLARvaref] = ACTIONS(1645), - [anon_sym_DOLLARvaexpr] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [anon_sym_DOLLARvacount] = ACTIONS(1645), - [anon_sym_DOLLAReval] = ACTIONS(1645), - [anon_sym_DOLLARis_const] = ACTIONS(1645), - [anon_sym_DOLLARsizeof] = ACTIONS(1645), - [anon_sym_DOLLARstringify] = ACTIONS(1645), - [anon_sym_DOLLARappend] = ACTIONS(1645), - [anon_sym_DOLLARconcat] = ACTIONS(1645), - [anon_sym_DOLLARdefined] = ACTIONS(1645), - [anon_sym_DOLLARembed] = ACTIONS(1645), - [anon_sym_DOLLARand] = ACTIONS(1645), - [anon_sym_DOLLARor] = ACTIONS(1645), - [anon_sym_DOLLARfeature] = ACTIONS(1645), - [anon_sym_DOLLARassignable] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_typeid] = ACTIONS(1645), - [anon_sym_LBRACE_PIPE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [anon_sym_ichar] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [anon_sym_ushort] = ACTIONS(1645), - [anon_sym_uint] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_ulong] = ACTIONS(1645), - [anon_sym_int128] = ACTIONS(1645), - [anon_sym_uint128] = ACTIONS(1645), - [anon_sym_float] = ACTIONS(1645), - [anon_sym_double] = ACTIONS(1645), - [anon_sym_float16] = ACTIONS(1645), - [anon_sym_bfloat16] = ACTIONS(1645), - [anon_sym_float128] = ACTIONS(1645), - [anon_sym_iptr] = ACTIONS(1645), - [anon_sym_uptr] = ACTIONS(1645), - [anon_sym_isz] = ACTIONS(1645), - [anon_sym_usz] = ACTIONS(1645), - [anon_sym_anyfault] = ACTIONS(1645), - [anon_sym_any] = ACTIONS(1645), - [anon_sym_DOLLARtypeof] = ACTIONS(1645), - [anon_sym_DOLLARtypefrom] = ACTIONS(1645), - [anon_sym_DOLLARevaltype] = ACTIONS(1645), - [anon_sym_DOLLARvatype] = ACTIONS(1645), - [sym_real_literal] = ACTIONS(1647), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARendif] = ACTIONS(1617), + [anon_sym_DOLLARelse] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, - [613] = { - [sym_line_comment] = STATE(613), - [sym_doc_comment] = STATE(613), - [sym_block_comment] = STATE(613), - [sym_ident] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_bytes_literal] = ACTIONS(1571), + [573] = { + [sym_line_comment] = STATE(573), + [sym_doc_comment] = STATE(573), + [sym_block_comment] = STATE(573), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARendif] = ACTIONS(1461), + [anon_sym_DOLLARelse] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), + }, + [574] = { + [sym_line_comment] = STATE(574), + [sym_doc_comment] = STATE(574), + [sym_block_comment] = STATE(574), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1569), - [sym_at_ident] = ACTIONS(1571), - [sym_hash_ident] = ACTIONS(1571), - [sym_type_ident] = ACTIONS(1571), - [sym_ct_type_ident] = ACTIONS(1571), - [sym_const_ident] = ACTIONS(1569), - [sym_builtin] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_tlocal] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_var] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_defer] = ACTIONS(1569), - [anon_sym_assert] = ACTIONS(1569), - [anon_sym_nextcase] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_foreach] = ACTIONS(1569), - [anon_sym_foreach_r] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_int] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_asm] = ACTIONS(1569), - [anon_sym_DOLLARassert] = ACTIONS(1569), - [anon_sym_DOLLARerror] = ACTIONS(1569), - [anon_sym_DOLLARecho] = ACTIONS(1569), - [anon_sym_DOLLARif] = ACTIONS(1569), - [anon_sym_DOLLARswitch] = ACTIONS(1569), - [anon_sym_DOLLARfor] = ACTIONS(1569), - [anon_sym_DOLLARendfor] = ACTIONS(1569), - [anon_sym_DOLLARforeach] = ACTIONS(1569), - [anon_sym_DOLLARalignof] = ACTIONS(1569), - [anon_sym_DOLLARextnameof] = ACTIONS(1569), - [anon_sym_DOLLARnameof] = ACTIONS(1569), - [anon_sym_DOLLARoffsetof] = ACTIONS(1569), - [anon_sym_DOLLARqnameof] = ACTIONS(1569), - [anon_sym_DOLLARvaconst] = ACTIONS(1569), - [anon_sym_DOLLARvaarg] = ACTIONS(1569), - [anon_sym_DOLLARvaref] = ACTIONS(1569), - [anon_sym_DOLLARvaexpr] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [anon_sym_DOLLARvacount] = ACTIONS(1569), - [anon_sym_DOLLAReval] = ACTIONS(1569), - [anon_sym_DOLLARis_const] = ACTIONS(1569), - [anon_sym_DOLLARsizeof] = ACTIONS(1569), - [anon_sym_DOLLARstringify] = ACTIONS(1569), - [anon_sym_DOLLARappend] = ACTIONS(1569), - [anon_sym_DOLLARconcat] = ACTIONS(1569), - [anon_sym_DOLLARdefined] = ACTIONS(1569), - [anon_sym_DOLLARembed] = ACTIONS(1569), - [anon_sym_DOLLARand] = ACTIONS(1569), - [anon_sym_DOLLARor] = ACTIONS(1569), - [anon_sym_DOLLARfeature] = ACTIONS(1569), - [anon_sym_DOLLARassignable] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_typeid] = ACTIONS(1569), - [anon_sym_LBRACE_PIPE] = ACTIONS(1571), - [anon_sym_void] = ACTIONS(1569), - [anon_sym_bool] = ACTIONS(1569), - [anon_sym_char] = ACTIONS(1569), - [anon_sym_ichar] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [anon_sym_ushort] = ACTIONS(1569), - [anon_sym_uint] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_ulong] = ACTIONS(1569), - [anon_sym_int128] = ACTIONS(1569), - [anon_sym_uint128] = ACTIONS(1569), - [anon_sym_float] = ACTIONS(1569), - [anon_sym_double] = ACTIONS(1569), - [anon_sym_float16] = ACTIONS(1569), - [anon_sym_bfloat16] = ACTIONS(1569), - [anon_sym_float128] = ACTIONS(1569), - [anon_sym_iptr] = ACTIONS(1569), - [anon_sym_uptr] = ACTIONS(1569), - [anon_sym_isz] = ACTIONS(1569), - [anon_sym_usz] = ACTIONS(1569), - [anon_sym_anyfault] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_DOLLARtypeof] = ACTIONS(1569), - [anon_sym_DOLLARtypefrom] = ACTIONS(1569), - [anon_sym_DOLLARevaltype] = ACTIONS(1569), - [anon_sym_DOLLARvatype] = ACTIONS(1569), - [sym_real_literal] = ACTIONS(1571), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARendif] = ACTIONS(1621), + [anon_sym_DOLLARelse] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, - [614] = { - [sym_line_comment] = STATE(614), - [sym_doc_comment] = STATE(614), - [sym_block_comment] = STATE(614), - [sym_ident] = ACTIONS(1629), - [sym_integer_literal] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1631), - [sym_bytes_literal] = ACTIONS(1631), + [575] = { + [sym_line_comment] = STATE(575), + [sym_doc_comment] = STATE(575), + [sym_block_comment] = STATE(575), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1629), - [sym_at_ident] = ACTIONS(1631), - [sym_hash_ident] = ACTIONS(1631), - [sym_type_ident] = ACTIONS(1631), - [sym_ct_type_ident] = ACTIONS(1631), - [sym_const_ident] = ACTIONS(1629), - [sym_builtin] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_tlocal] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_fn] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_defer] = ACTIONS(1629), - [anon_sym_assert] = ACTIONS(1629), - [anon_sym_nextcase] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_foreach] = ACTIONS(1629), - [anon_sym_foreach_r] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_int] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_asm] = ACTIONS(1629), - [anon_sym_DOLLARassert] = ACTIONS(1629), - [anon_sym_DOLLARerror] = ACTIONS(1629), - [anon_sym_DOLLARecho] = ACTIONS(1629), - [anon_sym_DOLLARif] = ACTIONS(1629), - [anon_sym_DOLLARswitch] = ACTIONS(1629), - [anon_sym_DOLLARfor] = ACTIONS(1629), - [anon_sym_DOLLARendfor] = ACTIONS(1629), - [anon_sym_DOLLARforeach] = ACTIONS(1629), - [anon_sym_DOLLARalignof] = ACTIONS(1629), - [anon_sym_DOLLARextnameof] = ACTIONS(1629), - [anon_sym_DOLLARnameof] = ACTIONS(1629), - [anon_sym_DOLLARoffsetof] = ACTIONS(1629), - [anon_sym_DOLLARqnameof] = ACTIONS(1629), - [anon_sym_DOLLARvaconst] = ACTIONS(1629), - [anon_sym_DOLLARvaarg] = ACTIONS(1629), - [anon_sym_DOLLARvaref] = ACTIONS(1629), - [anon_sym_DOLLARvaexpr] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [anon_sym_DOLLARvacount] = ACTIONS(1629), - [anon_sym_DOLLAReval] = ACTIONS(1629), - [anon_sym_DOLLARis_const] = ACTIONS(1629), - [anon_sym_DOLLARsizeof] = ACTIONS(1629), - [anon_sym_DOLLARstringify] = ACTIONS(1629), - [anon_sym_DOLLARappend] = ACTIONS(1629), - [anon_sym_DOLLARconcat] = ACTIONS(1629), - [anon_sym_DOLLARdefined] = ACTIONS(1629), - [anon_sym_DOLLARembed] = ACTIONS(1629), - [anon_sym_DOLLARand] = ACTIONS(1629), - [anon_sym_DOLLARor] = ACTIONS(1629), - [anon_sym_DOLLARfeature] = ACTIONS(1629), - [anon_sym_DOLLARassignable] = ACTIONS(1629), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_typeid] = ACTIONS(1629), - [anon_sym_LBRACE_PIPE] = ACTIONS(1631), - [anon_sym_void] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_char] = ACTIONS(1629), - [anon_sym_ichar] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [anon_sym_ushort] = ACTIONS(1629), - [anon_sym_uint] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_ulong] = ACTIONS(1629), - [anon_sym_int128] = ACTIONS(1629), - [anon_sym_uint128] = ACTIONS(1629), - [anon_sym_float] = ACTIONS(1629), - [anon_sym_double] = ACTIONS(1629), - [anon_sym_float16] = ACTIONS(1629), - [anon_sym_bfloat16] = ACTIONS(1629), - [anon_sym_float128] = ACTIONS(1629), - [anon_sym_iptr] = ACTIONS(1629), - [anon_sym_uptr] = ACTIONS(1629), - [anon_sym_isz] = ACTIONS(1629), - [anon_sym_usz] = ACTIONS(1629), - [anon_sym_anyfault] = ACTIONS(1629), - [anon_sym_any] = ACTIONS(1629), - [anon_sym_DOLLARtypeof] = ACTIONS(1629), - [anon_sym_DOLLARtypefrom] = ACTIONS(1629), - [anon_sym_DOLLARevaltype] = ACTIONS(1629), - [anon_sym_DOLLARvatype] = ACTIONS(1629), - [sym_real_literal] = ACTIONS(1631), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARendif] = ACTIONS(1573), + [anon_sym_DOLLARelse] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, - [615] = { - [sym_line_comment] = STATE(615), - [sym_doc_comment] = STATE(615), - [sym_block_comment] = STATE(615), - [sym_ident] = ACTIONS(1633), - [sym_integer_literal] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), - [sym_bytes_literal] = ACTIONS(1635), + [576] = { + [sym_line_comment] = STATE(576), + [sym_doc_comment] = STATE(576), + [sym_block_comment] = STATE(576), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1633), - [sym_at_ident] = ACTIONS(1635), - [sym_hash_ident] = ACTIONS(1635), - [sym_type_ident] = ACTIONS(1635), - [sym_ct_type_ident] = ACTIONS(1635), - [sym_const_ident] = ACTIONS(1633), - [sym_builtin] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_tlocal] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_fn] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_var] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_defer] = ACTIONS(1633), - [anon_sym_assert] = ACTIONS(1633), - [anon_sym_nextcase] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_foreach] = ACTIONS(1633), - [anon_sym_foreach_r] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_int] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1633), - [anon_sym_DOLLARassert] = ACTIONS(1633), - [anon_sym_DOLLARerror] = ACTIONS(1633), - [anon_sym_DOLLARecho] = ACTIONS(1633), - [anon_sym_DOLLARif] = ACTIONS(1633), - [anon_sym_DOLLARswitch] = ACTIONS(1633), - [anon_sym_DOLLARfor] = ACTIONS(1633), - [anon_sym_DOLLARendfor] = ACTIONS(1633), - [anon_sym_DOLLARforeach] = ACTIONS(1633), - [anon_sym_DOLLARalignof] = ACTIONS(1633), - [anon_sym_DOLLARextnameof] = ACTIONS(1633), - [anon_sym_DOLLARnameof] = ACTIONS(1633), - [anon_sym_DOLLARoffsetof] = ACTIONS(1633), - [anon_sym_DOLLARqnameof] = ACTIONS(1633), - [anon_sym_DOLLARvaconst] = ACTIONS(1633), - [anon_sym_DOLLARvaarg] = ACTIONS(1633), - [anon_sym_DOLLARvaref] = ACTIONS(1633), - [anon_sym_DOLLARvaexpr] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [anon_sym_DOLLARvacount] = ACTIONS(1633), - [anon_sym_DOLLAReval] = ACTIONS(1633), - [anon_sym_DOLLARis_const] = ACTIONS(1633), - [anon_sym_DOLLARsizeof] = ACTIONS(1633), - [anon_sym_DOLLARstringify] = ACTIONS(1633), - [anon_sym_DOLLARappend] = ACTIONS(1633), - [anon_sym_DOLLARconcat] = ACTIONS(1633), - [anon_sym_DOLLARdefined] = ACTIONS(1633), - [anon_sym_DOLLARembed] = ACTIONS(1633), - [anon_sym_DOLLARand] = ACTIONS(1633), - [anon_sym_DOLLARor] = ACTIONS(1633), - [anon_sym_DOLLARfeature] = ACTIONS(1633), - [anon_sym_DOLLARassignable] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_typeid] = ACTIONS(1633), - [anon_sym_LBRACE_PIPE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1633), - [anon_sym_bool] = ACTIONS(1633), - [anon_sym_char] = ACTIONS(1633), - [anon_sym_ichar] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [anon_sym_ushort] = ACTIONS(1633), - [anon_sym_uint] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_ulong] = ACTIONS(1633), - [anon_sym_int128] = ACTIONS(1633), - [anon_sym_uint128] = ACTIONS(1633), - [anon_sym_float] = ACTIONS(1633), - [anon_sym_double] = ACTIONS(1633), - [anon_sym_float16] = ACTIONS(1633), - [anon_sym_bfloat16] = ACTIONS(1633), - [anon_sym_float128] = ACTIONS(1633), - [anon_sym_iptr] = ACTIONS(1633), - [anon_sym_uptr] = ACTIONS(1633), - [anon_sym_isz] = ACTIONS(1633), - [anon_sym_usz] = ACTIONS(1633), - [anon_sym_anyfault] = ACTIONS(1633), - [anon_sym_any] = ACTIONS(1633), - [anon_sym_DOLLARtypeof] = ACTIONS(1633), - [anon_sym_DOLLARtypefrom] = ACTIONS(1633), - [anon_sym_DOLLARevaltype] = ACTIONS(1633), - [anon_sym_DOLLARvatype] = ACTIONS(1633), - [sym_real_literal] = ACTIONS(1635), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARendfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), }, - [616] = { - [sym_line_comment] = STATE(616), - [sym_doc_comment] = STATE(616), - [sym_block_comment] = STATE(616), - [sym_ident] = ACTIONS(1387), - [sym_integer_literal] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [anon_sym_BQUOTE] = ACTIONS(1389), - [sym_bytes_literal] = ACTIONS(1389), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1387), - [sym_at_ident] = ACTIONS(1389), - [sym_hash_ident] = ACTIONS(1389), - [sym_type_ident] = ACTIONS(1389), - [sym_ct_type_ident] = ACTIONS(1389), - [sym_const_ident] = ACTIONS(1387), - [sym_builtin] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_tlocal] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_var] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_defer] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_nextcase] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_foreach] = ACTIONS(1387), - [anon_sym_foreach_r] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_int] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym_DOLLARassert] = ACTIONS(1387), - [anon_sym_DOLLARerror] = ACTIONS(1387), - [anon_sym_DOLLARecho] = ACTIONS(1387), - [anon_sym_DOLLARif] = ACTIONS(1387), - [anon_sym_DOLLARswitch] = ACTIONS(1387), - [anon_sym_DOLLARfor] = ACTIONS(1387), - [anon_sym_DOLLARendfor] = ACTIONS(1387), - [anon_sym_DOLLARforeach] = ACTIONS(1387), - [anon_sym_DOLLARalignof] = ACTIONS(1387), - [anon_sym_DOLLARextnameof] = ACTIONS(1387), - [anon_sym_DOLLARnameof] = ACTIONS(1387), - [anon_sym_DOLLARoffsetof] = ACTIONS(1387), - [anon_sym_DOLLARqnameof] = ACTIONS(1387), - [anon_sym_DOLLARvaconst] = ACTIONS(1387), - [anon_sym_DOLLARvaarg] = ACTIONS(1387), - [anon_sym_DOLLARvaref] = ACTIONS(1387), - [anon_sym_DOLLARvaexpr] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_null] = ACTIONS(1387), - [anon_sym_DOLLARvacount] = ACTIONS(1387), - [anon_sym_DOLLAReval] = ACTIONS(1387), - [anon_sym_DOLLARis_const] = ACTIONS(1387), - [anon_sym_DOLLARsizeof] = ACTIONS(1387), - [anon_sym_DOLLARstringify] = ACTIONS(1387), - [anon_sym_DOLLARappend] = ACTIONS(1387), - [anon_sym_DOLLARconcat] = ACTIONS(1387), - [anon_sym_DOLLARdefined] = ACTIONS(1387), - [anon_sym_DOLLARembed] = ACTIONS(1387), - [anon_sym_DOLLARand] = ACTIONS(1387), - [anon_sym_DOLLARor] = ACTIONS(1387), - [anon_sym_DOLLARfeature] = ACTIONS(1387), - [anon_sym_DOLLARassignable] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_typeid] = ACTIONS(1387), - [anon_sym_LBRACE_PIPE] = ACTIONS(1389), - [anon_sym_void] = ACTIONS(1387), - [anon_sym_bool] = ACTIONS(1387), - [anon_sym_char] = ACTIONS(1387), - [anon_sym_ichar] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_ushort] = ACTIONS(1387), - [anon_sym_uint] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_ulong] = ACTIONS(1387), - [anon_sym_int128] = ACTIONS(1387), - [anon_sym_uint128] = ACTIONS(1387), - [anon_sym_float] = ACTIONS(1387), - [anon_sym_double] = ACTIONS(1387), - [anon_sym_float16] = ACTIONS(1387), - [anon_sym_bfloat16] = ACTIONS(1387), - [anon_sym_float128] = ACTIONS(1387), - [anon_sym_iptr] = ACTIONS(1387), - [anon_sym_uptr] = ACTIONS(1387), - [anon_sym_isz] = ACTIONS(1387), - [anon_sym_usz] = ACTIONS(1387), - [anon_sym_anyfault] = ACTIONS(1387), - [anon_sym_any] = ACTIONS(1387), - [anon_sym_DOLLARtypeof] = ACTIONS(1387), - [anon_sym_DOLLARtypefrom] = ACTIONS(1387), - [anon_sym_DOLLARevaltype] = ACTIONS(1387), - [anon_sym_DOLLARvatype] = ACTIONS(1387), - [sym_real_literal] = ACTIONS(1389), + [577] = { + [sym_line_comment] = STATE(577), + [sym_doc_comment] = STATE(577), + [sym_block_comment] = STATE(577), + [sym_ident] = ACTIONS(1665), + [sym_integer_literal] = ACTIONS(1667), + [anon_sym_SQUOTE] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [anon_sym_BQUOTE] = ACTIONS(1667), + [sym_bytes_literal] = ACTIONS(1667), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1665), + [sym_at_ident] = ACTIONS(1667), + [sym_hash_ident] = ACTIONS(1667), + [sym_type_ident] = ACTIONS(1667), + [sym_ct_type_ident] = ACTIONS(1667), + [sym_const_ident] = ACTIONS(1665), + [sym_builtin] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1665), + [anon_sym_tlocal] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_fn] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_const] = ACTIONS(1665), + [anon_sym_var] = ACTIONS(1665), + [anon_sym_return] = ACTIONS(1665), + [anon_sym_continue] = ACTIONS(1665), + [anon_sym_break] = ACTIONS(1665), + [anon_sym_defer] = ACTIONS(1665), + [anon_sym_assert] = ACTIONS(1665), + [anon_sym_nextcase] = ACTIONS(1665), + [anon_sym_switch] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1665), + [anon_sym_for] = ACTIONS(1665), + [anon_sym_foreach] = ACTIONS(1665), + [anon_sym_foreach_r] = ACTIONS(1665), + [anon_sym_while] = ACTIONS(1665), + [anon_sym_do] = ACTIONS(1665), + [anon_sym_int] = ACTIONS(1665), + [anon_sym_PLUS] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_asm] = ACTIONS(1665), + [anon_sym_DOLLARassert] = ACTIONS(1665), + [anon_sym_DOLLARerror] = ACTIONS(1665), + [anon_sym_DOLLARecho] = ACTIONS(1665), + [anon_sym_DOLLARif] = ACTIONS(1665), + [anon_sym_DOLLARswitch] = ACTIONS(1665), + [anon_sym_DOLLARfor] = ACTIONS(1665), + [anon_sym_DOLLARforeach] = ACTIONS(1665), + [anon_sym_DOLLARendforeach] = ACTIONS(1665), + [anon_sym_DOLLARalignof] = ACTIONS(1665), + [anon_sym_DOLLARextnameof] = ACTIONS(1665), + [anon_sym_DOLLARnameof] = ACTIONS(1665), + [anon_sym_DOLLARoffsetof] = ACTIONS(1665), + [anon_sym_DOLLARqnameof] = ACTIONS(1665), + [anon_sym_DOLLARvaconst] = ACTIONS(1665), + [anon_sym_DOLLARvaarg] = ACTIONS(1665), + [anon_sym_DOLLARvaref] = ACTIONS(1665), + [anon_sym_DOLLARvaexpr] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [anon_sym_null] = ACTIONS(1665), + [anon_sym_DOLLARvacount] = ACTIONS(1665), + [anon_sym_DOLLAReval] = ACTIONS(1665), + [anon_sym_DOLLARis_const] = ACTIONS(1665), + [anon_sym_DOLLARsizeof] = ACTIONS(1665), + [anon_sym_DOLLARstringify] = ACTIONS(1665), + [anon_sym_DOLLARappend] = ACTIONS(1665), + [anon_sym_DOLLARconcat] = ACTIONS(1665), + [anon_sym_DOLLARdefined] = ACTIONS(1665), + [anon_sym_DOLLARembed] = ACTIONS(1665), + [anon_sym_DOLLARand] = ACTIONS(1665), + [anon_sym_DOLLARor] = ACTIONS(1665), + [anon_sym_DOLLARfeature] = ACTIONS(1665), + [anon_sym_DOLLARassignable] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1667), + [anon_sym_typeid] = ACTIONS(1665), + [anon_sym_LBRACE_PIPE] = ACTIONS(1667), + [anon_sym_void] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_ichar] = ACTIONS(1665), + [anon_sym_short] = ACTIONS(1665), + [anon_sym_ushort] = ACTIONS(1665), + [anon_sym_uint] = ACTIONS(1665), + [anon_sym_long] = ACTIONS(1665), + [anon_sym_ulong] = ACTIONS(1665), + [anon_sym_int128] = ACTIONS(1665), + [anon_sym_uint128] = ACTIONS(1665), + [anon_sym_float] = ACTIONS(1665), + [anon_sym_double] = ACTIONS(1665), + [anon_sym_float16] = ACTIONS(1665), + [anon_sym_bfloat16] = ACTIONS(1665), + [anon_sym_float128] = ACTIONS(1665), + [anon_sym_iptr] = ACTIONS(1665), + [anon_sym_uptr] = ACTIONS(1665), + [anon_sym_isz] = ACTIONS(1665), + [anon_sym_usz] = ACTIONS(1665), + [anon_sym_anyfault] = ACTIONS(1665), + [anon_sym_any] = ACTIONS(1665), + [anon_sym_DOLLARtypeof] = ACTIONS(1665), + [anon_sym_DOLLARtypefrom] = ACTIONS(1665), + [anon_sym_DOLLARevaltype] = ACTIONS(1665), + [anon_sym_DOLLARvatype] = ACTIONS(1665), + [sym_real_literal] = ACTIONS(1667), }, - [617] = { - [sym_line_comment] = STATE(617), - [sym_doc_comment] = STATE(617), - [sym_block_comment] = STATE(617), - [sym_ident] = ACTIONS(1391), - [sym_integer_literal] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [anon_sym_BQUOTE] = ACTIONS(1393), - [sym_bytes_literal] = ACTIONS(1393), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1391), - [sym_at_ident] = ACTIONS(1393), - [sym_hash_ident] = ACTIONS(1393), - [sym_type_ident] = ACTIONS(1393), - [sym_ct_type_ident] = ACTIONS(1393), - [sym_const_ident] = ACTIONS(1391), - [sym_builtin] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_tlocal] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_var] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_defer] = ACTIONS(1391), - [anon_sym_assert] = ACTIONS(1391), - [anon_sym_nextcase] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_foreach] = ACTIONS(1391), - [anon_sym_foreach_r] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_int] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1391), - [anon_sym_DOLLARassert] = ACTIONS(1391), - [anon_sym_DOLLARerror] = ACTIONS(1391), - [anon_sym_DOLLARecho] = ACTIONS(1391), - [anon_sym_DOLLARif] = ACTIONS(1391), - [anon_sym_DOLLARswitch] = ACTIONS(1391), - [anon_sym_DOLLARfor] = ACTIONS(1391), - [anon_sym_DOLLARendfor] = ACTIONS(1391), - [anon_sym_DOLLARforeach] = ACTIONS(1391), - [anon_sym_DOLLARalignof] = ACTIONS(1391), - [anon_sym_DOLLARextnameof] = ACTIONS(1391), - [anon_sym_DOLLARnameof] = ACTIONS(1391), - [anon_sym_DOLLARoffsetof] = ACTIONS(1391), - [anon_sym_DOLLARqnameof] = ACTIONS(1391), - [anon_sym_DOLLARvaconst] = ACTIONS(1391), - [anon_sym_DOLLARvaarg] = ACTIONS(1391), - [anon_sym_DOLLARvaref] = ACTIONS(1391), - [anon_sym_DOLLARvaexpr] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1391), - [anon_sym_false] = ACTIONS(1391), - [anon_sym_null] = ACTIONS(1391), - [anon_sym_DOLLARvacount] = ACTIONS(1391), - [anon_sym_DOLLAReval] = ACTIONS(1391), - [anon_sym_DOLLARis_const] = ACTIONS(1391), - [anon_sym_DOLLARsizeof] = ACTIONS(1391), - [anon_sym_DOLLARstringify] = ACTIONS(1391), - [anon_sym_DOLLARappend] = ACTIONS(1391), - [anon_sym_DOLLARconcat] = ACTIONS(1391), - [anon_sym_DOLLARdefined] = ACTIONS(1391), - [anon_sym_DOLLARembed] = ACTIONS(1391), - [anon_sym_DOLLARand] = ACTIONS(1391), - [anon_sym_DOLLARor] = ACTIONS(1391), - [anon_sym_DOLLARfeature] = ACTIONS(1391), - [anon_sym_DOLLARassignable] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_typeid] = ACTIONS(1391), - [anon_sym_LBRACE_PIPE] = ACTIONS(1393), - [anon_sym_void] = ACTIONS(1391), - [anon_sym_bool] = ACTIONS(1391), - [anon_sym_char] = ACTIONS(1391), - [anon_sym_ichar] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_ushort] = ACTIONS(1391), - [anon_sym_uint] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_ulong] = ACTIONS(1391), - [anon_sym_int128] = ACTIONS(1391), - [anon_sym_uint128] = ACTIONS(1391), - [anon_sym_float] = ACTIONS(1391), - [anon_sym_double] = ACTIONS(1391), - [anon_sym_float16] = ACTIONS(1391), - [anon_sym_bfloat16] = ACTIONS(1391), - [anon_sym_float128] = ACTIONS(1391), - [anon_sym_iptr] = ACTIONS(1391), - [anon_sym_uptr] = ACTIONS(1391), - [anon_sym_isz] = ACTIONS(1391), - [anon_sym_usz] = ACTIONS(1391), - [anon_sym_anyfault] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_DOLLARtypeof] = ACTIONS(1391), - [anon_sym_DOLLARtypefrom] = ACTIONS(1391), - [anon_sym_DOLLARevaltype] = ACTIONS(1391), - [anon_sym_DOLLARvatype] = ACTIONS(1391), - [sym_real_literal] = ACTIONS(1393), + [578] = { + [sym_line_comment] = STATE(578), + [sym_doc_comment] = STATE(578), + [sym_block_comment] = STATE(578), + [sym_ident] = ACTIONS(1669), + [sym_integer_literal] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_bytes_literal] = ACTIONS(1671), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1669), + [sym_at_ident] = ACTIONS(1671), + [sym_hash_ident] = ACTIONS(1671), + [sym_type_ident] = ACTIONS(1671), + [sym_ct_type_ident] = ACTIONS(1671), + [sym_const_ident] = ACTIONS(1669), + [sym_builtin] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_tlocal] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_fn] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_var] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_defer] = ACTIONS(1669), + [anon_sym_assert] = ACTIONS(1669), + [anon_sym_nextcase] = ACTIONS(1669), + [anon_sym_switch] = ACTIONS(1669), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_foreach] = ACTIONS(1669), + [anon_sym_foreach_r] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_int] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_asm] = ACTIONS(1669), + [anon_sym_DOLLARassert] = ACTIONS(1669), + [anon_sym_DOLLARerror] = ACTIONS(1669), + [anon_sym_DOLLARecho] = ACTIONS(1669), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_DOLLARswitch] = ACTIONS(1669), + [anon_sym_DOLLARfor] = ACTIONS(1669), + [anon_sym_DOLLARendfor] = ACTIONS(1669), + [anon_sym_DOLLARforeach] = ACTIONS(1669), + [anon_sym_DOLLARalignof] = ACTIONS(1669), + [anon_sym_DOLLARextnameof] = ACTIONS(1669), + [anon_sym_DOLLARnameof] = ACTIONS(1669), + [anon_sym_DOLLARoffsetof] = ACTIONS(1669), + [anon_sym_DOLLARqnameof] = ACTIONS(1669), + [anon_sym_DOLLARvaconst] = ACTIONS(1669), + [anon_sym_DOLLARvaarg] = ACTIONS(1669), + [anon_sym_DOLLARvaref] = ACTIONS(1669), + [anon_sym_DOLLARvaexpr] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [anon_sym_DOLLARvacount] = ACTIONS(1669), + [anon_sym_DOLLAReval] = ACTIONS(1669), + [anon_sym_DOLLARis_const] = ACTIONS(1669), + [anon_sym_DOLLARsizeof] = ACTIONS(1669), + [anon_sym_DOLLARstringify] = ACTIONS(1669), + [anon_sym_DOLLARappend] = ACTIONS(1669), + [anon_sym_DOLLARconcat] = ACTIONS(1669), + [anon_sym_DOLLARdefined] = ACTIONS(1669), + [anon_sym_DOLLARembed] = ACTIONS(1669), + [anon_sym_DOLLARand] = ACTIONS(1669), + [anon_sym_DOLLARor] = ACTIONS(1669), + [anon_sym_DOLLARfeature] = ACTIONS(1669), + [anon_sym_DOLLARassignable] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_typeid] = ACTIONS(1669), + [anon_sym_LBRACE_PIPE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1669), + [anon_sym_bool] = ACTIONS(1669), + [anon_sym_char] = ACTIONS(1669), + [anon_sym_ichar] = ACTIONS(1669), + [anon_sym_short] = ACTIONS(1669), + [anon_sym_ushort] = ACTIONS(1669), + [anon_sym_uint] = ACTIONS(1669), + [anon_sym_long] = ACTIONS(1669), + [anon_sym_ulong] = ACTIONS(1669), + [anon_sym_int128] = ACTIONS(1669), + [anon_sym_uint128] = ACTIONS(1669), + [anon_sym_float] = ACTIONS(1669), + [anon_sym_double] = ACTIONS(1669), + [anon_sym_float16] = ACTIONS(1669), + [anon_sym_bfloat16] = ACTIONS(1669), + [anon_sym_float128] = ACTIONS(1669), + [anon_sym_iptr] = ACTIONS(1669), + [anon_sym_uptr] = ACTIONS(1669), + [anon_sym_isz] = ACTIONS(1669), + [anon_sym_usz] = ACTIONS(1669), + [anon_sym_anyfault] = ACTIONS(1669), + [anon_sym_any] = ACTIONS(1669), + [anon_sym_DOLLARtypeof] = ACTIONS(1669), + [anon_sym_DOLLARtypefrom] = ACTIONS(1669), + [anon_sym_DOLLARevaltype] = ACTIONS(1669), + [anon_sym_DOLLARvatype] = ACTIONS(1669), + [sym_real_literal] = ACTIONS(1671), }, - [618] = { - [sym_line_comment] = STATE(618), - [sym_doc_comment] = STATE(618), - [sym_block_comment] = STATE(618), - [sym_ident] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [anon_sym_BQUOTE] = ACTIONS(1397), - [sym_bytes_literal] = ACTIONS(1397), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1395), - [sym_at_ident] = ACTIONS(1397), - [sym_hash_ident] = ACTIONS(1397), - [sym_type_ident] = ACTIONS(1397), - [sym_ct_type_ident] = ACTIONS(1397), - [sym_const_ident] = ACTIONS(1395), - [sym_builtin] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_tlocal] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_var] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_defer] = ACTIONS(1395), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_nextcase] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_foreach] = ACTIONS(1395), - [anon_sym_foreach_r] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_int] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_asm] = ACTIONS(1395), - [anon_sym_DOLLARassert] = ACTIONS(1395), - [anon_sym_DOLLARerror] = ACTIONS(1395), - [anon_sym_DOLLARecho] = ACTIONS(1395), - [anon_sym_DOLLARif] = ACTIONS(1395), - [anon_sym_DOLLARswitch] = ACTIONS(1395), - [anon_sym_DOLLARfor] = ACTIONS(1395), - [anon_sym_DOLLARendfor] = ACTIONS(1395), - [anon_sym_DOLLARforeach] = ACTIONS(1395), - [anon_sym_DOLLARalignof] = ACTIONS(1395), - [anon_sym_DOLLARextnameof] = ACTIONS(1395), - [anon_sym_DOLLARnameof] = ACTIONS(1395), - [anon_sym_DOLLARoffsetof] = ACTIONS(1395), - [anon_sym_DOLLARqnameof] = ACTIONS(1395), - [anon_sym_DOLLARvaconst] = ACTIONS(1395), - [anon_sym_DOLLARvaarg] = ACTIONS(1395), - [anon_sym_DOLLARvaref] = ACTIONS(1395), - [anon_sym_DOLLARvaexpr] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_DOLLARvacount] = ACTIONS(1395), - [anon_sym_DOLLAReval] = ACTIONS(1395), - [anon_sym_DOLLARis_const] = ACTIONS(1395), - [anon_sym_DOLLARsizeof] = ACTIONS(1395), - [anon_sym_DOLLARstringify] = ACTIONS(1395), - [anon_sym_DOLLARappend] = ACTIONS(1395), - [anon_sym_DOLLARconcat] = ACTIONS(1395), - [anon_sym_DOLLARdefined] = ACTIONS(1395), - [anon_sym_DOLLARembed] = ACTIONS(1395), - [anon_sym_DOLLARand] = ACTIONS(1395), - [anon_sym_DOLLARor] = ACTIONS(1395), - [anon_sym_DOLLARfeature] = ACTIONS(1395), - [anon_sym_DOLLARassignable] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_typeid] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_ichar] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [anon_sym_ushort] = ACTIONS(1395), - [anon_sym_uint] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_ulong] = ACTIONS(1395), - [anon_sym_int128] = ACTIONS(1395), - [anon_sym_uint128] = ACTIONS(1395), - [anon_sym_float] = ACTIONS(1395), - [anon_sym_double] = ACTIONS(1395), - [anon_sym_float16] = ACTIONS(1395), - [anon_sym_bfloat16] = ACTIONS(1395), - [anon_sym_float128] = ACTIONS(1395), - [anon_sym_iptr] = ACTIONS(1395), - [anon_sym_uptr] = ACTIONS(1395), - [anon_sym_isz] = ACTIONS(1395), - [anon_sym_usz] = ACTIONS(1395), - [anon_sym_anyfault] = ACTIONS(1395), - [anon_sym_any] = ACTIONS(1395), - [anon_sym_DOLLARtypeof] = ACTIONS(1395), - [anon_sym_DOLLARtypefrom] = ACTIONS(1395), - [anon_sym_DOLLARevaltype] = ACTIONS(1395), - [anon_sym_DOLLARvatype] = ACTIONS(1395), - [sym_real_literal] = ACTIONS(1397), + [579] = { + [sym_line_comment] = STATE(579), + [sym_doc_comment] = STATE(579), + [sym_block_comment] = STATE(579), + [sym_ident] = ACTIONS(1673), + [sym_integer_literal] = ACTIONS(1675), + [anon_sym_SQUOTE] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [anon_sym_BQUOTE] = ACTIONS(1675), + [sym_bytes_literal] = ACTIONS(1675), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1673), + [sym_at_ident] = ACTIONS(1675), + [sym_hash_ident] = ACTIONS(1675), + [sym_type_ident] = ACTIONS(1675), + [sym_ct_type_ident] = ACTIONS(1675), + [sym_const_ident] = ACTIONS(1673), + [sym_builtin] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_tlocal] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_fn] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_defer] = ACTIONS(1673), + [anon_sym_assert] = ACTIONS(1673), + [anon_sym_nextcase] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_foreach] = ACTIONS(1673), + [anon_sym_foreach_r] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_int] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym_DOLLARassert] = ACTIONS(1673), + [anon_sym_DOLLARerror] = ACTIONS(1673), + [anon_sym_DOLLARecho] = ACTIONS(1673), + [anon_sym_DOLLARif] = ACTIONS(1673), + [anon_sym_DOLLARswitch] = ACTIONS(1673), + [anon_sym_DOLLARfor] = ACTIONS(1673), + [anon_sym_DOLLARendfor] = ACTIONS(1673), + [anon_sym_DOLLARforeach] = ACTIONS(1673), + [anon_sym_DOLLARalignof] = ACTIONS(1673), + [anon_sym_DOLLARextnameof] = ACTIONS(1673), + [anon_sym_DOLLARnameof] = ACTIONS(1673), + [anon_sym_DOLLARoffsetof] = ACTIONS(1673), + [anon_sym_DOLLARqnameof] = ACTIONS(1673), + [anon_sym_DOLLARvaconst] = ACTIONS(1673), + [anon_sym_DOLLARvaarg] = ACTIONS(1673), + [anon_sym_DOLLARvaref] = ACTIONS(1673), + [anon_sym_DOLLARvaexpr] = ACTIONS(1673), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_null] = ACTIONS(1673), + [anon_sym_DOLLARvacount] = ACTIONS(1673), + [anon_sym_DOLLAReval] = ACTIONS(1673), + [anon_sym_DOLLARis_const] = ACTIONS(1673), + [anon_sym_DOLLARsizeof] = ACTIONS(1673), + [anon_sym_DOLLARstringify] = ACTIONS(1673), + [anon_sym_DOLLARappend] = ACTIONS(1673), + [anon_sym_DOLLARconcat] = ACTIONS(1673), + [anon_sym_DOLLARdefined] = ACTIONS(1673), + [anon_sym_DOLLARembed] = ACTIONS(1673), + [anon_sym_DOLLARand] = ACTIONS(1673), + [anon_sym_DOLLARor] = ACTIONS(1673), + [anon_sym_DOLLARfeature] = ACTIONS(1673), + [anon_sym_DOLLARassignable] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_typeid] = ACTIONS(1673), + [anon_sym_LBRACE_PIPE] = ACTIONS(1675), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_bool] = ACTIONS(1673), + [anon_sym_char] = ACTIONS(1673), + [anon_sym_ichar] = ACTIONS(1673), + [anon_sym_short] = ACTIONS(1673), + [anon_sym_ushort] = ACTIONS(1673), + [anon_sym_uint] = ACTIONS(1673), + [anon_sym_long] = ACTIONS(1673), + [anon_sym_ulong] = ACTIONS(1673), + [anon_sym_int128] = ACTIONS(1673), + [anon_sym_uint128] = ACTIONS(1673), + [anon_sym_float] = ACTIONS(1673), + [anon_sym_double] = ACTIONS(1673), + [anon_sym_float16] = ACTIONS(1673), + [anon_sym_bfloat16] = ACTIONS(1673), + [anon_sym_float128] = ACTIONS(1673), + [anon_sym_iptr] = ACTIONS(1673), + [anon_sym_uptr] = ACTIONS(1673), + [anon_sym_isz] = ACTIONS(1673), + [anon_sym_usz] = ACTIONS(1673), + [anon_sym_anyfault] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_DOLLARtypeof] = ACTIONS(1673), + [anon_sym_DOLLARtypefrom] = ACTIONS(1673), + [anon_sym_DOLLARevaltype] = ACTIONS(1673), + [anon_sym_DOLLARvatype] = ACTIONS(1673), + [sym_real_literal] = ACTIONS(1675), }, - [619] = { - [sym_line_comment] = STATE(619), - [sym_doc_comment] = STATE(619), - [sym_block_comment] = STATE(619), - [sym_ident] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1409), - [sym_bytes_literal] = ACTIONS(1409), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1407), - [sym_at_ident] = ACTIONS(1409), - [sym_hash_ident] = ACTIONS(1409), - [sym_type_ident] = ACTIONS(1409), - [sym_ct_type_ident] = ACTIONS(1409), - [sym_const_ident] = ACTIONS(1407), - [sym_builtin] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_tlocal] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_var] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_defer] = ACTIONS(1407), - [anon_sym_assert] = ACTIONS(1407), - [anon_sym_nextcase] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_foreach] = ACTIONS(1407), - [anon_sym_foreach_r] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_int] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym_DOLLARassert] = ACTIONS(1407), - [anon_sym_DOLLARerror] = ACTIONS(1407), - [anon_sym_DOLLARecho] = ACTIONS(1407), - [anon_sym_DOLLARif] = ACTIONS(1407), - [anon_sym_DOLLARswitch] = ACTIONS(1407), - [anon_sym_DOLLARfor] = ACTIONS(1407), - [anon_sym_DOLLARendfor] = ACTIONS(1407), - [anon_sym_DOLLARforeach] = ACTIONS(1407), - [anon_sym_DOLLARalignof] = ACTIONS(1407), - [anon_sym_DOLLARextnameof] = ACTIONS(1407), - [anon_sym_DOLLARnameof] = ACTIONS(1407), - [anon_sym_DOLLARoffsetof] = ACTIONS(1407), - [anon_sym_DOLLARqnameof] = ACTIONS(1407), - [anon_sym_DOLLARvaconst] = ACTIONS(1407), - [anon_sym_DOLLARvaarg] = ACTIONS(1407), - [anon_sym_DOLLARvaref] = ACTIONS(1407), - [anon_sym_DOLLARvaexpr] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [anon_sym_null] = ACTIONS(1407), - [anon_sym_DOLLARvacount] = ACTIONS(1407), - [anon_sym_DOLLAReval] = ACTIONS(1407), - [anon_sym_DOLLARis_const] = ACTIONS(1407), - [anon_sym_DOLLARsizeof] = ACTIONS(1407), - [anon_sym_DOLLARstringify] = ACTIONS(1407), - [anon_sym_DOLLARappend] = ACTIONS(1407), - [anon_sym_DOLLARconcat] = ACTIONS(1407), - [anon_sym_DOLLARdefined] = ACTIONS(1407), - [anon_sym_DOLLARembed] = ACTIONS(1407), - [anon_sym_DOLLARand] = ACTIONS(1407), - [anon_sym_DOLLARor] = ACTIONS(1407), - [anon_sym_DOLLARfeature] = ACTIONS(1407), - [anon_sym_DOLLARassignable] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_typeid] = ACTIONS(1407), - [anon_sym_LBRACE_PIPE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1407), - [anon_sym_bool] = ACTIONS(1407), - [anon_sym_char] = ACTIONS(1407), - [anon_sym_ichar] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_ushort] = ACTIONS(1407), - [anon_sym_uint] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_ulong] = ACTIONS(1407), - [anon_sym_int128] = ACTIONS(1407), - [anon_sym_uint128] = ACTIONS(1407), - [anon_sym_float] = ACTIONS(1407), - [anon_sym_double] = ACTIONS(1407), - [anon_sym_float16] = ACTIONS(1407), - [anon_sym_bfloat16] = ACTIONS(1407), - [anon_sym_float128] = ACTIONS(1407), - [anon_sym_iptr] = ACTIONS(1407), - [anon_sym_uptr] = ACTIONS(1407), - [anon_sym_isz] = ACTIONS(1407), - [anon_sym_usz] = ACTIONS(1407), - [anon_sym_anyfault] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_DOLLARtypeof] = ACTIONS(1407), - [anon_sym_DOLLARtypefrom] = ACTIONS(1407), - [anon_sym_DOLLARevaltype] = ACTIONS(1407), - [anon_sym_DOLLARvatype] = ACTIONS(1407), - [sym_real_literal] = ACTIONS(1409), + [580] = { + [sym_line_comment] = STATE(580), + [sym_doc_comment] = STATE(580), + [sym_block_comment] = STATE(580), + [sym_ident] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [sym_bytes_literal] = ACTIONS(1679), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1677), + [sym_at_ident] = ACTIONS(1679), + [sym_hash_ident] = ACTIONS(1679), + [sym_type_ident] = ACTIONS(1679), + [sym_ct_type_ident] = ACTIONS(1679), + [sym_const_ident] = ACTIONS(1677), + [sym_builtin] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_tlocal] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_fn] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_var] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_defer] = ACTIONS(1677), + [anon_sym_assert] = ACTIONS(1677), + [anon_sym_nextcase] = ACTIONS(1677), + [anon_sym_switch] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_foreach] = ACTIONS(1677), + [anon_sym_foreach_r] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_int] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_asm] = ACTIONS(1677), + [anon_sym_DOLLARassert] = ACTIONS(1677), + [anon_sym_DOLLARerror] = ACTIONS(1677), + [anon_sym_DOLLARecho] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1677), + [anon_sym_DOLLARswitch] = ACTIONS(1677), + [anon_sym_DOLLARfor] = ACTIONS(1677), + [anon_sym_DOLLARendfor] = ACTIONS(1677), + [anon_sym_DOLLARforeach] = ACTIONS(1677), + [anon_sym_DOLLARalignof] = ACTIONS(1677), + [anon_sym_DOLLARextnameof] = ACTIONS(1677), + [anon_sym_DOLLARnameof] = ACTIONS(1677), + [anon_sym_DOLLARoffsetof] = ACTIONS(1677), + [anon_sym_DOLLARqnameof] = ACTIONS(1677), + [anon_sym_DOLLARvaconst] = ACTIONS(1677), + [anon_sym_DOLLARvaarg] = ACTIONS(1677), + [anon_sym_DOLLARvaref] = ACTIONS(1677), + [anon_sym_DOLLARvaexpr] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [anon_sym_DOLLARvacount] = ACTIONS(1677), + [anon_sym_DOLLAReval] = ACTIONS(1677), + [anon_sym_DOLLARis_const] = ACTIONS(1677), + [anon_sym_DOLLARsizeof] = ACTIONS(1677), + [anon_sym_DOLLARstringify] = ACTIONS(1677), + [anon_sym_DOLLARappend] = ACTIONS(1677), + [anon_sym_DOLLARconcat] = ACTIONS(1677), + [anon_sym_DOLLARdefined] = ACTIONS(1677), + [anon_sym_DOLLARembed] = ACTIONS(1677), + [anon_sym_DOLLARand] = ACTIONS(1677), + [anon_sym_DOLLARor] = ACTIONS(1677), + [anon_sym_DOLLARfeature] = ACTIONS(1677), + [anon_sym_DOLLARassignable] = ACTIONS(1677), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_typeid] = ACTIONS(1677), + [anon_sym_LBRACE_PIPE] = ACTIONS(1679), + [anon_sym_void] = ACTIONS(1677), + [anon_sym_bool] = ACTIONS(1677), + [anon_sym_char] = ACTIONS(1677), + [anon_sym_ichar] = ACTIONS(1677), + [anon_sym_short] = ACTIONS(1677), + [anon_sym_ushort] = ACTIONS(1677), + [anon_sym_uint] = ACTIONS(1677), + [anon_sym_long] = ACTIONS(1677), + [anon_sym_ulong] = ACTIONS(1677), + [anon_sym_int128] = ACTIONS(1677), + [anon_sym_uint128] = ACTIONS(1677), + [anon_sym_float] = ACTIONS(1677), + [anon_sym_double] = ACTIONS(1677), + [anon_sym_float16] = ACTIONS(1677), + [anon_sym_bfloat16] = ACTIONS(1677), + [anon_sym_float128] = ACTIONS(1677), + [anon_sym_iptr] = ACTIONS(1677), + [anon_sym_uptr] = ACTIONS(1677), + [anon_sym_isz] = ACTIONS(1677), + [anon_sym_usz] = ACTIONS(1677), + [anon_sym_anyfault] = ACTIONS(1677), + [anon_sym_any] = ACTIONS(1677), + [anon_sym_DOLLARtypeof] = ACTIONS(1677), + [anon_sym_DOLLARtypefrom] = ACTIONS(1677), + [anon_sym_DOLLARevaltype] = ACTIONS(1677), + [anon_sym_DOLLARvatype] = ACTIONS(1677), + [sym_real_literal] = ACTIONS(1679), }, - [620] = { - [sym_line_comment] = STATE(620), - [sym_doc_comment] = STATE(620), - [sym_block_comment] = STATE(620), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARendfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARappend] = ACTIONS(1475), - [anon_sym_DOLLARconcat] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), + [581] = { + [sym_line_comment] = STATE(581), + [sym_doc_comment] = STATE(581), + [sym_block_comment] = STATE(581), + [sym_ident] = ACTIONS(1681), + [sym_integer_literal] = ACTIONS(1683), + [anon_sym_SQUOTE] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_bytes_literal] = ACTIONS(1683), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1681), + [sym_at_ident] = ACTIONS(1683), + [sym_hash_ident] = ACTIONS(1683), + [sym_type_ident] = ACTIONS(1683), + [sym_ct_type_ident] = ACTIONS(1683), + [sym_const_ident] = ACTIONS(1681), + [sym_builtin] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_static] = ACTIONS(1681), + [anon_sym_tlocal] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_fn] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_defer] = ACTIONS(1681), + [anon_sym_assert] = ACTIONS(1681), + [anon_sym_nextcase] = ACTIONS(1681), + [anon_sym_switch] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_foreach] = ACTIONS(1681), + [anon_sym_foreach_r] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_int] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_asm] = ACTIONS(1681), + [anon_sym_DOLLARassert] = ACTIONS(1681), + [anon_sym_DOLLARerror] = ACTIONS(1681), + [anon_sym_DOLLARecho] = ACTIONS(1681), + [anon_sym_DOLLARif] = ACTIONS(1681), + [anon_sym_DOLLARswitch] = ACTIONS(1681), + [anon_sym_DOLLARfor] = ACTIONS(1681), + [anon_sym_DOLLARendfor] = ACTIONS(1681), + [anon_sym_DOLLARforeach] = ACTIONS(1681), + [anon_sym_DOLLARalignof] = ACTIONS(1681), + [anon_sym_DOLLARextnameof] = ACTIONS(1681), + [anon_sym_DOLLARnameof] = ACTIONS(1681), + [anon_sym_DOLLARoffsetof] = ACTIONS(1681), + [anon_sym_DOLLARqnameof] = ACTIONS(1681), + [anon_sym_DOLLARvaconst] = ACTIONS(1681), + [anon_sym_DOLLARvaarg] = ACTIONS(1681), + [anon_sym_DOLLARvaref] = ACTIONS(1681), + [anon_sym_DOLLARvaexpr] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1681), + [anon_sym_false] = ACTIONS(1681), + [anon_sym_null] = ACTIONS(1681), + [anon_sym_DOLLARvacount] = ACTIONS(1681), + [anon_sym_DOLLAReval] = ACTIONS(1681), + [anon_sym_DOLLARis_const] = ACTIONS(1681), + [anon_sym_DOLLARsizeof] = ACTIONS(1681), + [anon_sym_DOLLARstringify] = ACTIONS(1681), + [anon_sym_DOLLARappend] = ACTIONS(1681), + [anon_sym_DOLLARconcat] = ACTIONS(1681), + [anon_sym_DOLLARdefined] = ACTIONS(1681), + [anon_sym_DOLLARembed] = ACTIONS(1681), + [anon_sym_DOLLARand] = ACTIONS(1681), + [anon_sym_DOLLARor] = ACTIONS(1681), + [anon_sym_DOLLARfeature] = ACTIONS(1681), + [anon_sym_DOLLARassignable] = ACTIONS(1681), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_typeid] = ACTIONS(1681), + [anon_sym_LBRACE_PIPE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1681), + [anon_sym_bool] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_ichar] = ACTIONS(1681), + [anon_sym_short] = ACTIONS(1681), + [anon_sym_ushort] = ACTIONS(1681), + [anon_sym_uint] = ACTIONS(1681), + [anon_sym_long] = ACTIONS(1681), + [anon_sym_ulong] = ACTIONS(1681), + [anon_sym_int128] = ACTIONS(1681), + [anon_sym_uint128] = ACTIONS(1681), + [anon_sym_float] = ACTIONS(1681), + [anon_sym_double] = ACTIONS(1681), + [anon_sym_float16] = ACTIONS(1681), + [anon_sym_bfloat16] = ACTIONS(1681), + [anon_sym_float128] = ACTIONS(1681), + [anon_sym_iptr] = ACTIONS(1681), + [anon_sym_uptr] = ACTIONS(1681), + [anon_sym_isz] = ACTIONS(1681), + [anon_sym_usz] = ACTIONS(1681), + [anon_sym_anyfault] = ACTIONS(1681), + [anon_sym_any] = ACTIONS(1681), + [anon_sym_DOLLARtypeof] = ACTIONS(1681), + [anon_sym_DOLLARtypefrom] = ACTIONS(1681), + [anon_sym_DOLLARevaltype] = ACTIONS(1681), + [anon_sym_DOLLARvatype] = ACTIONS(1681), + [sym_real_literal] = ACTIONS(1683), }, - [621] = { - [sym_line_comment] = STATE(621), - [sym_doc_comment] = STATE(621), - [sym_block_comment] = STATE(621), + [582] = { + [sym_line_comment] = STATE(582), + [sym_doc_comment] = STATE(582), + [sym_block_comment] = STATE(582), + [sym_ident] = ACTIONS(1685), + [sym_integer_literal] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_bytes_literal] = ACTIONS(1687), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1685), + [sym_at_ident] = ACTIONS(1687), + [sym_hash_ident] = ACTIONS(1687), + [sym_type_ident] = ACTIONS(1687), + [sym_ct_type_ident] = ACTIONS(1687), + [sym_const_ident] = ACTIONS(1685), + [sym_builtin] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1685), + [anon_sym_tlocal] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_fn] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_var] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_defer] = ACTIONS(1685), + [anon_sym_assert] = ACTIONS(1685), + [anon_sym_nextcase] = ACTIONS(1685), + [anon_sym_switch] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_foreach] = ACTIONS(1685), + [anon_sym_foreach_r] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_int] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_asm] = ACTIONS(1685), + [anon_sym_DOLLARassert] = ACTIONS(1685), + [anon_sym_DOLLARerror] = ACTIONS(1685), + [anon_sym_DOLLARecho] = ACTIONS(1685), + [anon_sym_DOLLARif] = ACTIONS(1685), + [anon_sym_DOLLARswitch] = ACTIONS(1685), + [anon_sym_DOLLARfor] = ACTIONS(1685), + [anon_sym_DOLLARendfor] = ACTIONS(1685), + [anon_sym_DOLLARforeach] = ACTIONS(1685), + [anon_sym_DOLLARalignof] = ACTIONS(1685), + [anon_sym_DOLLARextnameof] = ACTIONS(1685), + [anon_sym_DOLLARnameof] = ACTIONS(1685), + [anon_sym_DOLLARoffsetof] = ACTIONS(1685), + [anon_sym_DOLLARqnameof] = ACTIONS(1685), + [anon_sym_DOLLARvaconst] = ACTIONS(1685), + [anon_sym_DOLLARvaarg] = ACTIONS(1685), + [anon_sym_DOLLARvaref] = ACTIONS(1685), + [anon_sym_DOLLARvaexpr] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_null] = ACTIONS(1685), + [anon_sym_DOLLARvacount] = ACTIONS(1685), + [anon_sym_DOLLAReval] = ACTIONS(1685), + [anon_sym_DOLLARis_const] = ACTIONS(1685), + [anon_sym_DOLLARsizeof] = ACTIONS(1685), + [anon_sym_DOLLARstringify] = ACTIONS(1685), + [anon_sym_DOLLARappend] = ACTIONS(1685), + [anon_sym_DOLLARconcat] = ACTIONS(1685), + [anon_sym_DOLLARdefined] = ACTIONS(1685), + [anon_sym_DOLLARembed] = ACTIONS(1685), + [anon_sym_DOLLARand] = ACTIONS(1685), + [anon_sym_DOLLARor] = ACTIONS(1685), + [anon_sym_DOLLARfeature] = ACTIONS(1685), + [anon_sym_DOLLARassignable] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_typeid] = ACTIONS(1685), + [anon_sym_LBRACE_PIPE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1685), + [anon_sym_bool] = ACTIONS(1685), + [anon_sym_char] = ACTIONS(1685), + [anon_sym_ichar] = ACTIONS(1685), + [anon_sym_short] = ACTIONS(1685), + [anon_sym_ushort] = ACTIONS(1685), + [anon_sym_uint] = ACTIONS(1685), + [anon_sym_long] = ACTIONS(1685), + [anon_sym_ulong] = ACTIONS(1685), + [anon_sym_int128] = ACTIONS(1685), + [anon_sym_uint128] = ACTIONS(1685), + [anon_sym_float] = ACTIONS(1685), + [anon_sym_double] = ACTIONS(1685), + [anon_sym_float16] = ACTIONS(1685), + [anon_sym_bfloat16] = ACTIONS(1685), + [anon_sym_float128] = ACTIONS(1685), + [anon_sym_iptr] = ACTIONS(1685), + [anon_sym_uptr] = ACTIONS(1685), + [anon_sym_isz] = ACTIONS(1685), + [anon_sym_usz] = ACTIONS(1685), + [anon_sym_anyfault] = ACTIONS(1685), + [anon_sym_any] = ACTIONS(1685), + [anon_sym_DOLLARtypeof] = ACTIONS(1685), + [anon_sym_DOLLARtypefrom] = ACTIONS(1685), + [anon_sym_DOLLARevaltype] = ACTIONS(1685), + [anon_sym_DOLLARvatype] = ACTIONS(1685), + [sym_real_literal] = ACTIONS(1687), + }, + [583] = { + [sym_line_comment] = STATE(583), + [sym_doc_comment] = STATE(583), + [sym_block_comment] = STATE(583), + [sym_ident] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_bytes_literal] = ACTIONS(1691), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1689), + [sym_at_ident] = ACTIONS(1691), + [sym_hash_ident] = ACTIONS(1691), + [sym_type_ident] = ACTIONS(1691), + [sym_ct_type_ident] = ACTIONS(1691), + [sym_const_ident] = ACTIONS(1689), + [sym_builtin] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_tlocal] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_fn] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_defer] = ACTIONS(1689), + [anon_sym_assert] = ACTIONS(1689), + [anon_sym_nextcase] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_foreach] = ACTIONS(1689), + [anon_sym_foreach_r] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_int] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym_DOLLARassert] = ACTIONS(1689), + [anon_sym_DOLLARerror] = ACTIONS(1689), + [anon_sym_DOLLARecho] = ACTIONS(1689), + [anon_sym_DOLLARif] = ACTIONS(1689), + [anon_sym_DOLLARswitch] = ACTIONS(1689), + [anon_sym_DOLLARfor] = ACTIONS(1689), + [anon_sym_DOLLARendfor] = ACTIONS(1689), + [anon_sym_DOLLARforeach] = ACTIONS(1689), + [anon_sym_DOLLARalignof] = ACTIONS(1689), + [anon_sym_DOLLARextnameof] = ACTIONS(1689), + [anon_sym_DOLLARnameof] = ACTIONS(1689), + [anon_sym_DOLLARoffsetof] = ACTIONS(1689), + [anon_sym_DOLLARqnameof] = ACTIONS(1689), + [anon_sym_DOLLARvaconst] = ACTIONS(1689), + [anon_sym_DOLLARvaarg] = ACTIONS(1689), + [anon_sym_DOLLARvaref] = ACTIONS(1689), + [anon_sym_DOLLARvaexpr] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [anon_sym_null] = ACTIONS(1689), + [anon_sym_DOLLARvacount] = ACTIONS(1689), + [anon_sym_DOLLAReval] = ACTIONS(1689), + [anon_sym_DOLLARis_const] = ACTIONS(1689), + [anon_sym_DOLLARsizeof] = ACTIONS(1689), + [anon_sym_DOLLARstringify] = ACTIONS(1689), + [anon_sym_DOLLARappend] = ACTIONS(1689), + [anon_sym_DOLLARconcat] = ACTIONS(1689), + [anon_sym_DOLLARdefined] = ACTIONS(1689), + [anon_sym_DOLLARembed] = ACTIONS(1689), + [anon_sym_DOLLARand] = ACTIONS(1689), + [anon_sym_DOLLARor] = ACTIONS(1689), + [anon_sym_DOLLARfeature] = ACTIONS(1689), + [anon_sym_DOLLARassignable] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_typeid] = ACTIONS(1689), + [anon_sym_LBRACE_PIPE] = ACTIONS(1691), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_bool] = ACTIONS(1689), + [anon_sym_char] = ACTIONS(1689), + [anon_sym_ichar] = ACTIONS(1689), + [anon_sym_short] = ACTIONS(1689), + [anon_sym_ushort] = ACTIONS(1689), + [anon_sym_uint] = ACTIONS(1689), + [anon_sym_long] = ACTIONS(1689), + [anon_sym_ulong] = ACTIONS(1689), + [anon_sym_int128] = ACTIONS(1689), + [anon_sym_uint128] = ACTIONS(1689), + [anon_sym_float] = ACTIONS(1689), + [anon_sym_double] = ACTIONS(1689), + [anon_sym_float16] = ACTIONS(1689), + [anon_sym_bfloat16] = ACTIONS(1689), + [anon_sym_float128] = ACTIONS(1689), + [anon_sym_iptr] = ACTIONS(1689), + [anon_sym_uptr] = ACTIONS(1689), + [anon_sym_isz] = ACTIONS(1689), + [anon_sym_usz] = ACTIONS(1689), + [anon_sym_anyfault] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_DOLLARtypeof] = ACTIONS(1689), + [anon_sym_DOLLARtypefrom] = ACTIONS(1689), + [anon_sym_DOLLARevaltype] = ACTIONS(1689), + [anon_sym_DOLLARvatype] = ACTIONS(1689), + [sym_real_literal] = ACTIONS(1691), + }, + [584] = { + [sym_line_comment] = STATE(584), + [sym_doc_comment] = STATE(584), + [sym_block_comment] = STATE(584), + [sym_ident] = ACTIONS(1693), + [sym_integer_literal] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [anon_sym_BQUOTE] = ACTIONS(1695), + [sym_bytes_literal] = ACTIONS(1695), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1693), + [sym_at_ident] = ACTIONS(1695), + [sym_hash_ident] = ACTIONS(1695), + [sym_type_ident] = ACTIONS(1695), + [sym_ct_type_ident] = ACTIONS(1695), + [sym_const_ident] = ACTIONS(1693), + [sym_builtin] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1693), + [anon_sym_tlocal] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_var] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_defer] = ACTIONS(1693), + [anon_sym_assert] = ACTIONS(1693), + [anon_sym_nextcase] = ACTIONS(1693), + [anon_sym_switch] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_foreach] = ACTIONS(1693), + [anon_sym_foreach_r] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_int] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_asm] = ACTIONS(1693), + [anon_sym_DOLLARassert] = ACTIONS(1693), + [anon_sym_DOLLARerror] = ACTIONS(1693), + [anon_sym_DOLLARecho] = ACTIONS(1693), + [anon_sym_DOLLARif] = ACTIONS(1693), + [anon_sym_DOLLARswitch] = ACTIONS(1693), + [anon_sym_DOLLARfor] = ACTIONS(1693), + [anon_sym_DOLLARendfor] = ACTIONS(1693), + [anon_sym_DOLLARforeach] = ACTIONS(1693), + [anon_sym_DOLLARalignof] = ACTIONS(1693), + [anon_sym_DOLLARextnameof] = ACTIONS(1693), + [anon_sym_DOLLARnameof] = ACTIONS(1693), + [anon_sym_DOLLARoffsetof] = ACTIONS(1693), + [anon_sym_DOLLARqnameof] = ACTIONS(1693), + [anon_sym_DOLLARvaconst] = ACTIONS(1693), + [anon_sym_DOLLARvaarg] = ACTIONS(1693), + [anon_sym_DOLLARvaref] = ACTIONS(1693), + [anon_sym_DOLLARvaexpr] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [anon_sym_null] = ACTIONS(1693), + [anon_sym_DOLLARvacount] = ACTIONS(1693), + [anon_sym_DOLLAReval] = ACTIONS(1693), + [anon_sym_DOLLARis_const] = ACTIONS(1693), + [anon_sym_DOLLARsizeof] = ACTIONS(1693), + [anon_sym_DOLLARstringify] = ACTIONS(1693), + [anon_sym_DOLLARappend] = ACTIONS(1693), + [anon_sym_DOLLARconcat] = ACTIONS(1693), + [anon_sym_DOLLARdefined] = ACTIONS(1693), + [anon_sym_DOLLARembed] = ACTIONS(1693), + [anon_sym_DOLLARand] = ACTIONS(1693), + [anon_sym_DOLLARor] = ACTIONS(1693), + [anon_sym_DOLLARfeature] = ACTIONS(1693), + [anon_sym_DOLLARassignable] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_typeid] = ACTIONS(1693), + [anon_sym_LBRACE_PIPE] = ACTIONS(1695), + [anon_sym_void] = ACTIONS(1693), + [anon_sym_bool] = ACTIONS(1693), + [anon_sym_char] = ACTIONS(1693), + [anon_sym_ichar] = ACTIONS(1693), + [anon_sym_short] = ACTIONS(1693), + [anon_sym_ushort] = ACTIONS(1693), + [anon_sym_uint] = ACTIONS(1693), + [anon_sym_long] = ACTIONS(1693), + [anon_sym_ulong] = ACTIONS(1693), + [anon_sym_int128] = ACTIONS(1693), + [anon_sym_uint128] = ACTIONS(1693), + [anon_sym_float] = ACTIONS(1693), + [anon_sym_double] = ACTIONS(1693), + [anon_sym_float16] = ACTIONS(1693), + [anon_sym_bfloat16] = ACTIONS(1693), + [anon_sym_float128] = ACTIONS(1693), + [anon_sym_iptr] = ACTIONS(1693), + [anon_sym_uptr] = ACTIONS(1693), + [anon_sym_isz] = ACTIONS(1693), + [anon_sym_usz] = ACTIONS(1693), + [anon_sym_anyfault] = ACTIONS(1693), + [anon_sym_any] = ACTIONS(1693), + [anon_sym_DOLLARtypeof] = ACTIONS(1693), + [anon_sym_DOLLARtypefrom] = ACTIONS(1693), + [anon_sym_DOLLARevaltype] = ACTIONS(1693), + [anon_sym_DOLLARvatype] = ACTIONS(1693), + [sym_real_literal] = ACTIONS(1695), + }, + [585] = { + [sym_line_comment] = STATE(585), + [sym_doc_comment] = STATE(585), + [sym_block_comment] = STATE(585), + [sym_ident] = ACTIONS(1697), + [sym_integer_literal] = ACTIONS(1699), + [anon_sym_SQUOTE] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [anon_sym_BQUOTE] = ACTIONS(1699), + [sym_bytes_literal] = ACTIONS(1699), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1697), + [sym_at_ident] = ACTIONS(1699), + [sym_hash_ident] = ACTIONS(1699), + [sym_type_ident] = ACTIONS(1699), + [sym_ct_type_ident] = ACTIONS(1699), + [sym_const_ident] = ACTIONS(1697), + [sym_builtin] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1697), + [anon_sym_tlocal] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_fn] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_var] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_defer] = ACTIONS(1697), + [anon_sym_assert] = ACTIONS(1697), + [anon_sym_nextcase] = ACTIONS(1697), + [anon_sym_switch] = ACTIONS(1697), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_foreach] = ACTIONS(1697), + [anon_sym_foreach_r] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_do] = ACTIONS(1697), + [anon_sym_int] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_asm] = ACTIONS(1697), + [anon_sym_DOLLARassert] = ACTIONS(1697), + [anon_sym_DOLLARerror] = ACTIONS(1697), + [anon_sym_DOLLARecho] = ACTIONS(1697), + [anon_sym_DOLLARif] = ACTIONS(1697), + [anon_sym_DOLLARswitch] = ACTIONS(1697), + [anon_sym_DOLLARfor] = ACTIONS(1697), + [anon_sym_DOLLARendfor] = ACTIONS(1697), + [anon_sym_DOLLARforeach] = ACTIONS(1697), + [anon_sym_DOLLARalignof] = ACTIONS(1697), + [anon_sym_DOLLARextnameof] = ACTIONS(1697), + [anon_sym_DOLLARnameof] = ACTIONS(1697), + [anon_sym_DOLLARoffsetof] = ACTIONS(1697), + [anon_sym_DOLLARqnameof] = ACTIONS(1697), + [anon_sym_DOLLARvaconst] = ACTIONS(1697), + [anon_sym_DOLLARvaarg] = ACTIONS(1697), + [anon_sym_DOLLARvaref] = ACTIONS(1697), + [anon_sym_DOLLARvaexpr] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_null] = ACTIONS(1697), + [anon_sym_DOLLARvacount] = ACTIONS(1697), + [anon_sym_DOLLAReval] = ACTIONS(1697), + [anon_sym_DOLLARis_const] = ACTIONS(1697), + [anon_sym_DOLLARsizeof] = ACTIONS(1697), + [anon_sym_DOLLARstringify] = ACTIONS(1697), + [anon_sym_DOLLARappend] = ACTIONS(1697), + [anon_sym_DOLLARconcat] = ACTIONS(1697), + [anon_sym_DOLLARdefined] = ACTIONS(1697), + [anon_sym_DOLLARembed] = ACTIONS(1697), + [anon_sym_DOLLARand] = ACTIONS(1697), + [anon_sym_DOLLARor] = ACTIONS(1697), + [anon_sym_DOLLARfeature] = ACTIONS(1697), + [anon_sym_DOLLARassignable] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_typeid] = ACTIONS(1697), + [anon_sym_LBRACE_PIPE] = ACTIONS(1699), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_ichar] = ACTIONS(1697), + [anon_sym_short] = ACTIONS(1697), + [anon_sym_ushort] = ACTIONS(1697), + [anon_sym_uint] = ACTIONS(1697), + [anon_sym_long] = ACTIONS(1697), + [anon_sym_ulong] = ACTIONS(1697), + [anon_sym_int128] = ACTIONS(1697), + [anon_sym_uint128] = ACTIONS(1697), + [anon_sym_float] = ACTIONS(1697), + [anon_sym_double] = ACTIONS(1697), + [anon_sym_float16] = ACTIONS(1697), + [anon_sym_bfloat16] = ACTIONS(1697), + [anon_sym_float128] = ACTIONS(1697), + [anon_sym_iptr] = ACTIONS(1697), + [anon_sym_uptr] = ACTIONS(1697), + [anon_sym_isz] = ACTIONS(1697), + [anon_sym_usz] = ACTIONS(1697), + [anon_sym_anyfault] = ACTIONS(1697), + [anon_sym_any] = ACTIONS(1697), + [anon_sym_DOLLARtypeof] = ACTIONS(1697), + [anon_sym_DOLLARtypefrom] = ACTIONS(1697), + [anon_sym_DOLLARevaltype] = ACTIONS(1697), + [anon_sym_DOLLARvatype] = ACTIONS(1697), + [sym_real_literal] = ACTIONS(1699), + }, + [586] = { + [sym_line_comment] = STATE(586), + [sym_doc_comment] = STATE(586), + [sym_block_comment] = STATE(586), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARendfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), + }, + [587] = { + [sym_line_comment] = STATE(587), + [sym_doc_comment] = STATE(587), + [sym_block_comment] = STATE(587), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARendfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), + }, + [588] = { + [sym_line_comment] = STATE(588), + [sym_doc_comment] = STATE(588), + [sym_block_comment] = STATE(588), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARendfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), + }, + [589] = { + [sym_line_comment] = STATE(589), + [sym_doc_comment] = STATE(589), + [sym_block_comment] = STATE(589), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARendfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), + }, + [590] = { + [sym_line_comment] = STATE(590), + [sym_doc_comment] = STATE(590), + [sym_block_comment] = STATE(590), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARendfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), + }, + [591] = { + [sym_line_comment] = STATE(591), + [sym_doc_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARendfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), + }, + [592] = { + [sym_line_comment] = STATE(592), + [sym_doc_comment] = STATE(592), + [sym_block_comment] = STATE(592), [sym_ident] = ACTIONS(1509), [sym_integer_literal] = ACTIONS(1511), [anon_sym_SQUOTE] = ACTIONS(1511), @@ -97179,815 +93759,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1509), [sym_real_literal] = ACTIONS(1511), }, - [622] = { - [sym_line_comment] = STATE(622), - [sym_doc_comment] = STATE(622), - [sym_block_comment] = STATE(622), - [sym_ident] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [anon_sym_BQUOTE] = ACTIONS(1519), - [sym_bytes_literal] = ACTIONS(1519), + [593] = { + [sym_line_comment] = STATE(593), + [sym_doc_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARendfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), + }, + [594] = { + [sym_line_comment] = STATE(594), + [sym_doc_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1517), - [sym_at_ident] = ACTIONS(1519), - [sym_hash_ident] = ACTIONS(1519), - [sym_type_ident] = ACTIONS(1519), - [sym_ct_type_ident] = ACTIONS(1519), - [sym_const_ident] = ACTIONS(1517), - [sym_builtin] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_tlocal] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_var] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_defer] = ACTIONS(1517), - [anon_sym_assert] = ACTIONS(1517), - [anon_sym_nextcase] = ACTIONS(1517), - [anon_sym_switch] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_foreach] = ACTIONS(1517), - [anon_sym_foreach_r] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_int] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_asm] = ACTIONS(1517), - [anon_sym_DOLLARassert] = ACTIONS(1517), - [anon_sym_DOLLARerror] = ACTIONS(1517), - [anon_sym_DOLLARecho] = ACTIONS(1517), - [anon_sym_DOLLARif] = ACTIONS(1517), - [anon_sym_DOLLARswitch] = ACTIONS(1517), - [anon_sym_DOLLARfor] = ACTIONS(1517), - [anon_sym_DOLLARendfor] = ACTIONS(1517), - [anon_sym_DOLLARforeach] = ACTIONS(1517), - [anon_sym_DOLLARalignof] = ACTIONS(1517), - [anon_sym_DOLLARextnameof] = ACTIONS(1517), - [anon_sym_DOLLARnameof] = ACTIONS(1517), - [anon_sym_DOLLARoffsetof] = ACTIONS(1517), - [anon_sym_DOLLARqnameof] = ACTIONS(1517), - [anon_sym_DOLLARvaconst] = ACTIONS(1517), - [anon_sym_DOLLARvaarg] = ACTIONS(1517), - [anon_sym_DOLLARvaref] = ACTIONS(1517), - [anon_sym_DOLLARvaexpr] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_null] = ACTIONS(1517), - [anon_sym_DOLLARvacount] = ACTIONS(1517), - [anon_sym_DOLLAReval] = ACTIONS(1517), - [anon_sym_DOLLARis_const] = ACTIONS(1517), - [anon_sym_DOLLARsizeof] = ACTIONS(1517), - [anon_sym_DOLLARstringify] = ACTIONS(1517), - [anon_sym_DOLLARappend] = ACTIONS(1517), - [anon_sym_DOLLARconcat] = ACTIONS(1517), - [anon_sym_DOLLARdefined] = ACTIONS(1517), - [anon_sym_DOLLARembed] = ACTIONS(1517), - [anon_sym_DOLLARand] = ACTIONS(1517), - [anon_sym_DOLLARor] = ACTIONS(1517), - [anon_sym_DOLLARfeature] = ACTIONS(1517), - [anon_sym_DOLLARassignable] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_typeid] = ACTIONS(1517), - [anon_sym_LBRACE_PIPE] = ACTIONS(1519), - [anon_sym_void] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_ichar] = ACTIONS(1517), - [anon_sym_short] = ACTIONS(1517), - [anon_sym_ushort] = ACTIONS(1517), - [anon_sym_uint] = ACTIONS(1517), - [anon_sym_long] = ACTIONS(1517), - [anon_sym_ulong] = ACTIONS(1517), - [anon_sym_int128] = ACTIONS(1517), - [anon_sym_uint128] = ACTIONS(1517), - [anon_sym_float] = ACTIONS(1517), - [anon_sym_double] = ACTIONS(1517), - [anon_sym_float16] = ACTIONS(1517), - [anon_sym_bfloat16] = ACTIONS(1517), - [anon_sym_float128] = ACTIONS(1517), - [anon_sym_iptr] = ACTIONS(1517), - [anon_sym_uptr] = ACTIONS(1517), - [anon_sym_isz] = ACTIONS(1517), - [anon_sym_usz] = ACTIONS(1517), - [anon_sym_anyfault] = ACTIONS(1517), - [anon_sym_any] = ACTIONS(1517), - [anon_sym_DOLLARtypeof] = ACTIONS(1517), - [anon_sym_DOLLARtypefrom] = ACTIONS(1517), - [anon_sym_DOLLARevaltype] = ACTIONS(1517), - [anon_sym_DOLLARvatype] = ACTIONS(1517), - [sym_real_literal] = ACTIONS(1519), - }, - [623] = { - [sym_line_comment] = STATE(623), - [sym_doc_comment] = STATE(623), - [sym_block_comment] = STATE(623), - [sym_ident] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_bytes_literal] = ACTIONS(1461), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1459), - [sym_at_ident] = ACTIONS(1461), - [sym_hash_ident] = ACTIONS(1461), - [sym_type_ident] = ACTIONS(1461), - [sym_ct_type_ident] = ACTIONS(1461), - [sym_const_ident] = ACTIONS(1459), - [sym_builtin] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_tlocal] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_var] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_defer] = ACTIONS(1459), - [anon_sym_assert] = ACTIONS(1459), - [anon_sym_nextcase] = ACTIONS(1459), - [anon_sym_switch] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_foreach] = ACTIONS(1459), - [anon_sym_foreach_r] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_int] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1459), - [anon_sym_DOLLARassert] = ACTIONS(1459), - [anon_sym_DOLLARerror] = ACTIONS(1459), - [anon_sym_DOLLARecho] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1459), - [anon_sym_DOLLARswitch] = ACTIONS(1459), - [anon_sym_DOLLARfor] = ACTIONS(1459), - [anon_sym_DOLLARendfor] = ACTIONS(1459), - [anon_sym_DOLLARforeach] = ACTIONS(1459), - [anon_sym_DOLLARalignof] = ACTIONS(1459), - [anon_sym_DOLLARextnameof] = ACTIONS(1459), - [anon_sym_DOLLARnameof] = ACTIONS(1459), - [anon_sym_DOLLARoffsetof] = ACTIONS(1459), - [anon_sym_DOLLARqnameof] = ACTIONS(1459), - [anon_sym_DOLLARvaconst] = ACTIONS(1459), - [anon_sym_DOLLARvaarg] = ACTIONS(1459), - [anon_sym_DOLLARvaref] = ACTIONS(1459), - [anon_sym_DOLLARvaexpr] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1459), - [anon_sym_DOLLARvacount] = ACTIONS(1459), - [anon_sym_DOLLAReval] = ACTIONS(1459), - [anon_sym_DOLLARis_const] = ACTIONS(1459), - [anon_sym_DOLLARsizeof] = ACTIONS(1459), - [anon_sym_DOLLARstringify] = ACTIONS(1459), - [anon_sym_DOLLARappend] = ACTIONS(1459), - [anon_sym_DOLLARconcat] = ACTIONS(1459), - [anon_sym_DOLLARdefined] = ACTIONS(1459), - [anon_sym_DOLLARembed] = ACTIONS(1459), - [anon_sym_DOLLARand] = ACTIONS(1459), - [anon_sym_DOLLARor] = ACTIONS(1459), - [anon_sym_DOLLARfeature] = ACTIONS(1459), - [anon_sym_DOLLARassignable] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_typeid] = ACTIONS(1459), - [anon_sym_LBRACE_PIPE] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_ichar] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [anon_sym_ushort] = ACTIONS(1459), - [anon_sym_uint] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_ulong] = ACTIONS(1459), - [anon_sym_int128] = ACTIONS(1459), - [anon_sym_uint128] = ACTIONS(1459), - [anon_sym_float] = ACTIONS(1459), - [anon_sym_double] = ACTIONS(1459), - [anon_sym_float16] = ACTIONS(1459), - [anon_sym_bfloat16] = ACTIONS(1459), - [anon_sym_float128] = ACTIONS(1459), - [anon_sym_iptr] = ACTIONS(1459), - [anon_sym_uptr] = ACTIONS(1459), - [anon_sym_isz] = ACTIONS(1459), - [anon_sym_usz] = ACTIONS(1459), - [anon_sym_anyfault] = ACTIONS(1459), - [anon_sym_any] = ACTIONS(1459), - [anon_sym_DOLLARtypeof] = ACTIONS(1459), - [anon_sym_DOLLARtypefrom] = ACTIONS(1459), - [anon_sym_DOLLARevaltype] = ACTIONS(1459), - [anon_sym_DOLLARvatype] = ACTIONS(1459), - [sym_real_literal] = ACTIONS(1461), - }, - [624] = { - [sym_line_comment] = STATE(624), - [sym_doc_comment] = STATE(624), - [sym_block_comment] = STATE(624), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARendfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARappend] = ACTIONS(1467), - [anon_sym_DOLLARconcat] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), - }, - [625] = { - [sym_line_comment] = STATE(625), - [sym_doc_comment] = STATE(625), - [sym_block_comment] = STATE(625), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARendfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARappend] = ACTIONS(1471), - [anon_sym_DOLLARconcat] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), - }, - [626] = { - [sym_line_comment] = STATE(626), - [sym_doc_comment] = STATE(626), - [sym_block_comment] = STATE(626), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARendfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARappend] = ACTIONS(1495), - [anon_sym_DOLLARconcat] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), - }, - [627] = { - [sym_line_comment] = STATE(627), - [sym_doc_comment] = STATE(627), - [sym_block_comment] = STATE(627), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARendfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARappend] = ACTIONS(1503), - [anon_sym_DOLLARconcat] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARendfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, - [628] = { - [sym_line_comment] = STATE(628), - [sym_doc_comment] = STATE(628), - [sym_block_comment] = STATE(628), - [sym_ident] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [anon_sym_BQUOTE] = ACTIONS(1523), - [sym_bytes_literal] = ACTIONS(1523), + [595] = { + [sym_line_comment] = STATE(595), + [sym_doc_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1521), - [sym_at_ident] = ACTIONS(1523), - [sym_hash_ident] = ACTIONS(1523), - [sym_type_ident] = ACTIONS(1523), - [sym_ct_type_ident] = ACTIONS(1523), - [sym_const_ident] = ACTIONS(1521), - [sym_builtin] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_tlocal] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_defer] = ACTIONS(1521), - [anon_sym_assert] = ACTIONS(1521), - [anon_sym_nextcase] = ACTIONS(1521), - [anon_sym_switch] = ACTIONS(1521), - [anon_sym_AMP_AMP] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_foreach] = ACTIONS(1521), - [anon_sym_foreach_r] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_do] = ACTIONS(1521), - [anon_sym_int] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_asm] = ACTIONS(1521), - [anon_sym_DOLLARassert] = ACTIONS(1521), - [anon_sym_DOLLARerror] = ACTIONS(1521), - [anon_sym_DOLLARecho] = ACTIONS(1521), - [anon_sym_DOLLARif] = ACTIONS(1521), - [anon_sym_DOLLARswitch] = ACTIONS(1521), - [anon_sym_DOLLARfor] = ACTIONS(1521), - [anon_sym_DOLLARendfor] = ACTIONS(1521), - [anon_sym_DOLLARforeach] = ACTIONS(1521), - [anon_sym_DOLLARalignof] = ACTIONS(1521), - [anon_sym_DOLLARextnameof] = ACTIONS(1521), - [anon_sym_DOLLARnameof] = ACTIONS(1521), - [anon_sym_DOLLARoffsetof] = ACTIONS(1521), - [anon_sym_DOLLARqnameof] = ACTIONS(1521), - [anon_sym_DOLLARvaconst] = ACTIONS(1521), - [anon_sym_DOLLARvaarg] = ACTIONS(1521), - [anon_sym_DOLLARvaref] = ACTIONS(1521), - [anon_sym_DOLLARvaexpr] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [anon_sym_DOLLARvacount] = ACTIONS(1521), - [anon_sym_DOLLAReval] = ACTIONS(1521), - [anon_sym_DOLLARis_const] = ACTIONS(1521), - [anon_sym_DOLLARsizeof] = ACTIONS(1521), - [anon_sym_DOLLARstringify] = ACTIONS(1521), - [anon_sym_DOLLARappend] = ACTIONS(1521), - [anon_sym_DOLLARconcat] = ACTIONS(1521), - [anon_sym_DOLLARdefined] = ACTIONS(1521), - [anon_sym_DOLLARembed] = ACTIONS(1521), - [anon_sym_DOLLARand] = ACTIONS(1521), - [anon_sym_DOLLARor] = ACTIONS(1521), - [anon_sym_DOLLARfeature] = ACTIONS(1521), - [anon_sym_DOLLARassignable] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_typeid] = ACTIONS(1521), - [anon_sym_LBRACE_PIPE] = ACTIONS(1523), - [anon_sym_void] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_ichar] = ACTIONS(1521), - [anon_sym_short] = ACTIONS(1521), - [anon_sym_ushort] = ACTIONS(1521), - [anon_sym_uint] = ACTIONS(1521), - [anon_sym_long] = ACTIONS(1521), - [anon_sym_ulong] = ACTIONS(1521), - [anon_sym_int128] = ACTIONS(1521), - [anon_sym_uint128] = ACTIONS(1521), - [anon_sym_float] = ACTIONS(1521), - [anon_sym_double] = ACTIONS(1521), - [anon_sym_float16] = ACTIONS(1521), - [anon_sym_bfloat16] = ACTIONS(1521), - [anon_sym_float128] = ACTIONS(1521), - [anon_sym_iptr] = ACTIONS(1521), - [anon_sym_uptr] = ACTIONS(1521), - [anon_sym_isz] = ACTIONS(1521), - [anon_sym_usz] = ACTIONS(1521), - [anon_sym_anyfault] = ACTIONS(1521), - [anon_sym_any] = ACTIONS(1521), - [anon_sym_DOLLARtypeof] = ACTIONS(1521), - [anon_sym_DOLLARtypefrom] = ACTIONS(1521), - [anon_sym_DOLLARevaltype] = ACTIONS(1521), - [anon_sym_DOLLARvatype] = ACTIONS(1521), - [sym_real_literal] = ACTIONS(1523), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARendfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, - [629] = { - [sym_line_comment] = STATE(629), - [sym_doc_comment] = STATE(629), - [sym_block_comment] = STATE(629), + [596] = { + [sym_line_comment] = STATE(596), + [sym_doc_comment] = STATE(596), + [sym_block_comment] = STATE(596), [sym_ident] = ACTIONS(1533), [sym_integer_literal] = ACTIONS(1535), [anon_sym_SQUOTE] = ACTIONS(1535), @@ -98099,355 +94219,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1533), [sym_real_literal] = ACTIONS(1535), }, - [630] = { - [sym_line_comment] = STATE(630), - [sym_doc_comment] = STATE(630), - [sym_block_comment] = STATE(630), - [sym_ident] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1547), - [sym_bytes_literal] = ACTIONS(1547), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1545), - [sym_at_ident] = ACTIONS(1547), - [sym_hash_ident] = ACTIONS(1547), - [sym_type_ident] = ACTIONS(1547), - [sym_ct_type_ident] = ACTIONS(1547), - [sym_const_ident] = ACTIONS(1545), - [sym_builtin] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_tlocal] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_fn] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_var] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_defer] = ACTIONS(1545), - [anon_sym_assert] = ACTIONS(1545), - [anon_sym_nextcase] = ACTIONS(1545), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_foreach] = ACTIONS(1545), - [anon_sym_foreach_r] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_int] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym_DOLLARassert] = ACTIONS(1545), - [anon_sym_DOLLARerror] = ACTIONS(1545), - [anon_sym_DOLLARecho] = ACTIONS(1545), - [anon_sym_DOLLARif] = ACTIONS(1545), - [anon_sym_DOLLARswitch] = ACTIONS(1545), - [anon_sym_DOLLARfor] = ACTIONS(1545), - [anon_sym_DOLLARendfor] = ACTIONS(1545), - [anon_sym_DOLLARforeach] = ACTIONS(1545), - [anon_sym_DOLLARalignof] = ACTIONS(1545), - [anon_sym_DOLLARextnameof] = ACTIONS(1545), - [anon_sym_DOLLARnameof] = ACTIONS(1545), - [anon_sym_DOLLARoffsetof] = ACTIONS(1545), - [anon_sym_DOLLARqnameof] = ACTIONS(1545), - [anon_sym_DOLLARvaconst] = ACTIONS(1545), - [anon_sym_DOLLARvaarg] = ACTIONS(1545), - [anon_sym_DOLLARvaref] = ACTIONS(1545), - [anon_sym_DOLLARvaexpr] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_null] = ACTIONS(1545), - [anon_sym_DOLLARvacount] = ACTIONS(1545), - [anon_sym_DOLLAReval] = ACTIONS(1545), - [anon_sym_DOLLARis_const] = ACTIONS(1545), - [anon_sym_DOLLARsizeof] = ACTIONS(1545), - [anon_sym_DOLLARstringify] = ACTIONS(1545), - [anon_sym_DOLLARappend] = ACTIONS(1545), - [anon_sym_DOLLARconcat] = ACTIONS(1545), - [anon_sym_DOLLARdefined] = ACTIONS(1545), - [anon_sym_DOLLARembed] = ACTIONS(1545), - [anon_sym_DOLLARand] = ACTIONS(1545), - [anon_sym_DOLLARor] = ACTIONS(1545), - [anon_sym_DOLLARfeature] = ACTIONS(1545), - [anon_sym_DOLLARassignable] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_typeid] = ACTIONS(1545), - [anon_sym_LBRACE_PIPE] = ACTIONS(1547), - [anon_sym_void] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_ichar] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [anon_sym_ushort] = ACTIONS(1545), - [anon_sym_uint] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_ulong] = ACTIONS(1545), - [anon_sym_int128] = ACTIONS(1545), - [anon_sym_uint128] = ACTIONS(1545), - [anon_sym_float] = ACTIONS(1545), - [anon_sym_double] = ACTIONS(1545), - [anon_sym_float16] = ACTIONS(1545), - [anon_sym_bfloat16] = ACTIONS(1545), - [anon_sym_float128] = ACTIONS(1545), - [anon_sym_iptr] = ACTIONS(1545), - [anon_sym_uptr] = ACTIONS(1545), - [anon_sym_isz] = ACTIONS(1545), - [anon_sym_usz] = ACTIONS(1545), - [anon_sym_anyfault] = ACTIONS(1545), - [anon_sym_any] = ACTIONS(1545), - [anon_sym_DOLLARtypeof] = ACTIONS(1545), - [anon_sym_DOLLARtypefrom] = ACTIONS(1545), - [anon_sym_DOLLARevaltype] = ACTIONS(1545), - [anon_sym_DOLLARvatype] = ACTIONS(1545), - [sym_real_literal] = ACTIONS(1547), - }, - [631] = { - [sym_line_comment] = STATE(631), - [sym_doc_comment] = STATE(631), - [sym_block_comment] = STATE(631), - [sym_ident] = ACTIONS(1557), - [sym_integer_literal] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [sym_bytes_literal] = ACTIONS(1559), + [597] = { + [sym_line_comment] = STATE(597), + [sym_doc_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1557), - [sym_at_ident] = ACTIONS(1559), - [sym_hash_ident] = ACTIONS(1559), - [sym_type_ident] = ACTIONS(1559), - [sym_ct_type_ident] = ACTIONS(1559), - [sym_const_ident] = ACTIONS(1557), - [sym_builtin] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_tlocal] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_fn] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_var] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_defer] = ACTIONS(1557), - [anon_sym_assert] = ACTIONS(1557), - [anon_sym_nextcase] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_foreach] = ACTIONS(1557), - [anon_sym_foreach_r] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_int] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_asm] = ACTIONS(1557), - [anon_sym_DOLLARassert] = ACTIONS(1557), - [anon_sym_DOLLARerror] = ACTIONS(1557), - [anon_sym_DOLLARecho] = ACTIONS(1557), - [anon_sym_DOLLARif] = ACTIONS(1557), - [anon_sym_DOLLARswitch] = ACTIONS(1557), - [anon_sym_DOLLARfor] = ACTIONS(1557), - [anon_sym_DOLLARendfor] = ACTIONS(1557), - [anon_sym_DOLLARforeach] = ACTIONS(1557), - [anon_sym_DOLLARalignof] = ACTIONS(1557), - [anon_sym_DOLLARextnameof] = ACTIONS(1557), - [anon_sym_DOLLARnameof] = ACTIONS(1557), - [anon_sym_DOLLARoffsetof] = ACTIONS(1557), - [anon_sym_DOLLARqnameof] = ACTIONS(1557), - [anon_sym_DOLLARvaconst] = ACTIONS(1557), - [anon_sym_DOLLARvaarg] = ACTIONS(1557), - [anon_sym_DOLLARvaref] = ACTIONS(1557), - [anon_sym_DOLLARvaexpr] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [anon_sym_null] = ACTIONS(1557), - [anon_sym_DOLLARvacount] = ACTIONS(1557), - [anon_sym_DOLLAReval] = ACTIONS(1557), - [anon_sym_DOLLARis_const] = ACTIONS(1557), - [anon_sym_DOLLARsizeof] = ACTIONS(1557), - [anon_sym_DOLLARstringify] = ACTIONS(1557), - [anon_sym_DOLLARappend] = ACTIONS(1557), - [anon_sym_DOLLARconcat] = ACTIONS(1557), - [anon_sym_DOLLARdefined] = ACTIONS(1557), - [anon_sym_DOLLARembed] = ACTIONS(1557), - [anon_sym_DOLLARand] = ACTIONS(1557), - [anon_sym_DOLLARor] = ACTIONS(1557), - [anon_sym_DOLLARfeature] = ACTIONS(1557), - [anon_sym_DOLLARassignable] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_typeid] = ACTIONS(1557), - [anon_sym_LBRACE_PIPE] = ACTIONS(1559), - [anon_sym_void] = ACTIONS(1557), - [anon_sym_bool] = ACTIONS(1557), - [anon_sym_char] = ACTIONS(1557), - [anon_sym_ichar] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [anon_sym_ushort] = ACTIONS(1557), - [anon_sym_uint] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_ulong] = ACTIONS(1557), - [anon_sym_int128] = ACTIONS(1557), - [anon_sym_uint128] = ACTIONS(1557), - [anon_sym_float] = ACTIONS(1557), - [anon_sym_double] = ACTIONS(1557), - [anon_sym_float16] = ACTIONS(1557), - [anon_sym_bfloat16] = ACTIONS(1557), - [anon_sym_float128] = ACTIONS(1557), - [anon_sym_iptr] = ACTIONS(1557), - [anon_sym_uptr] = ACTIONS(1557), - [anon_sym_isz] = ACTIONS(1557), - [anon_sym_usz] = ACTIONS(1557), - [anon_sym_anyfault] = ACTIONS(1557), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_DOLLARtypeof] = ACTIONS(1557), - [anon_sym_DOLLARtypefrom] = ACTIONS(1557), - [anon_sym_DOLLARevaltype] = ACTIONS(1557), - [anon_sym_DOLLARvatype] = ACTIONS(1557), - [sym_real_literal] = ACTIONS(1559), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARendfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, - [632] = { - [sym_line_comment] = STATE(632), - [sym_doc_comment] = STATE(632), - [sym_block_comment] = STATE(632), - [sym_ident] = ACTIONS(1561), - [sym_integer_literal] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [sym_bytes_literal] = ACTIONS(1563), + [598] = { + [sym_line_comment] = STATE(598), + [sym_doc_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1561), - [sym_at_ident] = ACTIONS(1563), - [sym_hash_ident] = ACTIONS(1563), - [sym_type_ident] = ACTIONS(1563), - [sym_ct_type_ident] = ACTIONS(1563), - [sym_const_ident] = ACTIONS(1561), - [sym_builtin] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_tlocal] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_fn] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_var] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_defer] = ACTIONS(1561), - [anon_sym_assert] = ACTIONS(1561), - [anon_sym_nextcase] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_foreach] = ACTIONS(1561), - [anon_sym_foreach_r] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_int] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_asm] = ACTIONS(1561), - [anon_sym_DOLLARassert] = ACTIONS(1561), - [anon_sym_DOLLARerror] = ACTIONS(1561), - [anon_sym_DOLLARecho] = ACTIONS(1561), - [anon_sym_DOLLARif] = ACTIONS(1561), - [anon_sym_DOLLARswitch] = ACTIONS(1561), - [anon_sym_DOLLARfor] = ACTIONS(1561), - [anon_sym_DOLLARendfor] = ACTIONS(1561), - [anon_sym_DOLLARforeach] = ACTIONS(1561), - [anon_sym_DOLLARalignof] = ACTIONS(1561), - [anon_sym_DOLLARextnameof] = ACTIONS(1561), - [anon_sym_DOLLARnameof] = ACTIONS(1561), - [anon_sym_DOLLARoffsetof] = ACTIONS(1561), - [anon_sym_DOLLARqnameof] = ACTIONS(1561), - [anon_sym_DOLLARvaconst] = ACTIONS(1561), - [anon_sym_DOLLARvaarg] = ACTIONS(1561), - [anon_sym_DOLLARvaref] = ACTIONS(1561), - [anon_sym_DOLLARvaexpr] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [anon_sym_DOLLARvacount] = ACTIONS(1561), - [anon_sym_DOLLAReval] = ACTIONS(1561), - [anon_sym_DOLLARis_const] = ACTIONS(1561), - [anon_sym_DOLLARsizeof] = ACTIONS(1561), - [anon_sym_DOLLARstringify] = ACTIONS(1561), - [anon_sym_DOLLARappend] = ACTIONS(1561), - [anon_sym_DOLLARconcat] = ACTIONS(1561), - [anon_sym_DOLLARdefined] = ACTIONS(1561), - [anon_sym_DOLLARembed] = ACTIONS(1561), - [anon_sym_DOLLARand] = ACTIONS(1561), - [anon_sym_DOLLARor] = ACTIONS(1561), - [anon_sym_DOLLARfeature] = ACTIONS(1561), - [anon_sym_DOLLARassignable] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_typeid] = ACTIONS(1561), - [anon_sym_LBRACE_PIPE] = ACTIONS(1563), - [anon_sym_void] = ACTIONS(1561), - [anon_sym_bool] = ACTIONS(1561), - [anon_sym_char] = ACTIONS(1561), - [anon_sym_ichar] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [anon_sym_ushort] = ACTIONS(1561), - [anon_sym_uint] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_ulong] = ACTIONS(1561), - [anon_sym_int128] = ACTIONS(1561), - [anon_sym_uint128] = ACTIONS(1561), - [anon_sym_float] = ACTIONS(1561), - [anon_sym_double] = ACTIONS(1561), - [anon_sym_float16] = ACTIONS(1561), - [anon_sym_bfloat16] = ACTIONS(1561), - [anon_sym_float128] = ACTIONS(1561), - [anon_sym_iptr] = ACTIONS(1561), - [anon_sym_uptr] = ACTIONS(1561), - [anon_sym_isz] = ACTIONS(1561), - [anon_sym_usz] = ACTIONS(1561), - [anon_sym_anyfault] = ACTIONS(1561), - [anon_sym_any] = ACTIONS(1561), - [anon_sym_DOLLARtypeof] = ACTIONS(1561), - [anon_sym_DOLLARtypefrom] = ACTIONS(1561), - [anon_sym_DOLLARevaltype] = ACTIONS(1561), - [anon_sym_DOLLARvatype] = ACTIONS(1561), - [sym_real_literal] = ACTIONS(1563), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARendfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, - [633] = { - [sym_line_comment] = STATE(633), - [sym_doc_comment] = STATE(633), - [sym_block_comment] = STATE(633), + [599] = { + [sym_line_comment] = STATE(599), + [sym_doc_comment] = STATE(599), + [sym_block_comment] = STATE(599), [sym_ident] = ACTIONS(1573), [sym_integer_literal] = ACTIONS(1575), [anon_sym_SQUOTE] = ACTIONS(1575), @@ -98559,4380 +94564,4840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1573), [sym_real_literal] = ACTIONS(1575), }, - [634] = { - [sym_line_comment] = STATE(634), - [sym_doc_comment] = STATE(634), - [sym_block_comment] = STATE(634), - [sym_ident] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_bytes_literal] = ACTIONS(1583), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1581), - [sym_at_ident] = ACTIONS(1583), - [sym_hash_ident] = ACTIONS(1583), - [sym_type_ident] = ACTIONS(1583), - [sym_ct_type_ident] = ACTIONS(1583), - [sym_const_ident] = ACTIONS(1581), - [sym_builtin] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_tlocal] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_fn] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_var] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_defer] = ACTIONS(1581), - [anon_sym_assert] = ACTIONS(1581), - [anon_sym_nextcase] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_foreach] = ACTIONS(1581), - [anon_sym_foreach_r] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_int] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_asm] = ACTIONS(1581), - [anon_sym_DOLLARassert] = ACTIONS(1581), - [anon_sym_DOLLARerror] = ACTIONS(1581), - [anon_sym_DOLLARecho] = ACTIONS(1581), - [anon_sym_DOLLARif] = ACTIONS(1581), - [anon_sym_DOLLARswitch] = ACTIONS(1581), - [anon_sym_DOLLARfor] = ACTIONS(1581), - [anon_sym_DOLLARendfor] = ACTIONS(1581), - [anon_sym_DOLLARforeach] = ACTIONS(1581), - [anon_sym_DOLLARalignof] = ACTIONS(1581), - [anon_sym_DOLLARextnameof] = ACTIONS(1581), - [anon_sym_DOLLARnameof] = ACTIONS(1581), - [anon_sym_DOLLARoffsetof] = ACTIONS(1581), - [anon_sym_DOLLARqnameof] = ACTIONS(1581), - [anon_sym_DOLLARvaconst] = ACTIONS(1581), - [anon_sym_DOLLARvaarg] = ACTIONS(1581), - [anon_sym_DOLLARvaref] = ACTIONS(1581), - [anon_sym_DOLLARvaexpr] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1581), - [anon_sym_false] = ACTIONS(1581), - [anon_sym_null] = ACTIONS(1581), - [anon_sym_DOLLARvacount] = ACTIONS(1581), - [anon_sym_DOLLAReval] = ACTIONS(1581), - [anon_sym_DOLLARis_const] = ACTIONS(1581), - [anon_sym_DOLLARsizeof] = ACTIONS(1581), - [anon_sym_DOLLARstringify] = ACTIONS(1581), - [anon_sym_DOLLARappend] = ACTIONS(1581), - [anon_sym_DOLLARconcat] = ACTIONS(1581), - [anon_sym_DOLLARdefined] = ACTIONS(1581), - [anon_sym_DOLLARembed] = ACTIONS(1581), - [anon_sym_DOLLARand] = ACTIONS(1581), - [anon_sym_DOLLARor] = ACTIONS(1581), - [anon_sym_DOLLARfeature] = ACTIONS(1581), - [anon_sym_DOLLARassignable] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_typeid] = ACTIONS(1581), - [anon_sym_LBRACE_PIPE] = ACTIONS(1583), - [anon_sym_void] = ACTIONS(1581), - [anon_sym_bool] = ACTIONS(1581), - [anon_sym_char] = ACTIONS(1581), - [anon_sym_ichar] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [anon_sym_ushort] = ACTIONS(1581), - [anon_sym_uint] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_ulong] = ACTIONS(1581), - [anon_sym_int128] = ACTIONS(1581), - [anon_sym_uint128] = ACTIONS(1581), - [anon_sym_float] = ACTIONS(1581), - [anon_sym_double] = ACTIONS(1581), - [anon_sym_float16] = ACTIONS(1581), - [anon_sym_bfloat16] = ACTIONS(1581), - [anon_sym_float128] = ACTIONS(1581), - [anon_sym_iptr] = ACTIONS(1581), - [anon_sym_uptr] = ACTIONS(1581), - [anon_sym_isz] = ACTIONS(1581), - [anon_sym_usz] = ACTIONS(1581), - [anon_sym_anyfault] = ACTIONS(1581), - [anon_sym_any] = ACTIONS(1581), - [anon_sym_DOLLARtypeof] = ACTIONS(1581), - [anon_sym_DOLLARtypefrom] = ACTIONS(1581), - [anon_sym_DOLLARevaltype] = ACTIONS(1581), - [anon_sym_DOLLARvatype] = ACTIONS(1581), - [sym_real_literal] = ACTIONS(1583), - }, - [635] = { - [sym_line_comment] = STATE(635), - [sym_doc_comment] = STATE(635), - [sym_block_comment] = STATE(635), - [sym_ident] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [anon_sym_BQUOTE] = ACTIONS(1587), - [sym_bytes_literal] = ACTIONS(1587), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1585), - [sym_at_ident] = ACTIONS(1587), - [sym_hash_ident] = ACTIONS(1587), - [sym_type_ident] = ACTIONS(1587), - [sym_ct_type_ident] = ACTIONS(1587), - [sym_const_ident] = ACTIONS(1585), - [sym_builtin] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_tlocal] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_fn] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_var] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_defer] = ACTIONS(1585), - [anon_sym_assert] = ACTIONS(1585), - [anon_sym_nextcase] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_foreach] = ACTIONS(1585), - [anon_sym_foreach_r] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_int] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_asm] = ACTIONS(1585), - [anon_sym_DOLLARassert] = ACTIONS(1585), - [anon_sym_DOLLARerror] = ACTIONS(1585), - [anon_sym_DOLLARecho] = ACTIONS(1585), - [anon_sym_DOLLARif] = ACTIONS(1585), - [anon_sym_DOLLARswitch] = ACTIONS(1585), - [anon_sym_DOLLARfor] = ACTIONS(1585), - [anon_sym_DOLLARendfor] = ACTIONS(1585), - [anon_sym_DOLLARforeach] = ACTIONS(1585), - [anon_sym_DOLLARalignof] = ACTIONS(1585), - [anon_sym_DOLLARextnameof] = ACTIONS(1585), - [anon_sym_DOLLARnameof] = ACTIONS(1585), - [anon_sym_DOLLARoffsetof] = ACTIONS(1585), - [anon_sym_DOLLARqnameof] = ACTIONS(1585), - [anon_sym_DOLLARvaconst] = ACTIONS(1585), - [anon_sym_DOLLARvaarg] = ACTIONS(1585), - [anon_sym_DOLLARvaref] = ACTIONS(1585), - [anon_sym_DOLLARvaexpr] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [anon_sym_null] = ACTIONS(1585), - [anon_sym_DOLLARvacount] = ACTIONS(1585), - [anon_sym_DOLLAReval] = ACTIONS(1585), - [anon_sym_DOLLARis_const] = ACTIONS(1585), - [anon_sym_DOLLARsizeof] = ACTIONS(1585), - [anon_sym_DOLLARstringify] = ACTIONS(1585), - [anon_sym_DOLLARappend] = ACTIONS(1585), - [anon_sym_DOLLARconcat] = ACTIONS(1585), - [anon_sym_DOLLARdefined] = ACTIONS(1585), - [anon_sym_DOLLARembed] = ACTIONS(1585), - [anon_sym_DOLLARand] = ACTIONS(1585), - [anon_sym_DOLLARor] = ACTIONS(1585), - [anon_sym_DOLLARfeature] = ACTIONS(1585), - [anon_sym_DOLLARassignable] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_typeid] = ACTIONS(1585), - [anon_sym_LBRACE_PIPE] = ACTIONS(1587), - [anon_sym_void] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_ichar] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_ushort] = ACTIONS(1585), - [anon_sym_uint] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_ulong] = ACTIONS(1585), - [anon_sym_int128] = ACTIONS(1585), - [anon_sym_uint128] = ACTIONS(1585), - [anon_sym_float] = ACTIONS(1585), - [anon_sym_double] = ACTIONS(1585), - [anon_sym_float16] = ACTIONS(1585), - [anon_sym_bfloat16] = ACTIONS(1585), - [anon_sym_float128] = ACTIONS(1585), - [anon_sym_iptr] = ACTIONS(1585), - [anon_sym_uptr] = ACTIONS(1585), - [anon_sym_isz] = ACTIONS(1585), - [anon_sym_usz] = ACTIONS(1585), - [anon_sym_anyfault] = ACTIONS(1585), - [anon_sym_any] = ACTIONS(1585), - [anon_sym_DOLLARtypeof] = ACTIONS(1585), - [anon_sym_DOLLARtypefrom] = ACTIONS(1585), - [anon_sym_DOLLARevaltype] = ACTIONS(1585), - [anon_sym_DOLLARvatype] = ACTIONS(1585), - [sym_real_literal] = ACTIONS(1587), - }, - [636] = { - [sym_line_comment] = STATE(636), - [sym_doc_comment] = STATE(636), - [sym_block_comment] = STATE(636), - [sym_ident] = ACTIONS(1637), - [sym_integer_literal] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [anon_sym_BQUOTE] = ACTIONS(1639), - [sym_bytes_literal] = ACTIONS(1639), + [600] = { + [sym_line_comment] = STATE(600), + [sym_doc_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1637), - [sym_at_ident] = ACTIONS(1639), - [sym_hash_ident] = ACTIONS(1639), - [sym_type_ident] = ACTIONS(1639), - [sym_ct_type_ident] = ACTIONS(1639), - [sym_const_ident] = ACTIONS(1637), - [sym_builtin] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_tlocal] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_fn] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_var] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_defer] = ACTIONS(1637), - [anon_sym_assert] = ACTIONS(1637), - [anon_sym_nextcase] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_foreach] = ACTIONS(1637), - [anon_sym_foreach_r] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_int] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_asm] = ACTIONS(1637), - [anon_sym_DOLLARassert] = ACTIONS(1637), - [anon_sym_DOLLARerror] = ACTIONS(1637), - [anon_sym_DOLLARecho] = ACTIONS(1637), - [anon_sym_DOLLARif] = ACTIONS(1637), - [anon_sym_DOLLARswitch] = ACTIONS(1637), - [anon_sym_DOLLARfor] = ACTIONS(1637), - [anon_sym_DOLLARendfor] = ACTIONS(1637), - [anon_sym_DOLLARforeach] = ACTIONS(1637), - [anon_sym_DOLLARalignof] = ACTIONS(1637), - [anon_sym_DOLLARextnameof] = ACTIONS(1637), - [anon_sym_DOLLARnameof] = ACTIONS(1637), - [anon_sym_DOLLARoffsetof] = ACTIONS(1637), - [anon_sym_DOLLARqnameof] = ACTIONS(1637), - [anon_sym_DOLLARvaconst] = ACTIONS(1637), - [anon_sym_DOLLARvaarg] = ACTIONS(1637), - [anon_sym_DOLLARvaref] = ACTIONS(1637), - [anon_sym_DOLLARvaexpr] = ACTIONS(1637), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [anon_sym_null] = ACTIONS(1637), - [anon_sym_DOLLARvacount] = ACTIONS(1637), - [anon_sym_DOLLAReval] = ACTIONS(1637), - [anon_sym_DOLLARis_const] = ACTIONS(1637), - [anon_sym_DOLLARsizeof] = ACTIONS(1637), - [anon_sym_DOLLARstringify] = ACTIONS(1637), - [anon_sym_DOLLARappend] = ACTIONS(1637), - [anon_sym_DOLLARconcat] = ACTIONS(1637), - [anon_sym_DOLLARdefined] = ACTIONS(1637), - [anon_sym_DOLLARembed] = ACTIONS(1637), - [anon_sym_DOLLARand] = ACTIONS(1637), - [anon_sym_DOLLARor] = ACTIONS(1637), - [anon_sym_DOLLARfeature] = ACTIONS(1637), - [anon_sym_DOLLARassignable] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_typeid] = ACTIONS(1637), - [anon_sym_LBRACE_PIPE] = ACTIONS(1639), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_char] = ACTIONS(1637), - [anon_sym_ichar] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [anon_sym_ushort] = ACTIONS(1637), - [anon_sym_uint] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_ulong] = ACTIONS(1637), - [anon_sym_int128] = ACTIONS(1637), - [anon_sym_uint128] = ACTIONS(1637), - [anon_sym_float] = ACTIONS(1637), - [anon_sym_double] = ACTIONS(1637), - [anon_sym_float16] = ACTIONS(1637), - [anon_sym_bfloat16] = ACTIONS(1637), - [anon_sym_float128] = ACTIONS(1637), - [anon_sym_iptr] = ACTIONS(1637), - [anon_sym_uptr] = ACTIONS(1637), - [anon_sym_isz] = ACTIONS(1637), - [anon_sym_usz] = ACTIONS(1637), - [anon_sym_anyfault] = ACTIONS(1637), - [anon_sym_any] = ACTIONS(1637), - [anon_sym_DOLLARtypeof] = ACTIONS(1637), - [anon_sym_DOLLARtypefrom] = ACTIONS(1637), - [anon_sym_DOLLARevaltype] = ACTIONS(1637), - [anon_sym_DOLLARvatype] = ACTIONS(1637), - [sym_real_literal] = ACTIONS(1639), - }, - [637] = { - [sym_line_comment] = STATE(637), - [sym_doc_comment] = STATE(637), - [sym_block_comment] = STATE(637), - [sym_ident] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_bytes_literal] = ACTIONS(1655), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1653), - [sym_at_ident] = ACTIONS(1655), - [sym_hash_ident] = ACTIONS(1655), - [sym_type_ident] = ACTIONS(1655), - [sym_ct_type_ident] = ACTIONS(1655), - [sym_const_ident] = ACTIONS(1653), - [sym_builtin] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_tlocal] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_var] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_assert] = ACTIONS(1653), - [anon_sym_nextcase] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_foreach] = ACTIONS(1653), - [anon_sym_foreach_r] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_asm] = ACTIONS(1653), - [anon_sym_DOLLARassert] = ACTIONS(1653), - [anon_sym_DOLLARerror] = ACTIONS(1653), - [anon_sym_DOLLARecho] = ACTIONS(1653), - [anon_sym_DOLLARif] = ACTIONS(1653), - [anon_sym_DOLLARswitch] = ACTIONS(1653), - [anon_sym_DOLLARfor] = ACTIONS(1653), - [anon_sym_DOLLARendfor] = ACTIONS(1653), - [anon_sym_DOLLARforeach] = ACTIONS(1653), - [anon_sym_DOLLARalignof] = ACTIONS(1653), - [anon_sym_DOLLARextnameof] = ACTIONS(1653), - [anon_sym_DOLLARnameof] = ACTIONS(1653), - [anon_sym_DOLLARoffsetof] = ACTIONS(1653), - [anon_sym_DOLLARqnameof] = ACTIONS(1653), - [anon_sym_DOLLARvaconst] = ACTIONS(1653), - [anon_sym_DOLLARvaarg] = ACTIONS(1653), - [anon_sym_DOLLARvaref] = ACTIONS(1653), - [anon_sym_DOLLARvaexpr] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_DOLLARvacount] = ACTIONS(1653), - [anon_sym_DOLLAReval] = ACTIONS(1653), - [anon_sym_DOLLARis_const] = ACTIONS(1653), - [anon_sym_DOLLARsizeof] = ACTIONS(1653), - [anon_sym_DOLLARstringify] = ACTIONS(1653), - [anon_sym_DOLLARappend] = ACTIONS(1653), - [anon_sym_DOLLARconcat] = ACTIONS(1653), - [anon_sym_DOLLARdefined] = ACTIONS(1653), - [anon_sym_DOLLARembed] = ACTIONS(1653), - [anon_sym_DOLLARand] = ACTIONS(1653), - [anon_sym_DOLLARor] = ACTIONS(1653), - [anon_sym_DOLLARfeature] = ACTIONS(1653), - [anon_sym_DOLLARassignable] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_typeid] = ACTIONS(1653), - [anon_sym_LBRACE_PIPE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_ichar] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [anon_sym_ushort] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_ulong] = ACTIONS(1653), - [anon_sym_int128] = ACTIONS(1653), - [anon_sym_uint128] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_double] = ACTIONS(1653), - [anon_sym_float16] = ACTIONS(1653), - [anon_sym_bfloat16] = ACTIONS(1653), - [anon_sym_float128] = ACTIONS(1653), - [anon_sym_iptr] = ACTIONS(1653), - [anon_sym_uptr] = ACTIONS(1653), - [anon_sym_isz] = ACTIONS(1653), - [anon_sym_usz] = ACTIONS(1653), - [anon_sym_anyfault] = ACTIONS(1653), - [anon_sym_any] = ACTIONS(1653), - [anon_sym_DOLLARtypeof] = ACTIONS(1653), - [anon_sym_DOLLARtypefrom] = ACTIONS(1653), - [anon_sym_DOLLARevaltype] = ACTIONS(1653), - [anon_sym_DOLLARvatype] = ACTIONS(1653), - [sym_real_literal] = ACTIONS(1655), - }, - [638] = { - [sym_line_comment] = STATE(638), - [sym_doc_comment] = STATE(638), - [sym_block_comment] = STATE(638), - [sym_ident] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [sym_bytes_literal] = ACTIONS(1385), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1383), - [sym_at_ident] = ACTIONS(1385), - [sym_hash_ident] = ACTIONS(1385), - [sym_type_ident] = ACTIONS(1385), - [sym_ct_type_ident] = ACTIONS(1385), - [sym_const_ident] = ACTIONS(1383), - [sym_builtin] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_tlocal] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_var] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_defer] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_nextcase] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_AMP_AMP] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_foreach] = ACTIONS(1383), - [anon_sym_foreach_r] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_int] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym_DOLLARassert] = ACTIONS(1383), - [anon_sym_DOLLARerror] = ACTIONS(1383), - [anon_sym_DOLLARecho] = ACTIONS(1383), - [anon_sym_DOLLARif] = ACTIONS(1383), - [anon_sym_DOLLARswitch] = ACTIONS(1383), - [anon_sym_DOLLARfor] = ACTIONS(1383), - [anon_sym_DOLLARendfor] = ACTIONS(1383), - [anon_sym_DOLLARforeach] = ACTIONS(1383), - [anon_sym_DOLLARalignof] = ACTIONS(1383), - [anon_sym_DOLLARextnameof] = ACTIONS(1383), - [anon_sym_DOLLARnameof] = ACTIONS(1383), - [anon_sym_DOLLARoffsetof] = ACTIONS(1383), - [anon_sym_DOLLARqnameof] = ACTIONS(1383), - [anon_sym_DOLLARvaconst] = ACTIONS(1383), - [anon_sym_DOLLARvaarg] = ACTIONS(1383), - [anon_sym_DOLLARvaref] = ACTIONS(1383), - [anon_sym_DOLLARvaexpr] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1383), - [anon_sym_DOLLARvacount] = ACTIONS(1383), - [anon_sym_DOLLAReval] = ACTIONS(1383), - [anon_sym_DOLLARis_const] = ACTIONS(1383), - [anon_sym_DOLLARsizeof] = ACTIONS(1383), - [anon_sym_DOLLARstringify] = ACTIONS(1383), - [anon_sym_DOLLARappend] = ACTIONS(1383), - [anon_sym_DOLLARconcat] = ACTIONS(1383), - [anon_sym_DOLLARdefined] = ACTIONS(1383), - [anon_sym_DOLLARembed] = ACTIONS(1383), - [anon_sym_DOLLARand] = ACTIONS(1383), - [anon_sym_DOLLARor] = ACTIONS(1383), - [anon_sym_DOLLARfeature] = ACTIONS(1383), - [anon_sym_DOLLARassignable] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_typeid] = ACTIONS(1383), - [anon_sym_LBRACE_PIPE] = ACTIONS(1385), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_bool] = ACTIONS(1383), - [anon_sym_char] = ACTIONS(1383), - [anon_sym_ichar] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_ushort] = ACTIONS(1383), - [anon_sym_uint] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_ulong] = ACTIONS(1383), - [anon_sym_int128] = ACTIONS(1383), - [anon_sym_uint128] = ACTIONS(1383), - [anon_sym_float] = ACTIONS(1383), - [anon_sym_double] = ACTIONS(1383), - [anon_sym_float16] = ACTIONS(1383), - [anon_sym_bfloat16] = ACTIONS(1383), - [anon_sym_float128] = ACTIONS(1383), - [anon_sym_iptr] = ACTIONS(1383), - [anon_sym_uptr] = ACTIONS(1383), - [anon_sym_isz] = ACTIONS(1383), - [anon_sym_usz] = ACTIONS(1383), - [anon_sym_anyfault] = ACTIONS(1383), - [anon_sym_any] = ACTIONS(1383), - [anon_sym_DOLLARtypeof] = ACTIONS(1383), - [anon_sym_DOLLARtypefrom] = ACTIONS(1383), - [anon_sym_DOLLARevaltype] = ACTIONS(1383), - [anon_sym_DOLLARvatype] = ACTIONS(1383), - [sym_real_literal] = ACTIONS(1385), - }, - [639] = { - [sym_line_comment] = STATE(639), - [sym_doc_comment] = STATE(639), - [sym_block_comment] = STATE(639), - [sym_ident] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [anon_sym_BQUOTE] = ACTIONS(1413), - [sym_bytes_literal] = ACTIONS(1413), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1411), - [sym_at_ident] = ACTIONS(1413), - [sym_hash_ident] = ACTIONS(1413), - [sym_type_ident] = ACTIONS(1413), - [sym_ct_type_ident] = ACTIONS(1413), - [sym_const_ident] = ACTIONS(1411), - [sym_builtin] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_tlocal] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_var] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_defer] = ACTIONS(1411), - [anon_sym_assert] = ACTIONS(1411), - [anon_sym_nextcase] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_foreach] = ACTIONS(1411), - [anon_sym_foreach_r] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_int] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym_DOLLARassert] = ACTIONS(1411), - [anon_sym_DOLLARerror] = ACTIONS(1411), - [anon_sym_DOLLARecho] = ACTIONS(1411), - [anon_sym_DOLLARif] = ACTIONS(1411), - [anon_sym_DOLLARswitch] = ACTIONS(1411), - [anon_sym_DOLLARfor] = ACTIONS(1411), - [anon_sym_DOLLARendfor] = ACTIONS(1411), - [anon_sym_DOLLARforeach] = ACTIONS(1411), - [anon_sym_DOLLARalignof] = ACTIONS(1411), - [anon_sym_DOLLARextnameof] = ACTIONS(1411), - [anon_sym_DOLLARnameof] = ACTIONS(1411), - [anon_sym_DOLLARoffsetof] = ACTIONS(1411), - [anon_sym_DOLLARqnameof] = ACTIONS(1411), - [anon_sym_DOLLARvaconst] = ACTIONS(1411), - [anon_sym_DOLLARvaarg] = ACTIONS(1411), - [anon_sym_DOLLARvaref] = ACTIONS(1411), - [anon_sym_DOLLARvaexpr] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_DOLLARvacount] = ACTIONS(1411), - [anon_sym_DOLLAReval] = ACTIONS(1411), - [anon_sym_DOLLARis_const] = ACTIONS(1411), - [anon_sym_DOLLARsizeof] = ACTIONS(1411), - [anon_sym_DOLLARstringify] = ACTIONS(1411), - [anon_sym_DOLLARappend] = ACTIONS(1411), - [anon_sym_DOLLARconcat] = ACTIONS(1411), - [anon_sym_DOLLARdefined] = ACTIONS(1411), - [anon_sym_DOLLARembed] = ACTIONS(1411), - [anon_sym_DOLLARand] = ACTIONS(1411), - [anon_sym_DOLLARor] = ACTIONS(1411), - [anon_sym_DOLLARfeature] = ACTIONS(1411), - [anon_sym_DOLLARassignable] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_typeid] = ACTIONS(1411), - [anon_sym_LBRACE_PIPE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_bool] = ACTIONS(1411), - [anon_sym_char] = ACTIONS(1411), - [anon_sym_ichar] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_ushort] = ACTIONS(1411), - [anon_sym_uint] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_ulong] = ACTIONS(1411), - [anon_sym_int128] = ACTIONS(1411), - [anon_sym_uint128] = ACTIONS(1411), - [anon_sym_float] = ACTIONS(1411), - [anon_sym_double] = ACTIONS(1411), - [anon_sym_float16] = ACTIONS(1411), - [anon_sym_bfloat16] = ACTIONS(1411), - [anon_sym_float128] = ACTIONS(1411), - [anon_sym_iptr] = ACTIONS(1411), - [anon_sym_uptr] = ACTIONS(1411), - [anon_sym_isz] = ACTIONS(1411), - [anon_sym_usz] = ACTIONS(1411), - [anon_sym_anyfault] = ACTIONS(1411), - [anon_sym_any] = ACTIONS(1411), - [anon_sym_DOLLARtypeof] = ACTIONS(1411), - [anon_sym_DOLLARtypefrom] = ACTIONS(1411), - [anon_sym_DOLLARevaltype] = ACTIONS(1411), - [anon_sym_DOLLARvatype] = ACTIONS(1411), - [sym_real_literal] = ACTIONS(1413), - }, - [640] = { - [sym_line_comment] = STATE(640), - [sym_doc_comment] = STATE(640), - [sym_block_comment] = STATE(640), - [sym_ident] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [sym_bytes_literal] = ACTIONS(1417), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1415), - [sym_at_ident] = ACTIONS(1417), - [sym_hash_ident] = ACTIONS(1417), - [sym_type_ident] = ACTIONS(1417), - [sym_ct_type_ident] = ACTIONS(1417), - [sym_const_ident] = ACTIONS(1415), - [sym_builtin] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_tlocal] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_var] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_defer] = ACTIONS(1415), - [anon_sym_assert] = ACTIONS(1415), - [anon_sym_nextcase] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_foreach] = ACTIONS(1415), - [anon_sym_foreach_r] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_int] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym_DOLLARassert] = ACTIONS(1415), - [anon_sym_DOLLARerror] = ACTIONS(1415), - [anon_sym_DOLLARecho] = ACTIONS(1415), - [anon_sym_DOLLARif] = ACTIONS(1415), - [anon_sym_DOLLARswitch] = ACTIONS(1415), - [anon_sym_DOLLARfor] = ACTIONS(1415), - [anon_sym_DOLLARendfor] = ACTIONS(1415), - [anon_sym_DOLLARforeach] = ACTIONS(1415), - [anon_sym_DOLLARalignof] = ACTIONS(1415), - [anon_sym_DOLLARextnameof] = ACTIONS(1415), - [anon_sym_DOLLARnameof] = ACTIONS(1415), - [anon_sym_DOLLARoffsetof] = ACTIONS(1415), - [anon_sym_DOLLARqnameof] = ACTIONS(1415), - [anon_sym_DOLLARvaconst] = ACTIONS(1415), - [anon_sym_DOLLARvaarg] = ACTIONS(1415), - [anon_sym_DOLLARvaref] = ACTIONS(1415), - [anon_sym_DOLLARvaexpr] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_null] = ACTIONS(1415), - [anon_sym_DOLLARvacount] = ACTIONS(1415), - [anon_sym_DOLLAReval] = ACTIONS(1415), - [anon_sym_DOLLARis_const] = ACTIONS(1415), - [anon_sym_DOLLARsizeof] = ACTIONS(1415), - [anon_sym_DOLLARstringify] = ACTIONS(1415), - [anon_sym_DOLLARappend] = ACTIONS(1415), - [anon_sym_DOLLARconcat] = ACTIONS(1415), - [anon_sym_DOLLARdefined] = ACTIONS(1415), - [anon_sym_DOLLARembed] = ACTIONS(1415), - [anon_sym_DOLLARand] = ACTIONS(1415), - [anon_sym_DOLLARor] = ACTIONS(1415), - [anon_sym_DOLLARfeature] = ACTIONS(1415), - [anon_sym_DOLLARassignable] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_typeid] = ACTIONS(1415), - [anon_sym_LBRACE_PIPE] = ACTIONS(1417), - [anon_sym_void] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_ichar] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_ushort] = ACTIONS(1415), - [anon_sym_uint] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_ulong] = ACTIONS(1415), - [anon_sym_int128] = ACTIONS(1415), - [anon_sym_uint128] = ACTIONS(1415), - [anon_sym_float] = ACTIONS(1415), - [anon_sym_double] = ACTIONS(1415), - [anon_sym_float16] = ACTIONS(1415), - [anon_sym_bfloat16] = ACTIONS(1415), - [anon_sym_float128] = ACTIONS(1415), - [anon_sym_iptr] = ACTIONS(1415), - [anon_sym_uptr] = ACTIONS(1415), - [anon_sym_isz] = ACTIONS(1415), - [anon_sym_usz] = ACTIONS(1415), - [anon_sym_anyfault] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_DOLLARtypeof] = ACTIONS(1415), - [anon_sym_DOLLARtypefrom] = ACTIONS(1415), - [anon_sym_DOLLARevaltype] = ACTIONS(1415), - [anon_sym_DOLLARvatype] = ACTIONS(1415), - [sym_real_literal] = ACTIONS(1417), - }, - [641] = { - [sym_line_comment] = STATE(641), - [sym_doc_comment] = STATE(641), - [sym_block_comment] = STATE(641), - [sym_ident] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [sym_bytes_literal] = ACTIONS(1421), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1419), - [sym_at_ident] = ACTIONS(1421), - [sym_hash_ident] = ACTIONS(1421), - [sym_type_ident] = ACTIONS(1421), - [sym_ct_type_ident] = ACTIONS(1421), - [sym_const_ident] = ACTIONS(1419), - [sym_builtin] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_tlocal] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_var] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_defer] = ACTIONS(1419), - [anon_sym_assert] = ACTIONS(1419), - [anon_sym_nextcase] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_foreach] = ACTIONS(1419), - [anon_sym_foreach_r] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_int] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym_DOLLARassert] = ACTIONS(1419), - [anon_sym_DOLLARerror] = ACTIONS(1419), - [anon_sym_DOLLARecho] = ACTIONS(1419), - [anon_sym_DOLLARif] = ACTIONS(1419), - [anon_sym_DOLLARswitch] = ACTIONS(1419), - [anon_sym_DOLLARfor] = ACTIONS(1419), - [anon_sym_DOLLARendfor] = ACTIONS(1419), - [anon_sym_DOLLARforeach] = ACTIONS(1419), - [anon_sym_DOLLARalignof] = ACTIONS(1419), - [anon_sym_DOLLARextnameof] = ACTIONS(1419), - [anon_sym_DOLLARnameof] = ACTIONS(1419), - [anon_sym_DOLLARoffsetof] = ACTIONS(1419), - [anon_sym_DOLLARqnameof] = ACTIONS(1419), - [anon_sym_DOLLARvaconst] = ACTIONS(1419), - [anon_sym_DOLLARvaarg] = ACTIONS(1419), - [anon_sym_DOLLARvaref] = ACTIONS(1419), - [anon_sym_DOLLARvaexpr] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1419), - [anon_sym_DOLLARvacount] = ACTIONS(1419), - [anon_sym_DOLLAReval] = ACTIONS(1419), - [anon_sym_DOLLARis_const] = ACTIONS(1419), - [anon_sym_DOLLARsizeof] = ACTIONS(1419), - [anon_sym_DOLLARstringify] = ACTIONS(1419), - [anon_sym_DOLLARappend] = ACTIONS(1419), - [anon_sym_DOLLARconcat] = ACTIONS(1419), - [anon_sym_DOLLARdefined] = ACTIONS(1419), - [anon_sym_DOLLARembed] = ACTIONS(1419), - [anon_sym_DOLLARand] = ACTIONS(1419), - [anon_sym_DOLLARor] = ACTIONS(1419), - [anon_sym_DOLLARfeature] = ACTIONS(1419), - [anon_sym_DOLLARassignable] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_typeid] = ACTIONS(1419), - [anon_sym_LBRACE_PIPE] = ACTIONS(1421), - [anon_sym_void] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_ichar] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_ushort] = ACTIONS(1419), - [anon_sym_uint] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_ulong] = ACTIONS(1419), - [anon_sym_int128] = ACTIONS(1419), - [anon_sym_uint128] = ACTIONS(1419), - [anon_sym_float] = ACTIONS(1419), - [anon_sym_double] = ACTIONS(1419), - [anon_sym_float16] = ACTIONS(1419), - [anon_sym_bfloat16] = ACTIONS(1419), - [anon_sym_float128] = ACTIONS(1419), - [anon_sym_iptr] = ACTIONS(1419), - [anon_sym_uptr] = ACTIONS(1419), - [anon_sym_isz] = ACTIONS(1419), - [anon_sym_usz] = ACTIONS(1419), - [anon_sym_anyfault] = ACTIONS(1419), - [anon_sym_any] = ACTIONS(1419), - [anon_sym_DOLLARtypeof] = ACTIONS(1419), - [anon_sym_DOLLARtypefrom] = ACTIONS(1419), - [anon_sym_DOLLARevaltype] = ACTIONS(1419), - [anon_sym_DOLLARvatype] = ACTIONS(1419), - [sym_real_literal] = ACTIONS(1421), - }, - [642] = { - [sym_line_comment] = STATE(642), - [sym_doc_comment] = STATE(642), - [sym_block_comment] = STATE(642), - [sym_ident] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1433), - [sym_bytes_literal] = ACTIONS(1433), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1431), - [sym_at_ident] = ACTIONS(1433), - [sym_hash_ident] = ACTIONS(1433), - [sym_type_ident] = ACTIONS(1433), - [sym_ct_type_ident] = ACTIONS(1433), - [sym_const_ident] = ACTIONS(1431), - [sym_builtin] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_tlocal] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_var] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_defer] = ACTIONS(1431), - [anon_sym_assert] = ACTIONS(1431), - [anon_sym_nextcase] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_foreach] = ACTIONS(1431), - [anon_sym_foreach_r] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_int] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1431), - [anon_sym_DOLLARassert] = ACTIONS(1431), - [anon_sym_DOLLARerror] = ACTIONS(1431), - [anon_sym_DOLLARecho] = ACTIONS(1431), - [anon_sym_DOLLARif] = ACTIONS(1431), - [anon_sym_DOLLARswitch] = ACTIONS(1431), - [anon_sym_DOLLARfor] = ACTIONS(1431), - [anon_sym_DOLLARendfor] = ACTIONS(1431), - [anon_sym_DOLLARforeach] = ACTIONS(1431), - [anon_sym_DOLLARalignof] = ACTIONS(1431), - [anon_sym_DOLLARextnameof] = ACTIONS(1431), - [anon_sym_DOLLARnameof] = ACTIONS(1431), - [anon_sym_DOLLARoffsetof] = ACTIONS(1431), - [anon_sym_DOLLARqnameof] = ACTIONS(1431), - [anon_sym_DOLLARvaconst] = ACTIONS(1431), - [anon_sym_DOLLARvaarg] = ACTIONS(1431), - [anon_sym_DOLLARvaref] = ACTIONS(1431), - [anon_sym_DOLLARvaexpr] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_null] = ACTIONS(1431), - [anon_sym_DOLLARvacount] = ACTIONS(1431), - [anon_sym_DOLLAReval] = ACTIONS(1431), - [anon_sym_DOLLARis_const] = ACTIONS(1431), - [anon_sym_DOLLARsizeof] = ACTIONS(1431), - [anon_sym_DOLLARstringify] = ACTIONS(1431), - [anon_sym_DOLLARappend] = ACTIONS(1431), - [anon_sym_DOLLARconcat] = ACTIONS(1431), - [anon_sym_DOLLARdefined] = ACTIONS(1431), - [anon_sym_DOLLARembed] = ACTIONS(1431), - [anon_sym_DOLLARand] = ACTIONS(1431), - [anon_sym_DOLLARor] = ACTIONS(1431), - [anon_sym_DOLLARfeature] = ACTIONS(1431), - [anon_sym_DOLLARassignable] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_typeid] = ACTIONS(1431), - [anon_sym_LBRACE_PIPE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_ichar] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_ushort] = ACTIONS(1431), - [anon_sym_uint] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_ulong] = ACTIONS(1431), - [anon_sym_int128] = ACTIONS(1431), - [anon_sym_uint128] = ACTIONS(1431), - [anon_sym_float] = ACTIONS(1431), - [anon_sym_double] = ACTIONS(1431), - [anon_sym_float16] = ACTIONS(1431), - [anon_sym_bfloat16] = ACTIONS(1431), - [anon_sym_float128] = ACTIONS(1431), - [anon_sym_iptr] = ACTIONS(1431), - [anon_sym_uptr] = ACTIONS(1431), - [anon_sym_isz] = ACTIONS(1431), - [anon_sym_usz] = ACTIONS(1431), - [anon_sym_anyfault] = ACTIONS(1431), - [anon_sym_any] = ACTIONS(1431), - [anon_sym_DOLLARtypeof] = ACTIONS(1431), - [anon_sym_DOLLARtypefrom] = ACTIONS(1431), - [anon_sym_DOLLARevaltype] = ACTIONS(1431), - [anon_sym_DOLLARvatype] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - }, - [643] = { - [sym_line_comment] = STATE(643), - [sym_doc_comment] = STATE(643), - [sym_block_comment] = STATE(643), - [sym_ident] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_BQUOTE] = ACTIONS(1437), - [sym_bytes_literal] = ACTIONS(1437), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1435), - [sym_at_ident] = ACTIONS(1437), - [sym_hash_ident] = ACTIONS(1437), - [sym_type_ident] = ACTIONS(1437), - [sym_ct_type_ident] = ACTIONS(1437), - [sym_const_ident] = ACTIONS(1435), - [sym_builtin] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_tlocal] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_defer] = ACTIONS(1435), - [anon_sym_assert] = ACTIONS(1435), - [anon_sym_nextcase] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_foreach] = ACTIONS(1435), - [anon_sym_foreach_r] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_int] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1435), - [anon_sym_DOLLARassert] = ACTIONS(1435), - [anon_sym_DOLLARerror] = ACTIONS(1435), - [anon_sym_DOLLARecho] = ACTIONS(1435), - [anon_sym_DOLLARif] = ACTIONS(1435), - [anon_sym_DOLLARswitch] = ACTIONS(1435), - [anon_sym_DOLLARfor] = ACTIONS(1435), - [anon_sym_DOLLARendfor] = ACTIONS(1435), - [anon_sym_DOLLARforeach] = ACTIONS(1435), - [anon_sym_DOLLARalignof] = ACTIONS(1435), - [anon_sym_DOLLARextnameof] = ACTIONS(1435), - [anon_sym_DOLLARnameof] = ACTIONS(1435), - [anon_sym_DOLLARoffsetof] = ACTIONS(1435), - [anon_sym_DOLLARqnameof] = ACTIONS(1435), - [anon_sym_DOLLARvaconst] = ACTIONS(1435), - [anon_sym_DOLLARvaarg] = ACTIONS(1435), - [anon_sym_DOLLARvaref] = ACTIONS(1435), - [anon_sym_DOLLARvaexpr] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), - [anon_sym_null] = ACTIONS(1435), - [anon_sym_DOLLARvacount] = ACTIONS(1435), - [anon_sym_DOLLAReval] = ACTIONS(1435), - [anon_sym_DOLLARis_const] = ACTIONS(1435), - [anon_sym_DOLLARsizeof] = ACTIONS(1435), - [anon_sym_DOLLARstringify] = ACTIONS(1435), - [anon_sym_DOLLARappend] = ACTIONS(1435), - [anon_sym_DOLLARconcat] = ACTIONS(1435), - [anon_sym_DOLLARdefined] = ACTIONS(1435), - [anon_sym_DOLLARembed] = ACTIONS(1435), - [anon_sym_DOLLARand] = ACTIONS(1435), - [anon_sym_DOLLARor] = ACTIONS(1435), - [anon_sym_DOLLARfeature] = ACTIONS(1435), - [anon_sym_DOLLARassignable] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_typeid] = ACTIONS(1435), - [anon_sym_LBRACE_PIPE] = ACTIONS(1437), - [anon_sym_void] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_ichar] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_ushort] = ACTIONS(1435), - [anon_sym_uint] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_ulong] = ACTIONS(1435), - [anon_sym_int128] = ACTIONS(1435), - [anon_sym_uint128] = ACTIONS(1435), - [anon_sym_float] = ACTIONS(1435), - [anon_sym_double] = ACTIONS(1435), - [anon_sym_float16] = ACTIONS(1435), - [anon_sym_bfloat16] = ACTIONS(1435), - [anon_sym_float128] = ACTIONS(1435), - [anon_sym_iptr] = ACTIONS(1435), - [anon_sym_uptr] = ACTIONS(1435), - [anon_sym_isz] = ACTIONS(1435), - [anon_sym_usz] = ACTIONS(1435), - [anon_sym_anyfault] = ACTIONS(1435), - [anon_sym_any] = ACTIONS(1435), - [anon_sym_DOLLARtypeof] = ACTIONS(1435), - [anon_sym_DOLLARtypefrom] = ACTIONS(1435), - [anon_sym_DOLLARevaltype] = ACTIONS(1435), - [anon_sym_DOLLARvatype] = ACTIONS(1435), - [sym_real_literal] = ACTIONS(1437), - }, - [644] = { - [sym_line_comment] = STATE(644), - [sym_doc_comment] = STATE(644), - [sym_block_comment] = STATE(644), - [sym_ident] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [anon_sym_BQUOTE] = ACTIONS(1441), - [sym_bytes_literal] = ACTIONS(1441), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1439), - [sym_at_ident] = ACTIONS(1441), - [sym_hash_ident] = ACTIONS(1441), - [sym_type_ident] = ACTIONS(1441), - [sym_ct_type_ident] = ACTIONS(1441), - [sym_const_ident] = ACTIONS(1439), - [sym_builtin] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_tlocal] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_var] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_defer] = ACTIONS(1439), - [anon_sym_assert] = ACTIONS(1439), - [anon_sym_nextcase] = ACTIONS(1439), - [anon_sym_switch] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_foreach] = ACTIONS(1439), - [anon_sym_foreach_r] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_do] = ACTIONS(1439), - [anon_sym_int] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1439), - [anon_sym_DOLLARassert] = ACTIONS(1439), - [anon_sym_DOLLARerror] = ACTIONS(1439), - [anon_sym_DOLLARecho] = ACTIONS(1439), - [anon_sym_DOLLARif] = ACTIONS(1439), - [anon_sym_DOLLARswitch] = ACTIONS(1439), - [anon_sym_DOLLARfor] = ACTIONS(1439), - [anon_sym_DOLLARendfor] = ACTIONS(1439), - [anon_sym_DOLLARforeach] = ACTIONS(1439), - [anon_sym_DOLLARalignof] = ACTIONS(1439), - [anon_sym_DOLLARextnameof] = ACTIONS(1439), - [anon_sym_DOLLARnameof] = ACTIONS(1439), - [anon_sym_DOLLARoffsetof] = ACTIONS(1439), - [anon_sym_DOLLARqnameof] = ACTIONS(1439), - [anon_sym_DOLLARvaconst] = ACTIONS(1439), - [anon_sym_DOLLARvaarg] = ACTIONS(1439), - [anon_sym_DOLLARvaref] = ACTIONS(1439), - [anon_sym_DOLLARvaexpr] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_DOLLARvacount] = ACTIONS(1439), - [anon_sym_DOLLAReval] = ACTIONS(1439), - [anon_sym_DOLLARis_const] = ACTIONS(1439), - [anon_sym_DOLLARsizeof] = ACTIONS(1439), - [anon_sym_DOLLARstringify] = ACTIONS(1439), - [anon_sym_DOLLARappend] = ACTIONS(1439), - [anon_sym_DOLLARconcat] = ACTIONS(1439), - [anon_sym_DOLLARdefined] = ACTIONS(1439), - [anon_sym_DOLLARembed] = ACTIONS(1439), - [anon_sym_DOLLARand] = ACTIONS(1439), - [anon_sym_DOLLARor] = ACTIONS(1439), - [anon_sym_DOLLARfeature] = ACTIONS(1439), - [anon_sym_DOLLARassignable] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_typeid] = ACTIONS(1439), - [anon_sym_LBRACE_PIPE] = ACTIONS(1441), - [anon_sym_void] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_ichar] = ACTIONS(1439), - [anon_sym_short] = ACTIONS(1439), - [anon_sym_ushort] = ACTIONS(1439), - [anon_sym_uint] = ACTIONS(1439), - [anon_sym_long] = ACTIONS(1439), - [anon_sym_ulong] = ACTIONS(1439), - [anon_sym_int128] = ACTIONS(1439), - [anon_sym_uint128] = ACTIONS(1439), - [anon_sym_float] = ACTIONS(1439), - [anon_sym_double] = ACTIONS(1439), - [anon_sym_float16] = ACTIONS(1439), - [anon_sym_bfloat16] = ACTIONS(1439), - [anon_sym_float128] = ACTIONS(1439), - [anon_sym_iptr] = ACTIONS(1439), - [anon_sym_uptr] = ACTIONS(1439), - [anon_sym_isz] = ACTIONS(1439), - [anon_sym_usz] = ACTIONS(1439), - [anon_sym_anyfault] = ACTIONS(1439), - [anon_sym_any] = ACTIONS(1439), - [anon_sym_DOLLARtypeof] = ACTIONS(1439), - [anon_sym_DOLLARtypefrom] = ACTIONS(1439), - [anon_sym_DOLLARevaltype] = ACTIONS(1439), - [anon_sym_DOLLARvatype] = ACTIONS(1439), - [sym_real_literal] = ACTIONS(1441), - }, - [645] = { - [sym_line_comment] = STATE(645), - [sym_doc_comment] = STATE(645), - [sym_block_comment] = STATE(645), - [sym_ident] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_BQUOTE] = ACTIONS(1445), - [sym_bytes_literal] = ACTIONS(1445), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1443), - [sym_at_ident] = ACTIONS(1445), - [sym_hash_ident] = ACTIONS(1445), - [sym_type_ident] = ACTIONS(1445), - [sym_ct_type_ident] = ACTIONS(1445), - [sym_const_ident] = ACTIONS(1443), - [sym_builtin] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_tlocal] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_var] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_defer] = ACTIONS(1443), - [anon_sym_assert] = ACTIONS(1443), - [anon_sym_nextcase] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_foreach] = ACTIONS(1443), - [anon_sym_foreach_r] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_int] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_asm] = ACTIONS(1443), - [anon_sym_DOLLARassert] = ACTIONS(1443), - [anon_sym_DOLLARerror] = ACTIONS(1443), - [anon_sym_DOLLARecho] = ACTIONS(1443), - [anon_sym_DOLLARif] = ACTIONS(1443), - [anon_sym_DOLLARswitch] = ACTIONS(1443), - [anon_sym_DOLLARfor] = ACTIONS(1443), - [anon_sym_DOLLARendfor] = ACTIONS(1443), - [anon_sym_DOLLARforeach] = ACTIONS(1443), - [anon_sym_DOLLARalignof] = ACTIONS(1443), - [anon_sym_DOLLARextnameof] = ACTIONS(1443), - [anon_sym_DOLLARnameof] = ACTIONS(1443), - [anon_sym_DOLLARoffsetof] = ACTIONS(1443), - [anon_sym_DOLLARqnameof] = ACTIONS(1443), - [anon_sym_DOLLARvaconst] = ACTIONS(1443), - [anon_sym_DOLLARvaarg] = ACTIONS(1443), - [anon_sym_DOLLARvaref] = ACTIONS(1443), - [anon_sym_DOLLARvaexpr] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_null] = ACTIONS(1443), - [anon_sym_DOLLARvacount] = ACTIONS(1443), - [anon_sym_DOLLAReval] = ACTIONS(1443), - [anon_sym_DOLLARis_const] = ACTIONS(1443), - [anon_sym_DOLLARsizeof] = ACTIONS(1443), - [anon_sym_DOLLARstringify] = ACTIONS(1443), - [anon_sym_DOLLARappend] = ACTIONS(1443), - [anon_sym_DOLLARconcat] = ACTIONS(1443), - [anon_sym_DOLLARdefined] = ACTIONS(1443), - [anon_sym_DOLLARembed] = ACTIONS(1443), - [anon_sym_DOLLARand] = ACTIONS(1443), - [anon_sym_DOLLARor] = ACTIONS(1443), - [anon_sym_DOLLARfeature] = ACTIONS(1443), - [anon_sym_DOLLARassignable] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_typeid] = ACTIONS(1443), - [anon_sym_LBRACE_PIPE] = ACTIONS(1445), - [anon_sym_void] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_ichar] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [anon_sym_ushort] = ACTIONS(1443), - [anon_sym_uint] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_ulong] = ACTIONS(1443), - [anon_sym_int128] = ACTIONS(1443), - [anon_sym_uint128] = ACTIONS(1443), - [anon_sym_float] = ACTIONS(1443), - [anon_sym_double] = ACTIONS(1443), - [anon_sym_float16] = ACTIONS(1443), - [anon_sym_bfloat16] = ACTIONS(1443), - [anon_sym_float128] = ACTIONS(1443), - [anon_sym_iptr] = ACTIONS(1443), - [anon_sym_uptr] = ACTIONS(1443), - [anon_sym_isz] = ACTIONS(1443), - [anon_sym_usz] = ACTIONS(1443), - [anon_sym_anyfault] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_DOLLARtypeof] = ACTIONS(1443), - [anon_sym_DOLLARtypefrom] = ACTIONS(1443), - [anon_sym_DOLLARevaltype] = ACTIONS(1443), - [anon_sym_DOLLARvatype] = ACTIONS(1443), - [sym_real_literal] = ACTIONS(1445), - }, - [646] = { - [sym_line_comment] = STATE(646), - [sym_doc_comment] = STATE(646), - [sym_block_comment] = STATE(646), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARendfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARappend] = ACTIONS(1487), - [anon_sym_DOLLARconcat] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARendfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, - [647] = { - [sym_line_comment] = STATE(647), - [sym_doc_comment] = STATE(647), - [sym_block_comment] = STATE(647), - [sym_ident] = ACTIONS(1621), - [sym_integer_literal] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [anon_sym_BQUOTE] = ACTIONS(1623), - [sym_bytes_literal] = ACTIONS(1623), + [601] = { + [sym_line_comment] = STATE(601), + [sym_doc_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1621), - [sym_at_ident] = ACTIONS(1623), - [sym_hash_ident] = ACTIONS(1623), - [sym_type_ident] = ACTIONS(1623), - [sym_ct_type_ident] = ACTIONS(1623), - [sym_const_ident] = ACTIONS(1621), - [sym_builtin] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_tlocal] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_var] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_defer] = ACTIONS(1621), - [anon_sym_assert] = ACTIONS(1621), - [anon_sym_nextcase] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_foreach] = ACTIONS(1621), - [anon_sym_foreach_r] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_int] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_asm] = ACTIONS(1621), - [anon_sym_DOLLARassert] = ACTIONS(1621), - [anon_sym_DOLLARerror] = ACTIONS(1621), - [anon_sym_DOLLARecho] = ACTIONS(1621), - [anon_sym_DOLLARif] = ACTIONS(1621), - [anon_sym_DOLLARswitch] = ACTIONS(1621), - [anon_sym_DOLLARfor] = ACTIONS(1621), - [anon_sym_DOLLARendfor] = ACTIONS(1621), - [anon_sym_DOLLARforeach] = ACTIONS(1621), - [anon_sym_DOLLARalignof] = ACTIONS(1621), - [anon_sym_DOLLARextnameof] = ACTIONS(1621), - [anon_sym_DOLLARnameof] = ACTIONS(1621), - [anon_sym_DOLLARoffsetof] = ACTIONS(1621), - [anon_sym_DOLLARqnameof] = ACTIONS(1621), - [anon_sym_DOLLARvaconst] = ACTIONS(1621), - [anon_sym_DOLLARvaarg] = ACTIONS(1621), - [anon_sym_DOLLARvaref] = ACTIONS(1621), - [anon_sym_DOLLARvaexpr] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1621), - [anon_sym_false] = ACTIONS(1621), - [anon_sym_null] = ACTIONS(1621), - [anon_sym_DOLLARvacount] = ACTIONS(1621), - [anon_sym_DOLLAReval] = ACTIONS(1621), - [anon_sym_DOLLARis_const] = ACTIONS(1621), - [anon_sym_DOLLARsizeof] = ACTIONS(1621), - [anon_sym_DOLLARstringify] = ACTIONS(1621), - [anon_sym_DOLLARappend] = ACTIONS(1621), - [anon_sym_DOLLARconcat] = ACTIONS(1621), - [anon_sym_DOLLARdefined] = ACTIONS(1621), - [anon_sym_DOLLARembed] = ACTIONS(1621), - [anon_sym_DOLLARand] = ACTIONS(1621), - [anon_sym_DOLLARor] = ACTIONS(1621), - [anon_sym_DOLLARfeature] = ACTIONS(1621), - [anon_sym_DOLLARassignable] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_typeid] = ACTIONS(1621), - [anon_sym_LBRACE_PIPE] = ACTIONS(1623), - [anon_sym_void] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_char] = ACTIONS(1621), - [anon_sym_ichar] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [anon_sym_ushort] = ACTIONS(1621), - [anon_sym_uint] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_ulong] = ACTIONS(1621), - [anon_sym_int128] = ACTIONS(1621), - [anon_sym_uint128] = ACTIONS(1621), - [anon_sym_float] = ACTIONS(1621), - [anon_sym_double] = ACTIONS(1621), - [anon_sym_float16] = ACTIONS(1621), - [anon_sym_bfloat16] = ACTIONS(1621), - [anon_sym_float128] = ACTIONS(1621), - [anon_sym_iptr] = ACTIONS(1621), - [anon_sym_uptr] = ACTIONS(1621), - [anon_sym_isz] = ACTIONS(1621), - [anon_sym_usz] = ACTIONS(1621), - [anon_sym_anyfault] = ACTIONS(1621), - [anon_sym_any] = ACTIONS(1621), - [anon_sym_DOLLARtypeof] = ACTIONS(1621), - [anon_sym_DOLLARtypefrom] = ACTIONS(1621), - [anon_sym_DOLLARevaltype] = ACTIONS(1621), - [anon_sym_DOLLARvatype] = ACTIONS(1621), - [sym_real_literal] = ACTIONS(1623), - }, - [648] = { - [sym_line_comment] = STATE(648), - [sym_doc_comment] = STATE(648), - [sym_block_comment] = STATE(648), - [sym_ident] = ACTIONS(1399), - [sym_integer_literal] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_BQUOTE] = ACTIONS(1401), - [sym_bytes_literal] = ACTIONS(1401), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1399), - [sym_at_ident] = ACTIONS(1401), - [sym_hash_ident] = ACTIONS(1401), - [sym_type_ident] = ACTIONS(1401), - [sym_ct_type_ident] = ACTIONS(1401), - [sym_const_ident] = ACTIONS(1399), - [sym_builtin] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_static] = ACTIONS(1399), - [anon_sym_tlocal] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_var] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_defer] = ACTIONS(1399), - [anon_sym_assert] = ACTIONS(1399), - [anon_sym_nextcase] = ACTIONS(1399), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_foreach] = ACTIONS(1399), - [anon_sym_foreach_r] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_int] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_asm] = ACTIONS(1399), - [anon_sym_DOLLARassert] = ACTIONS(1399), - [anon_sym_DOLLARerror] = ACTIONS(1399), - [anon_sym_DOLLARecho] = ACTIONS(1399), - [anon_sym_DOLLARif] = ACTIONS(1399), - [anon_sym_DOLLARswitch] = ACTIONS(1399), - [anon_sym_DOLLARfor] = ACTIONS(1399), - [anon_sym_DOLLARendfor] = ACTIONS(1399), - [anon_sym_DOLLARforeach] = ACTIONS(1399), - [anon_sym_DOLLARalignof] = ACTIONS(1399), - [anon_sym_DOLLARextnameof] = ACTIONS(1399), - [anon_sym_DOLLARnameof] = ACTIONS(1399), - [anon_sym_DOLLARoffsetof] = ACTIONS(1399), - [anon_sym_DOLLARqnameof] = ACTIONS(1399), - [anon_sym_DOLLARvaconst] = ACTIONS(1399), - [anon_sym_DOLLARvaarg] = ACTIONS(1399), - [anon_sym_DOLLARvaref] = ACTIONS(1399), - [anon_sym_DOLLARvaexpr] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_DOLLARvacount] = ACTIONS(1399), - [anon_sym_DOLLAReval] = ACTIONS(1399), - [anon_sym_DOLLARis_const] = ACTIONS(1399), - [anon_sym_DOLLARsizeof] = ACTIONS(1399), - [anon_sym_DOLLARstringify] = ACTIONS(1399), - [anon_sym_DOLLARappend] = ACTIONS(1399), - [anon_sym_DOLLARconcat] = ACTIONS(1399), - [anon_sym_DOLLARdefined] = ACTIONS(1399), - [anon_sym_DOLLARembed] = ACTIONS(1399), - [anon_sym_DOLLARand] = ACTIONS(1399), - [anon_sym_DOLLARor] = ACTIONS(1399), - [anon_sym_DOLLARfeature] = ACTIONS(1399), - [anon_sym_DOLLARassignable] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_typeid] = ACTIONS(1399), - [anon_sym_LBRACE_PIPE] = ACTIONS(1401), - [anon_sym_void] = ACTIONS(1399), - [anon_sym_bool] = ACTIONS(1399), - [anon_sym_char] = ACTIONS(1399), - [anon_sym_ichar] = ACTIONS(1399), - [anon_sym_short] = ACTIONS(1399), - [anon_sym_ushort] = ACTIONS(1399), - [anon_sym_uint] = ACTIONS(1399), - [anon_sym_long] = ACTIONS(1399), - [anon_sym_ulong] = ACTIONS(1399), - [anon_sym_int128] = ACTIONS(1399), - [anon_sym_uint128] = ACTIONS(1399), - [anon_sym_float] = ACTIONS(1399), - [anon_sym_double] = ACTIONS(1399), - [anon_sym_float16] = ACTIONS(1399), - [anon_sym_bfloat16] = ACTIONS(1399), - [anon_sym_float128] = ACTIONS(1399), - [anon_sym_iptr] = ACTIONS(1399), - [anon_sym_uptr] = ACTIONS(1399), - [anon_sym_isz] = ACTIONS(1399), - [anon_sym_usz] = ACTIONS(1399), - [anon_sym_anyfault] = ACTIONS(1399), - [anon_sym_any] = ACTIONS(1399), - [anon_sym_DOLLARtypeof] = ACTIONS(1399), - [anon_sym_DOLLARtypefrom] = ACTIONS(1399), - [anon_sym_DOLLARevaltype] = ACTIONS(1399), - [anon_sym_DOLLARvatype] = ACTIONS(1399), - [sym_real_literal] = ACTIONS(1401), - }, - [649] = { - [sym_line_comment] = STATE(649), - [sym_doc_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [sym_ident] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_BQUOTE] = ACTIONS(1425), - [sym_bytes_literal] = ACTIONS(1425), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1423), - [sym_at_ident] = ACTIONS(1425), - [sym_hash_ident] = ACTIONS(1425), - [sym_type_ident] = ACTIONS(1425), - [sym_ct_type_ident] = ACTIONS(1425), - [sym_const_ident] = ACTIONS(1423), - [sym_builtin] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_tlocal] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_var] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_defer] = ACTIONS(1423), - [anon_sym_assert] = ACTIONS(1423), - [anon_sym_nextcase] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_foreach] = ACTIONS(1423), - [anon_sym_foreach_r] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_int] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1423), - [anon_sym_DOLLARassert] = ACTIONS(1423), - [anon_sym_DOLLARerror] = ACTIONS(1423), - [anon_sym_DOLLARecho] = ACTIONS(1423), - [anon_sym_DOLLARif] = ACTIONS(1423), - [anon_sym_DOLLARswitch] = ACTIONS(1423), - [anon_sym_DOLLARfor] = ACTIONS(1423), - [anon_sym_DOLLARendfor] = ACTIONS(1423), - [anon_sym_DOLLARforeach] = ACTIONS(1423), - [anon_sym_DOLLARalignof] = ACTIONS(1423), - [anon_sym_DOLLARextnameof] = ACTIONS(1423), - [anon_sym_DOLLARnameof] = ACTIONS(1423), - [anon_sym_DOLLARoffsetof] = ACTIONS(1423), - [anon_sym_DOLLARqnameof] = ACTIONS(1423), - [anon_sym_DOLLARvaconst] = ACTIONS(1423), - [anon_sym_DOLLARvaarg] = ACTIONS(1423), - [anon_sym_DOLLARvaref] = ACTIONS(1423), - [anon_sym_DOLLARvaexpr] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_null] = ACTIONS(1423), - [anon_sym_DOLLARvacount] = ACTIONS(1423), - [anon_sym_DOLLAReval] = ACTIONS(1423), - [anon_sym_DOLLARis_const] = ACTIONS(1423), - [anon_sym_DOLLARsizeof] = ACTIONS(1423), - [anon_sym_DOLLARstringify] = ACTIONS(1423), - [anon_sym_DOLLARappend] = ACTIONS(1423), - [anon_sym_DOLLARconcat] = ACTIONS(1423), - [anon_sym_DOLLARdefined] = ACTIONS(1423), - [anon_sym_DOLLARembed] = ACTIONS(1423), - [anon_sym_DOLLARand] = ACTIONS(1423), - [anon_sym_DOLLARor] = ACTIONS(1423), - [anon_sym_DOLLARfeature] = ACTIONS(1423), - [anon_sym_DOLLARassignable] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_typeid] = ACTIONS(1423), - [anon_sym_LBRACE_PIPE] = ACTIONS(1425), - [anon_sym_void] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_ichar] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [anon_sym_ushort] = ACTIONS(1423), - [anon_sym_uint] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_ulong] = ACTIONS(1423), - [anon_sym_int128] = ACTIONS(1423), - [anon_sym_uint128] = ACTIONS(1423), - [anon_sym_float] = ACTIONS(1423), - [anon_sym_double] = ACTIONS(1423), - [anon_sym_float16] = ACTIONS(1423), - [anon_sym_bfloat16] = ACTIONS(1423), - [anon_sym_float128] = ACTIONS(1423), - [anon_sym_iptr] = ACTIONS(1423), - [anon_sym_uptr] = ACTIONS(1423), - [anon_sym_isz] = ACTIONS(1423), - [anon_sym_usz] = ACTIONS(1423), - [anon_sym_anyfault] = ACTIONS(1423), - [anon_sym_any] = ACTIONS(1423), - [anon_sym_DOLLARtypeof] = ACTIONS(1423), - [anon_sym_DOLLARtypefrom] = ACTIONS(1423), - [anon_sym_DOLLARevaltype] = ACTIONS(1423), - [anon_sym_DOLLARvatype] = ACTIONS(1423), - [sym_real_literal] = ACTIONS(1425), - }, - [650] = { - [sym_line_comment] = STATE(650), - [sym_doc_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [sym_ident] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_BQUOTE] = ACTIONS(1381), - [sym_bytes_literal] = ACTIONS(1381), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1379), - [sym_at_ident] = ACTIONS(1381), - [sym_hash_ident] = ACTIONS(1381), - [sym_type_ident] = ACTIONS(1381), - [sym_ct_type_ident] = ACTIONS(1381), - [sym_const_ident] = ACTIONS(1379), - [sym_builtin] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_tlocal] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_fn] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_var] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_defer] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_nextcase] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_foreach] = ACTIONS(1379), - [anon_sym_foreach_r] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_int] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym_DOLLARassert] = ACTIONS(1379), - [anon_sym_DOLLARerror] = ACTIONS(1379), - [anon_sym_DOLLARecho] = ACTIONS(1379), - [anon_sym_DOLLARif] = ACTIONS(1379), - [anon_sym_DOLLARswitch] = ACTIONS(1379), - [anon_sym_DOLLARfor] = ACTIONS(1379), - [anon_sym_DOLLARendfor] = ACTIONS(1379), - [anon_sym_DOLLARforeach] = ACTIONS(1379), - [anon_sym_DOLLARalignof] = ACTIONS(1379), - [anon_sym_DOLLARextnameof] = ACTIONS(1379), - [anon_sym_DOLLARnameof] = ACTIONS(1379), - [anon_sym_DOLLARoffsetof] = ACTIONS(1379), - [anon_sym_DOLLARqnameof] = ACTIONS(1379), - [anon_sym_DOLLARvaconst] = ACTIONS(1379), - [anon_sym_DOLLARvaarg] = ACTIONS(1379), - [anon_sym_DOLLARvaref] = ACTIONS(1379), - [anon_sym_DOLLARvaexpr] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1379), - [anon_sym_false] = ACTIONS(1379), - [anon_sym_null] = ACTIONS(1379), - [anon_sym_DOLLARvacount] = ACTIONS(1379), - [anon_sym_DOLLAReval] = ACTIONS(1379), - [anon_sym_DOLLARis_const] = ACTIONS(1379), - [anon_sym_DOLLARsizeof] = ACTIONS(1379), - [anon_sym_DOLLARstringify] = ACTIONS(1379), - [anon_sym_DOLLARappend] = ACTIONS(1379), - [anon_sym_DOLLARconcat] = ACTIONS(1379), - [anon_sym_DOLLARdefined] = ACTIONS(1379), - [anon_sym_DOLLARembed] = ACTIONS(1379), - [anon_sym_DOLLARand] = ACTIONS(1379), - [anon_sym_DOLLARor] = ACTIONS(1379), - [anon_sym_DOLLARfeature] = ACTIONS(1379), - [anon_sym_DOLLARassignable] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_typeid] = ACTIONS(1379), - [anon_sym_LBRACE_PIPE] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1379), - [anon_sym_bool] = ACTIONS(1379), - [anon_sym_char] = ACTIONS(1379), - [anon_sym_ichar] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_ushort] = ACTIONS(1379), - [anon_sym_uint] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_ulong] = ACTIONS(1379), - [anon_sym_int128] = ACTIONS(1379), - [anon_sym_uint128] = ACTIONS(1379), - [anon_sym_float] = ACTIONS(1379), - [anon_sym_double] = ACTIONS(1379), - [anon_sym_float16] = ACTIONS(1379), - [anon_sym_bfloat16] = ACTIONS(1379), - [anon_sym_float128] = ACTIONS(1379), - [anon_sym_iptr] = ACTIONS(1379), - [anon_sym_uptr] = ACTIONS(1379), - [anon_sym_isz] = ACTIONS(1379), - [anon_sym_usz] = ACTIONS(1379), - [anon_sym_anyfault] = ACTIONS(1379), - [anon_sym_any] = ACTIONS(1379), - [anon_sym_DOLLARtypeof] = ACTIONS(1379), - [anon_sym_DOLLARtypefrom] = ACTIONS(1379), - [anon_sym_DOLLARevaltype] = ACTIONS(1379), - [anon_sym_DOLLARvatype] = ACTIONS(1379), - [sym_real_literal] = ACTIONS(1381), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARendfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, - [651] = { - [sym_line_comment] = STATE(651), - [sym_doc_comment] = STATE(651), - [sym_block_comment] = STATE(651), - [sym_ident] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1619), - [anon_sym_SQUOTE] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [anon_sym_BQUOTE] = ACTIONS(1619), - [sym_bytes_literal] = ACTIONS(1619), + [602] = { + [sym_line_comment] = STATE(602), + [sym_doc_comment] = STATE(602), + [sym_block_comment] = STATE(602), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1617), - [sym_at_ident] = ACTIONS(1619), - [sym_hash_ident] = ACTIONS(1619), - [sym_type_ident] = ACTIONS(1619), - [sym_ct_type_ident] = ACTIONS(1619), - [sym_const_ident] = ACTIONS(1617), - [sym_builtin] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_tlocal] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_var] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_defer] = ACTIONS(1617), - [anon_sym_assert] = ACTIONS(1617), - [anon_sym_nextcase] = ACTIONS(1617), - [anon_sym_switch] = ACTIONS(1617), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_foreach] = ACTIONS(1617), - [anon_sym_foreach_r] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_do] = ACTIONS(1617), - [anon_sym_int] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1617), - [anon_sym_DOLLARassert] = ACTIONS(1617), - [anon_sym_DOLLARerror] = ACTIONS(1617), - [anon_sym_DOLLARecho] = ACTIONS(1617), - [anon_sym_DOLLARif] = ACTIONS(1617), - [anon_sym_DOLLARswitch] = ACTIONS(1617), - [anon_sym_DOLLARfor] = ACTIONS(1617), - [anon_sym_DOLLARforeach] = ACTIONS(1617), - [anon_sym_DOLLARendforeach] = ACTIONS(1617), - [anon_sym_DOLLARalignof] = ACTIONS(1617), - [anon_sym_DOLLARextnameof] = ACTIONS(1617), - [anon_sym_DOLLARnameof] = ACTIONS(1617), - [anon_sym_DOLLARoffsetof] = ACTIONS(1617), - [anon_sym_DOLLARqnameof] = ACTIONS(1617), - [anon_sym_DOLLARvaconst] = ACTIONS(1617), - [anon_sym_DOLLARvaarg] = ACTIONS(1617), - [anon_sym_DOLLARvaref] = ACTIONS(1617), - [anon_sym_DOLLARvaexpr] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [anon_sym_DOLLARvacount] = ACTIONS(1617), - [anon_sym_DOLLAReval] = ACTIONS(1617), - [anon_sym_DOLLARis_const] = ACTIONS(1617), - [anon_sym_DOLLARsizeof] = ACTIONS(1617), - [anon_sym_DOLLARstringify] = ACTIONS(1617), - [anon_sym_DOLLARappend] = ACTIONS(1617), - [anon_sym_DOLLARconcat] = ACTIONS(1617), - [anon_sym_DOLLARdefined] = ACTIONS(1617), - [anon_sym_DOLLARembed] = ACTIONS(1617), - [anon_sym_DOLLARand] = ACTIONS(1617), - [anon_sym_DOLLARor] = ACTIONS(1617), - [anon_sym_DOLLARfeature] = ACTIONS(1617), - [anon_sym_DOLLARassignable] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_TILDE] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1619), - [anon_sym_DASH_DASH] = ACTIONS(1619), - [anon_sym_typeid] = ACTIONS(1617), - [anon_sym_LBRACE_PIPE] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_char] = ACTIONS(1617), - [anon_sym_ichar] = ACTIONS(1617), - [anon_sym_short] = ACTIONS(1617), - [anon_sym_ushort] = ACTIONS(1617), - [anon_sym_uint] = ACTIONS(1617), - [anon_sym_long] = ACTIONS(1617), - [anon_sym_ulong] = ACTIONS(1617), - [anon_sym_int128] = ACTIONS(1617), - [anon_sym_uint128] = ACTIONS(1617), - [anon_sym_float] = ACTIONS(1617), - [anon_sym_double] = ACTIONS(1617), - [anon_sym_float16] = ACTIONS(1617), - [anon_sym_bfloat16] = ACTIONS(1617), - [anon_sym_float128] = ACTIONS(1617), - [anon_sym_iptr] = ACTIONS(1617), - [anon_sym_uptr] = ACTIONS(1617), - [anon_sym_isz] = ACTIONS(1617), - [anon_sym_usz] = ACTIONS(1617), - [anon_sym_anyfault] = ACTIONS(1617), - [anon_sym_any] = ACTIONS(1617), - [anon_sym_DOLLARtypeof] = ACTIONS(1617), - [anon_sym_DOLLARtypefrom] = ACTIONS(1617), - [anon_sym_DOLLARevaltype] = ACTIONS(1617), - [anon_sym_DOLLARvatype] = ACTIONS(1617), - [sym_real_literal] = ACTIONS(1619), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARendfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, - [652] = { - [sym_line_comment] = STATE(652), - [sym_doc_comment] = STATE(652), - [sym_block_comment] = STATE(652), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARendforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARappend] = ACTIONS(1499), - [anon_sym_DOLLARconcat] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), + [603] = { + [sym_line_comment] = STATE(603), + [sym_doc_comment] = STATE(603), + [sym_block_comment] = STATE(603), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARendfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), }, - [653] = { - [sym_line_comment] = STATE(653), - [sym_doc_comment] = STATE(653), - [sym_block_comment] = STATE(653), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARendfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), + [604] = { + [sym_line_comment] = STATE(604), + [sym_doc_comment] = STATE(604), + [sym_block_comment] = STATE(604), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARendfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), }, - [654] = { - [sym_line_comment] = STATE(654), - [sym_doc_comment] = STATE(654), - [sym_block_comment] = STATE(654), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARendfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), + [605] = { + [sym_line_comment] = STATE(605), + [sym_doc_comment] = STATE(605), + [sym_block_comment] = STATE(605), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARendfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), }, - [655] = { - [sym_line_comment] = STATE(655), - [sym_doc_comment] = STATE(655), - [sym_block_comment] = STATE(655), - [sym_ident] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_BQUOTE] = ACTIONS(1457), - [sym_bytes_literal] = ACTIONS(1457), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1455), - [sym_at_ident] = ACTIONS(1457), - [sym_hash_ident] = ACTIONS(1457), - [sym_type_ident] = ACTIONS(1457), - [sym_ct_type_ident] = ACTIONS(1457), - [sym_const_ident] = ACTIONS(1455), - [sym_builtin] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_tlocal] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_var] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_defer] = ACTIONS(1455), - [anon_sym_assert] = ACTIONS(1455), - [anon_sym_nextcase] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_foreach] = ACTIONS(1455), - [anon_sym_foreach_r] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_int] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1455), - [anon_sym_DOLLARassert] = ACTIONS(1455), - [anon_sym_DOLLARerror] = ACTIONS(1455), - [anon_sym_DOLLARecho] = ACTIONS(1455), - [anon_sym_DOLLARif] = ACTIONS(1455), - [anon_sym_DOLLARswitch] = ACTIONS(1455), - [anon_sym_DOLLARfor] = ACTIONS(1455), - [anon_sym_DOLLARendfor] = ACTIONS(1455), - [anon_sym_DOLLARforeach] = ACTIONS(1455), - [anon_sym_DOLLARalignof] = ACTIONS(1455), - [anon_sym_DOLLARextnameof] = ACTIONS(1455), - [anon_sym_DOLLARnameof] = ACTIONS(1455), - [anon_sym_DOLLARoffsetof] = ACTIONS(1455), - [anon_sym_DOLLARqnameof] = ACTIONS(1455), - [anon_sym_DOLLARvaconst] = ACTIONS(1455), - [anon_sym_DOLLARvaarg] = ACTIONS(1455), - [anon_sym_DOLLARvaref] = ACTIONS(1455), - [anon_sym_DOLLARvaexpr] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_DOLLARvacount] = ACTIONS(1455), - [anon_sym_DOLLAReval] = ACTIONS(1455), - [anon_sym_DOLLARis_const] = ACTIONS(1455), - [anon_sym_DOLLARsizeof] = ACTIONS(1455), - [anon_sym_DOLLARstringify] = ACTIONS(1455), - [anon_sym_DOLLARappend] = ACTIONS(1455), - [anon_sym_DOLLARconcat] = ACTIONS(1455), - [anon_sym_DOLLARdefined] = ACTIONS(1455), - [anon_sym_DOLLARembed] = ACTIONS(1455), - [anon_sym_DOLLARand] = ACTIONS(1455), - [anon_sym_DOLLARor] = ACTIONS(1455), - [anon_sym_DOLLARfeature] = ACTIONS(1455), - [anon_sym_DOLLARassignable] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_typeid] = ACTIONS(1455), - [anon_sym_LBRACE_PIPE] = ACTIONS(1457), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_ichar] = ACTIONS(1455), - [anon_sym_short] = ACTIONS(1455), - [anon_sym_ushort] = ACTIONS(1455), - [anon_sym_uint] = ACTIONS(1455), - [anon_sym_long] = ACTIONS(1455), - [anon_sym_ulong] = ACTIONS(1455), - [anon_sym_int128] = ACTIONS(1455), - [anon_sym_uint128] = ACTIONS(1455), - [anon_sym_float] = ACTIONS(1455), - [anon_sym_double] = ACTIONS(1455), - [anon_sym_float16] = ACTIONS(1455), - [anon_sym_bfloat16] = ACTIONS(1455), - [anon_sym_float128] = ACTIONS(1455), - [anon_sym_iptr] = ACTIONS(1455), - [anon_sym_uptr] = ACTIONS(1455), - [anon_sym_isz] = ACTIONS(1455), - [anon_sym_usz] = ACTIONS(1455), - [anon_sym_anyfault] = ACTIONS(1455), - [anon_sym_any] = ACTIONS(1455), - [anon_sym_DOLLARtypeof] = ACTIONS(1455), - [anon_sym_DOLLARtypefrom] = ACTIONS(1455), - [anon_sym_DOLLARevaltype] = ACTIONS(1455), - [anon_sym_DOLLARvatype] = ACTIONS(1455), - [sym_real_literal] = ACTIONS(1457), + [606] = { + [sym_line_comment] = STATE(606), + [sym_doc_comment] = STATE(606), + [sym_block_comment] = STATE(606), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARendfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, - [656] = { - [sym_line_comment] = STATE(656), - [sym_doc_comment] = STATE(656), - [sym_block_comment] = STATE(656), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARendfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARappend] = ACTIONS(1483), - [anon_sym_DOLLARconcat] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), + [607] = { + [sym_line_comment] = STATE(607), + [sym_doc_comment] = STATE(607), + [sym_block_comment] = STATE(607), + [sym_ident] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [sym_bytes_literal] = ACTIONS(1391), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1389), + [sym_at_ident] = ACTIONS(1391), + [sym_hash_ident] = ACTIONS(1391), + [sym_type_ident] = ACTIONS(1391), + [sym_ct_type_ident] = ACTIONS(1391), + [sym_const_ident] = ACTIONS(1389), + [sym_builtin] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_tlocal] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_var] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_defer] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1389), + [anon_sym_nextcase] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_foreach] = ACTIONS(1389), + [anon_sym_foreach_r] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_int] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_DOLLARassert] = ACTIONS(1389), + [anon_sym_DOLLARerror] = ACTIONS(1389), + [anon_sym_DOLLARecho] = ACTIONS(1389), + [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARswitch] = ACTIONS(1389), + [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARendfor] = ACTIONS(1389), + [anon_sym_DOLLARforeach] = ACTIONS(1389), + [anon_sym_DOLLARalignof] = ACTIONS(1389), + [anon_sym_DOLLARextnameof] = ACTIONS(1389), + [anon_sym_DOLLARnameof] = ACTIONS(1389), + [anon_sym_DOLLARoffsetof] = ACTIONS(1389), + [anon_sym_DOLLARqnameof] = ACTIONS(1389), + [anon_sym_DOLLARvaconst] = ACTIONS(1389), + [anon_sym_DOLLARvaarg] = ACTIONS(1389), + [anon_sym_DOLLARvaref] = ACTIONS(1389), + [anon_sym_DOLLARvaexpr] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_DOLLARvacount] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), + [anon_sym_DOLLARand] = ACTIONS(1389), + [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLARassignable] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_typeid] = ACTIONS(1389), + [anon_sym_LBRACE_PIPE] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_ichar] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_ushort] = ACTIONS(1389), + [anon_sym_uint] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_ulong] = ACTIONS(1389), + [anon_sym_int128] = ACTIONS(1389), + [anon_sym_uint128] = ACTIONS(1389), + [anon_sym_float] = ACTIONS(1389), + [anon_sym_double] = ACTIONS(1389), + [anon_sym_float16] = ACTIONS(1389), + [anon_sym_bfloat16] = ACTIONS(1389), + [anon_sym_float128] = ACTIONS(1389), + [anon_sym_iptr] = ACTIONS(1389), + [anon_sym_uptr] = ACTIONS(1389), + [anon_sym_isz] = ACTIONS(1389), + [anon_sym_usz] = ACTIONS(1389), + [anon_sym_anyfault] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_DOLLARtypeof] = ACTIONS(1389), + [anon_sym_DOLLARtypefrom] = ACTIONS(1389), + [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), + [sym_real_literal] = ACTIONS(1391), }, - [657] = { - [sym_line_comment] = STATE(657), - [sym_doc_comment] = STATE(657), - [sym_block_comment] = STATE(657), - [sym_ident] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_bytes_literal] = ACTIONS(1539), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1537), - [sym_at_ident] = ACTIONS(1539), - [sym_hash_ident] = ACTIONS(1539), - [sym_type_ident] = ACTIONS(1539), - [sym_ct_type_ident] = ACTIONS(1539), - [sym_const_ident] = ACTIONS(1537), - [sym_builtin] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_tlocal] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_defer] = ACTIONS(1537), - [anon_sym_assert] = ACTIONS(1537), - [anon_sym_nextcase] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_foreach] = ACTIONS(1537), - [anon_sym_foreach_r] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_int] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym_DOLLARassert] = ACTIONS(1537), - [anon_sym_DOLLARerror] = ACTIONS(1537), - [anon_sym_DOLLARecho] = ACTIONS(1537), - [anon_sym_DOLLARif] = ACTIONS(1537), - [anon_sym_DOLLARswitch] = ACTIONS(1537), - [anon_sym_DOLLARfor] = ACTIONS(1537), - [anon_sym_DOLLARendfor] = ACTIONS(1537), - [anon_sym_DOLLARforeach] = ACTIONS(1537), - [anon_sym_DOLLARalignof] = ACTIONS(1537), - [anon_sym_DOLLARextnameof] = ACTIONS(1537), - [anon_sym_DOLLARnameof] = ACTIONS(1537), - [anon_sym_DOLLARoffsetof] = ACTIONS(1537), - [anon_sym_DOLLARqnameof] = ACTIONS(1537), - [anon_sym_DOLLARvaconst] = ACTIONS(1537), - [anon_sym_DOLLARvaarg] = ACTIONS(1537), - [anon_sym_DOLLARvaref] = ACTIONS(1537), - [anon_sym_DOLLARvaexpr] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [anon_sym_DOLLARvacount] = ACTIONS(1537), - [anon_sym_DOLLAReval] = ACTIONS(1537), - [anon_sym_DOLLARis_const] = ACTIONS(1537), - [anon_sym_DOLLARsizeof] = ACTIONS(1537), - [anon_sym_DOLLARstringify] = ACTIONS(1537), - [anon_sym_DOLLARappend] = ACTIONS(1537), - [anon_sym_DOLLARconcat] = ACTIONS(1537), - [anon_sym_DOLLARdefined] = ACTIONS(1537), - [anon_sym_DOLLARembed] = ACTIONS(1537), - [anon_sym_DOLLARand] = ACTIONS(1537), - [anon_sym_DOLLARor] = ACTIONS(1537), - [anon_sym_DOLLARfeature] = ACTIONS(1537), - [anon_sym_DOLLARassignable] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_typeid] = ACTIONS(1537), - [anon_sym_LBRACE_PIPE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_ichar] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [anon_sym_ushort] = ACTIONS(1537), - [anon_sym_uint] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_ulong] = ACTIONS(1537), - [anon_sym_int128] = ACTIONS(1537), - [anon_sym_uint128] = ACTIONS(1537), - [anon_sym_float] = ACTIONS(1537), - [anon_sym_double] = ACTIONS(1537), - [anon_sym_float16] = ACTIONS(1537), - [anon_sym_bfloat16] = ACTIONS(1537), - [anon_sym_float128] = ACTIONS(1537), - [anon_sym_iptr] = ACTIONS(1537), - [anon_sym_uptr] = ACTIONS(1537), - [anon_sym_isz] = ACTIONS(1537), - [anon_sym_usz] = ACTIONS(1537), - [anon_sym_anyfault] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_DOLLARtypeof] = ACTIONS(1537), - [anon_sym_DOLLARtypefrom] = ACTIONS(1537), - [anon_sym_DOLLARevaltype] = ACTIONS(1537), - [anon_sym_DOLLARvatype] = ACTIONS(1537), - [sym_real_literal] = ACTIONS(1539), + [608] = { + [sym_line_comment] = STATE(608), + [sym_doc_comment] = STATE(608), + [sym_block_comment] = STATE(608), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARendfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), }, - [658] = { - [sym_line_comment] = STATE(658), - [sym_doc_comment] = STATE(658), - [sym_block_comment] = STATE(658), - [sym_ident] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_BQUOTE] = ACTIONS(1551), - [sym_bytes_literal] = ACTIONS(1551), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1549), - [sym_at_ident] = ACTIONS(1551), - [sym_hash_ident] = ACTIONS(1551), - [sym_type_ident] = ACTIONS(1551), - [sym_ct_type_ident] = ACTIONS(1551), - [sym_const_ident] = ACTIONS(1549), - [sym_builtin] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_tlocal] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_fn] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_var] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_defer] = ACTIONS(1549), - [anon_sym_assert] = ACTIONS(1549), - [anon_sym_nextcase] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_foreach] = ACTIONS(1549), - [anon_sym_foreach_r] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_int] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_asm] = ACTIONS(1549), - [anon_sym_DOLLARassert] = ACTIONS(1549), - [anon_sym_DOLLARerror] = ACTIONS(1549), - [anon_sym_DOLLARecho] = ACTIONS(1549), - [anon_sym_DOLLARif] = ACTIONS(1549), - [anon_sym_DOLLARswitch] = ACTIONS(1549), - [anon_sym_DOLLARfor] = ACTIONS(1549), - [anon_sym_DOLLARendfor] = ACTIONS(1549), - [anon_sym_DOLLARforeach] = ACTIONS(1549), - [anon_sym_DOLLARalignof] = ACTIONS(1549), - [anon_sym_DOLLARextnameof] = ACTIONS(1549), - [anon_sym_DOLLARnameof] = ACTIONS(1549), - [anon_sym_DOLLARoffsetof] = ACTIONS(1549), - [anon_sym_DOLLARqnameof] = ACTIONS(1549), - [anon_sym_DOLLARvaconst] = ACTIONS(1549), - [anon_sym_DOLLARvaarg] = ACTIONS(1549), - [anon_sym_DOLLARvaref] = ACTIONS(1549), - [anon_sym_DOLLARvaexpr] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [anon_sym_DOLLARvacount] = ACTIONS(1549), - [anon_sym_DOLLAReval] = ACTIONS(1549), - [anon_sym_DOLLARis_const] = ACTIONS(1549), - [anon_sym_DOLLARsizeof] = ACTIONS(1549), - [anon_sym_DOLLARstringify] = ACTIONS(1549), - [anon_sym_DOLLARappend] = ACTIONS(1549), - [anon_sym_DOLLARconcat] = ACTIONS(1549), - [anon_sym_DOLLARdefined] = ACTIONS(1549), - [anon_sym_DOLLARembed] = ACTIONS(1549), - [anon_sym_DOLLARand] = ACTIONS(1549), - [anon_sym_DOLLARor] = ACTIONS(1549), - [anon_sym_DOLLARfeature] = ACTIONS(1549), - [anon_sym_DOLLARassignable] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_typeid] = ACTIONS(1549), - [anon_sym_LBRACE_PIPE] = ACTIONS(1551), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_ichar] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [anon_sym_ushort] = ACTIONS(1549), - [anon_sym_uint] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_ulong] = ACTIONS(1549), - [anon_sym_int128] = ACTIONS(1549), - [anon_sym_uint128] = ACTIONS(1549), - [anon_sym_float] = ACTIONS(1549), - [anon_sym_double] = ACTIONS(1549), - [anon_sym_float16] = ACTIONS(1549), - [anon_sym_bfloat16] = ACTIONS(1549), - [anon_sym_float128] = ACTIONS(1549), - [anon_sym_iptr] = ACTIONS(1549), - [anon_sym_uptr] = ACTIONS(1549), - [anon_sym_isz] = ACTIONS(1549), - [anon_sym_usz] = ACTIONS(1549), - [anon_sym_anyfault] = ACTIONS(1549), - [anon_sym_any] = ACTIONS(1549), - [anon_sym_DOLLARtypeof] = ACTIONS(1549), - [anon_sym_DOLLARtypefrom] = ACTIONS(1549), - [anon_sym_DOLLARevaltype] = ACTIONS(1549), - [anon_sym_DOLLARvatype] = ACTIONS(1549), - [sym_real_literal] = ACTIONS(1551), + [609] = { + [sym_line_comment] = STATE(609), + [sym_doc_comment] = STATE(609), + [sym_block_comment] = STATE(609), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARendfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), }, - [659] = { - [sym_line_comment] = STATE(659), - [sym_doc_comment] = STATE(659), - [sym_block_comment] = STATE(659), - [sym_ident] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_bytes_literal] = ACTIONS(1429), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1427), - [sym_at_ident] = ACTIONS(1429), - [sym_hash_ident] = ACTIONS(1429), - [sym_type_ident] = ACTIONS(1429), - [sym_ct_type_ident] = ACTIONS(1429), - [sym_const_ident] = ACTIONS(1427), - [sym_builtin] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_tlocal] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_var] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_defer] = ACTIONS(1427), - [anon_sym_assert] = ACTIONS(1427), - [anon_sym_nextcase] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_foreach] = ACTIONS(1427), - [anon_sym_foreach_r] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_int] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1427), - [anon_sym_DOLLARassert] = ACTIONS(1427), - [anon_sym_DOLLARerror] = ACTIONS(1427), - [anon_sym_DOLLARecho] = ACTIONS(1427), - [anon_sym_DOLLARif] = ACTIONS(1427), - [anon_sym_DOLLARswitch] = ACTIONS(1427), - [anon_sym_DOLLARfor] = ACTIONS(1427), - [anon_sym_DOLLARforeach] = ACTIONS(1427), - [anon_sym_DOLLARendforeach] = ACTIONS(1427), - [anon_sym_DOLLARalignof] = ACTIONS(1427), - [anon_sym_DOLLARextnameof] = ACTIONS(1427), - [anon_sym_DOLLARnameof] = ACTIONS(1427), - [anon_sym_DOLLARoffsetof] = ACTIONS(1427), - [anon_sym_DOLLARqnameof] = ACTIONS(1427), - [anon_sym_DOLLARvaconst] = ACTIONS(1427), - [anon_sym_DOLLARvaarg] = ACTIONS(1427), - [anon_sym_DOLLARvaref] = ACTIONS(1427), - [anon_sym_DOLLARvaexpr] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [anon_sym_DOLLARvacount] = ACTIONS(1427), - [anon_sym_DOLLAReval] = ACTIONS(1427), - [anon_sym_DOLLARis_const] = ACTIONS(1427), - [anon_sym_DOLLARsizeof] = ACTIONS(1427), - [anon_sym_DOLLARstringify] = ACTIONS(1427), - [anon_sym_DOLLARappend] = ACTIONS(1427), - [anon_sym_DOLLARconcat] = ACTIONS(1427), - [anon_sym_DOLLARdefined] = ACTIONS(1427), - [anon_sym_DOLLARembed] = ACTIONS(1427), - [anon_sym_DOLLARand] = ACTIONS(1427), - [anon_sym_DOLLARor] = ACTIONS(1427), - [anon_sym_DOLLARfeature] = ACTIONS(1427), - [anon_sym_DOLLARassignable] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_typeid] = ACTIONS(1427), - [anon_sym_LBRACE_PIPE] = ACTIONS(1429), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_bool] = ACTIONS(1427), - [anon_sym_char] = ACTIONS(1427), - [anon_sym_ichar] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [anon_sym_ushort] = ACTIONS(1427), - [anon_sym_uint] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_ulong] = ACTIONS(1427), - [anon_sym_int128] = ACTIONS(1427), - [anon_sym_uint128] = ACTIONS(1427), - [anon_sym_float] = ACTIONS(1427), - [anon_sym_double] = ACTIONS(1427), - [anon_sym_float16] = ACTIONS(1427), - [anon_sym_bfloat16] = ACTIONS(1427), - [anon_sym_float128] = ACTIONS(1427), - [anon_sym_iptr] = ACTIONS(1427), - [anon_sym_uptr] = ACTIONS(1427), - [anon_sym_isz] = ACTIONS(1427), - [anon_sym_usz] = ACTIONS(1427), - [anon_sym_anyfault] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_DOLLARtypeof] = ACTIONS(1427), - [anon_sym_DOLLARtypefrom] = ACTIONS(1427), - [anon_sym_DOLLARevaltype] = ACTIONS(1427), - [anon_sym_DOLLARvatype] = ACTIONS(1427), - [sym_real_literal] = ACTIONS(1429), + [610] = { + [sym_line_comment] = STATE(610), + [sym_doc_comment] = STATE(610), + [sym_block_comment] = STATE(610), + [sym_ident] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_BQUOTE] = ACTIONS(1403), + [sym_bytes_literal] = ACTIONS(1403), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1401), + [sym_at_ident] = ACTIONS(1403), + [sym_hash_ident] = ACTIONS(1403), + [sym_type_ident] = ACTIONS(1403), + [sym_ct_type_ident] = ACTIONS(1403), + [sym_const_ident] = ACTIONS(1401), + [sym_builtin] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_tlocal] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_var] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_defer] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1401), + [anon_sym_nextcase] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_foreach] = ACTIONS(1401), + [anon_sym_foreach_r] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_int] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_DOLLARassert] = ACTIONS(1401), + [anon_sym_DOLLARerror] = ACTIONS(1401), + [anon_sym_DOLLARecho] = ACTIONS(1401), + [anon_sym_DOLLARif] = ACTIONS(1401), + [anon_sym_DOLLARswitch] = ACTIONS(1401), + [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARendfor] = ACTIONS(1401), + [anon_sym_DOLLARforeach] = ACTIONS(1401), + [anon_sym_DOLLARalignof] = ACTIONS(1401), + [anon_sym_DOLLARextnameof] = ACTIONS(1401), + [anon_sym_DOLLARnameof] = ACTIONS(1401), + [anon_sym_DOLLARoffsetof] = ACTIONS(1401), + [anon_sym_DOLLARqnameof] = ACTIONS(1401), + [anon_sym_DOLLARvaconst] = ACTIONS(1401), + [anon_sym_DOLLARvaarg] = ACTIONS(1401), + [anon_sym_DOLLARvaref] = ACTIONS(1401), + [anon_sym_DOLLARvaexpr] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1401), + [anon_sym_DOLLARvacount] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), + [anon_sym_DOLLARand] = ACTIONS(1401), + [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLARassignable] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), + [anon_sym_typeid] = ACTIONS(1401), + [anon_sym_LBRACE_PIPE] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_ichar] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), }, - [660] = { - [sym_line_comment] = STATE(660), - [sym_doc_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [sym_ident] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_BQUOTE] = ACTIONS(1449), - [sym_bytes_literal] = ACTIONS(1449), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1447), - [sym_at_ident] = ACTIONS(1449), - [sym_hash_ident] = ACTIONS(1449), - [sym_type_ident] = ACTIONS(1449), - [sym_ct_type_ident] = ACTIONS(1449), - [sym_const_ident] = ACTIONS(1447), - [sym_builtin] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_tlocal] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_var] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_defer] = ACTIONS(1447), - [anon_sym_assert] = ACTIONS(1447), - [anon_sym_nextcase] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_foreach] = ACTIONS(1447), - [anon_sym_foreach_r] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_int] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_asm] = ACTIONS(1447), - [anon_sym_DOLLARassert] = ACTIONS(1447), - [anon_sym_DOLLARerror] = ACTIONS(1447), - [anon_sym_DOLLARecho] = ACTIONS(1447), - [anon_sym_DOLLARif] = ACTIONS(1447), - [anon_sym_DOLLARswitch] = ACTIONS(1447), - [anon_sym_DOLLARfor] = ACTIONS(1447), - [anon_sym_DOLLARforeach] = ACTIONS(1447), - [anon_sym_DOLLARendforeach] = ACTIONS(1447), - [anon_sym_DOLLARalignof] = ACTIONS(1447), - [anon_sym_DOLLARextnameof] = ACTIONS(1447), - [anon_sym_DOLLARnameof] = ACTIONS(1447), - [anon_sym_DOLLARoffsetof] = ACTIONS(1447), - [anon_sym_DOLLARqnameof] = ACTIONS(1447), - [anon_sym_DOLLARvaconst] = ACTIONS(1447), - [anon_sym_DOLLARvaarg] = ACTIONS(1447), - [anon_sym_DOLLARvaref] = ACTIONS(1447), - [anon_sym_DOLLARvaexpr] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_DOLLARvacount] = ACTIONS(1447), - [anon_sym_DOLLAReval] = ACTIONS(1447), - [anon_sym_DOLLARis_const] = ACTIONS(1447), - [anon_sym_DOLLARsizeof] = ACTIONS(1447), - [anon_sym_DOLLARstringify] = ACTIONS(1447), - [anon_sym_DOLLARappend] = ACTIONS(1447), - [anon_sym_DOLLARconcat] = ACTIONS(1447), - [anon_sym_DOLLARdefined] = ACTIONS(1447), - [anon_sym_DOLLARembed] = ACTIONS(1447), - [anon_sym_DOLLARand] = ACTIONS(1447), - [anon_sym_DOLLARor] = ACTIONS(1447), - [anon_sym_DOLLARfeature] = ACTIONS(1447), - [anon_sym_DOLLARassignable] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_typeid] = ACTIONS(1447), - [anon_sym_LBRACE_PIPE] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_ichar] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [anon_sym_ushort] = ACTIONS(1447), - [anon_sym_uint] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_ulong] = ACTIONS(1447), - [anon_sym_int128] = ACTIONS(1447), - [anon_sym_uint128] = ACTIONS(1447), - [anon_sym_float] = ACTIONS(1447), - [anon_sym_double] = ACTIONS(1447), - [anon_sym_float16] = ACTIONS(1447), - [anon_sym_bfloat16] = ACTIONS(1447), - [anon_sym_float128] = ACTIONS(1447), - [anon_sym_iptr] = ACTIONS(1447), - [anon_sym_uptr] = ACTIONS(1447), - [anon_sym_isz] = ACTIONS(1447), - [anon_sym_usz] = ACTIONS(1447), - [anon_sym_anyfault] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_DOLLARtypeof] = ACTIONS(1447), - [anon_sym_DOLLARtypefrom] = ACTIONS(1447), - [anon_sym_DOLLARevaltype] = ACTIONS(1447), - [anon_sym_DOLLARvatype] = ACTIONS(1447), - [sym_real_literal] = ACTIONS(1449), + [611] = { + [sym_line_comment] = STATE(611), + [sym_doc_comment] = STATE(611), + [sym_block_comment] = STATE(611), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARendfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), }, - [661] = { - [sym_line_comment] = STATE(661), - [sym_doc_comment] = STATE(661), - [sym_block_comment] = STATE(661), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARendforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARappend] = ACTIONS(1479), - [anon_sym_DOLLARconcat] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), + [612] = { + [sym_line_comment] = STATE(612), + [sym_doc_comment] = STATE(612), + [sym_block_comment] = STATE(612), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARendfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), }, - [662] = { - [sym_line_comment] = STATE(662), - [sym_doc_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [sym_ident] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_bytes_literal] = ACTIONS(1659), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1657), - [sym_at_ident] = ACTIONS(1659), - [sym_hash_ident] = ACTIONS(1659), - [sym_type_ident] = ACTIONS(1659), - [sym_ct_type_ident] = ACTIONS(1659), - [sym_const_ident] = ACTIONS(1657), - [sym_builtin] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_tlocal] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_var] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_assert] = ACTIONS(1657), - [anon_sym_nextcase] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_foreach] = ACTIONS(1657), - [anon_sym_foreach_r] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1657), - [anon_sym_DOLLARassert] = ACTIONS(1657), - [anon_sym_DOLLARerror] = ACTIONS(1657), - [anon_sym_DOLLARecho] = ACTIONS(1657), - [anon_sym_DOLLARif] = ACTIONS(1657), - [anon_sym_DOLLARswitch] = ACTIONS(1657), - [anon_sym_DOLLARfor] = ACTIONS(1657), - [anon_sym_DOLLARforeach] = ACTIONS(1657), - [anon_sym_DOLLARendforeach] = ACTIONS(1657), - [anon_sym_DOLLARalignof] = ACTIONS(1657), - [anon_sym_DOLLARextnameof] = ACTIONS(1657), - [anon_sym_DOLLARnameof] = ACTIONS(1657), - [anon_sym_DOLLARoffsetof] = ACTIONS(1657), - [anon_sym_DOLLARqnameof] = ACTIONS(1657), - [anon_sym_DOLLARvaconst] = ACTIONS(1657), - [anon_sym_DOLLARvaarg] = ACTIONS(1657), - [anon_sym_DOLLARvaref] = ACTIONS(1657), - [anon_sym_DOLLARvaexpr] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_DOLLARvacount] = ACTIONS(1657), - [anon_sym_DOLLAReval] = ACTIONS(1657), - [anon_sym_DOLLARis_const] = ACTIONS(1657), - [anon_sym_DOLLARsizeof] = ACTIONS(1657), - [anon_sym_DOLLARstringify] = ACTIONS(1657), - [anon_sym_DOLLARappend] = ACTIONS(1657), - [anon_sym_DOLLARconcat] = ACTIONS(1657), - [anon_sym_DOLLARdefined] = ACTIONS(1657), - [anon_sym_DOLLARembed] = ACTIONS(1657), - [anon_sym_DOLLARand] = ACTIONS(1657), - [anon_sym_DOLLARor] = ACTIONS(1657), - [anon_sym_DOLLARfeature] = ACTIONS(1657), - [anon_sym_DOLLARassignable] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_typeid] = ACTIONS(1657), - [anon_sym_LBRACE_PIPE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_ichar] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [anon_sym_ushort] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_ulong] = ACTIONS(1657), - [anon_sym_int128] = ACTIONS(1657), - [anon_sym_uint128] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_double] = ACTIONS(1657), - [anon_sym_float16] = ACTIONS(1657), - [anon_sym_bfloat16] = ACTIONS(1657), - [anon_sym_float128] = ACTIONS(1657), - [anon_sym_iptr] = ACTIONS(1657), - [anon_sym_uptr] = ACTIONS(1657), - [anon_sym_isz] = ACTIONS(1657), - [anon_sym_usz] = ACTIONS(1657), - [anon_sym_anyfault] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_DOLLARtypeof] = ACTIONS(1657), - [anon_sym_DOLLARtypefrom] = ACTIONS(1657), - [anon_sym_DOLLARevaltype] = ACTIONS(1657), - [anon_sym_DOLLARvatype] = ACTIONS(1657), - [sym_real_literal] = ACTIONS(1659), + [613] = { + [sym_line_comment] = STATE(613), + [sym_doc_comment] = STATE(613), + [sym_block_comment] = STATE(613), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARendfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), }, - [663] = { - [sym_line_comment] = STATE(663), - [sym_doc_comment] = STATE(663), - [sym_block_comment] = STATE(663), - [sym_ident] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [anon_sym_BQUOTE] = ACTIONS(1555), - [sym_bytes_literal] = ACTIONS(1555), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1553), - [sym_at_ident] = ACTIONS(1555), - [sym_hash_ident] = ACTIONS(1555), - [sym_type_ident] = ACTIONS(1555), - [sym_ct_type_ident] = ACTIONS(1555), - [sym_const_ident] = ACTIONS(1553), - [sym_builtin] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_tlocal] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_var] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_defer] = ACTIONS(1553), - [anon_sym_assert] = ACTIONS(1553), - [anon_sym_nextcase] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_foreach] = ACTIONS(1553), - [anon_sym_foreach_r] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_int] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_asm] = ACTIONS(1553), - [anon_sym_DOLLARassert] = ACTIONS(1553), - [anon_sym_DOLLARerror] = ACTIONS(1553), - [anon_sym_DOLLARecho] = ACTIONS(1553), - [anon_sym_DOLLARif] = ACTIONS(1553), - [anon_sym_DOLLARswitch] = ACTIONS(1553), - [anon_sym_DOLLARfor] = ACTIONS(1553), - [anon_sym_DOLLARforeach] = ACTIONS(1553), - [anon_sym_DOLLARendforeach] = ACTIONS(1553), - [anon_sym_DOLLARalignof] = ACTIONS(1553), - [anon_sym_DOLLARextnameof] = ACTIONS(1553), - [anon_sym_DOLLARnameof] = ACTIONS(1553), - [anon_sym_DOLLARoffsetof] = ACTIONS(1553), - [anon_sym_DOLLARqnameof] = ACTIONS(1553), - [anon_sym_DOLLARvaconst] = ACTIONS(1553), - [anon_sym_DOLLARvaarg] = ACTIONS(1553), - [anon_sym_DOLLARvaref] = ACTIONS(1553), - [anon_sym_DOLLARvaexpr] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_null] = ACTIONS(1553), - [anon_sym_DOLLARvacount] = ACTIONS(1553), - [anon_sym_DOLLAReval] = ACTIONS(1553), - [anon_sym_DOLLARis_const] = ACTIONS(1553), - [anon_sym_DOLLARsizeof] = ACTIONS(1553), - [anon_sym_DOLLARstringify] = ACTIONS(1553), - [anon_sym_DOLLARappend] = ACTIONS(1553), - [anon_sym_DOLLARconcat] = ACTIONS(1553), - [anon_sym_DOLLARdefined] = ACTIONS(1553), - [anon_sym_DOLLARembed] = ACTIONS(1553), - [anon_sym_DOLLARand] = ACTIONS(1553), - [anon_sym_DOLLARor] = ACTIONS(1553), - [anon_sym_DOLLARfeature] = ACTIONS(1553), - [anon_sym_DOLLARassignable] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_typeid] = ACTIONS(1553), - [anon_sym_LBRACE_PIPE] = ACTIONS(1555), - [anon_sym_void] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [anon_sym_ichar] = ACTIONS(1553), - [anon_sym_short] = ACTIONS(1553), - [anon_sym_ushort] = ACTIONS(1553), - [anon_sym_uint] = ACTIONS(1553), - [anon_sym_long] = ACTIONS(1553), - [anon_sym_ulong] = ACTIONS(1553), - [anon_sym_int128] = ACTIONS(1553), - [anon_sym_uint128] = ACTIONS(1553), - [anon_sym_float] = ACTIONS(1553), - [anon_sym_double] = ACTIONS(1553), - [anon_sym_float16] = ACTIONS(1553), - [anon_sym_bfloat16] = ACTIONS(1553), - [anon_sym_float128] = ACTIONS(1553), - [anon_sym_iptr] = ACTIONS(1553), - [anon_sym_uptr] = ACTIONS(1553), - [anon_sym_isz] = ACTIONS(1553), - [anon_sym_usz] = ACTIONS(1553), - [anon_sym_anyfault] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_DOLLARtypeof] = ACTIONS(1553), - [anon_sym_DOLLARtypefrom] = ACTIONS(1553), - [anon_sym_DOLLARevaltype] = ACTIONS(1553), - [anon_sym_DOLLARvatype] = ACTIONS(1553), - [sym_real_literal] = ACTIONS(1555), + [614] = { + [sym_line_comment] = STATE(614), + [sym_doc_comment] = STATE(614), + [sym_block_comment] = STATE(614), + [sym_ident] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_bytes_literal] = ACTIONS(1419), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1417), + [sym_at_ident] = ACTIONS(1419), + [sym_hash_ident] = ACTIONS(1419), + [sym_type_ident] = ACTIONS(1419), + [sym_ct_type_ident] = ACTIONS(1419), + [sym_const_ident] = ACTIONS(1417), + [sym_builtin] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_tlocal] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_var] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_defer] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_nextcase] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_foreach] = ACTIONS(1417), + [anon_sym_foreach_r] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_DOLLARassert] = ACTIONS(1417), + [anon_sym_DOLLARerror] = ACTIONS(1417), + [anon_sym_DOLLARecho] = ACTIONS(1417), + [anon_sym_DOLLARif] = ACTIONS(1417), + [anon_sym_DOLLARswitch] = ACTIONS(1417), + [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARendfor] = ACTIONS(1417), + [anon_sym_DOLLARforeach] = ACTIONS(1417), + [anon_sym_DOLLARalignof] = ACTIONS(1417), + [anon_sym_DOLLARextnameof] = ACTIONS(1417), + [anon_sym_DOLLARnameof] = ACTIONS(1417), + [anon_sym_DOLLARoffsetof] = ACTIONS(1417), + [anon_sym_DOLLARqnameof] = ACTIONS(1417), + [anon_sym_DOLLARvaconst] = ACTIONS(1417), + [anon_sym_DOLLARvaarg] = ACTIONS(1417), + [anon_sym_DOLLARvaref] = ACTIONS(1417), + [anon_sym_DOLLARvaexpr] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_DOLLARvacount] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), + [anon_sym_DOLLARand] = ACTIONS(1417), + [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLARassignable] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_typeid] = ACTIONS(1417), + [anon_sym_LBRACE_PIPE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_ichar] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_ushort] = ACTIONS(1417), + [anon_sym_uint] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_ulong] = ACTIONS(1417), + [anon_sym_int128] = ACTIONS(1417), + [anon_sym_uint128] = ACTIONS(1417), + [anon_sym_float] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_float16] = ACTIONS(1417), + [anon_sym_bfloat16] = ACTIONS(1417), + [anon_sym_float128] = ACTIONS(1417), + [anon_sym_iptr] = ACTIONS(1417), + [anon_sym_uptr] = ACTIONS(1417), + [anon_sym_isz] = ACTIONS(1417), + [anon_sym_usz] = ACTIONS(1417), + [anon_sym_anyfault] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_DOLLARtypeof] = ACTIONS(1417), + [anon_sym_DOLLARtypefrom] = ACTIONS(1417), + [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1419), + }, + [615] = { + [sym_line_comment] = STATE(615), + [sym_doc_comment] = STATE(615), + [sym_block_comment] = STATE(615), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARendfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), + }, + [616] = { + [sym_line_comment] = STATE(616), + [sym_doc_comment] = STATE(616), + [sym_block_comment] = STATE(616), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARendfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), + }, + [617] = { + [sym_line_comment] = STATE(617), + [sym_doc_comment] = STATE(617), + [sym_block_comment] = STATE(617), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARendfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), + }, + [618] = { + [sym_line_comment] = STATE(618), + [sym_doc_comment] = STATE(618), + [sym_block_comment] = STATE(618), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARendfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), + }, + [619] = { + [sym_line_comment] = STATE(619), + [sym_doc_comment] = STATE(619), + [sym_block_comment] = STATE(619), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARendfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), + }, + [620] = { + [sym_line_comment] = STATE(620), + [sym_doc_comment] = STATE(620), + [sym_block_comment] = STATE(620), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARendfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), + }, + [621] = { + [sym_line_comment] = STATE(621), + [sym_doc_comment] = STATE(621), + [sym_block_comment] = STATE(621), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARendfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), + }, + [622] = { + [sym_line_comment] = STATE(622), + [sym_doc_comment] = STATE(622), + [sym_block_comment] = STATE(622), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARendfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), + }, + [623] = { + [sym_line_comment] = STATE(623), + [sym_doc_comment] = STATE(623), + [sym_block_comment] = STATE(623), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARendfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), + }, + [624] = { + [sym_line_comment] = STATE(624), + [sym_doc_comment] = STATE(624), + [sym_block_comment] = STATE(624), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARendfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), + }, + [625] = { + [sym_line_comment] = STATE(625), + [sym_doc_comment] = STATE(625), + [sym_block_comment] = STATE(625), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARendfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, - [664] = { - [sym_line_comment] = STATE(664), - [sym_doc_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [sym_ident] = ACTIONS(1565), - [sym_integer_literal] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [anon_sym_BQUOTE] = ACTIONS(1567), - [sym_bytes_literal] = ACTIONS(1567), + [626] = { + [sym_line_comment] = STATE(626), + [sym_doc_comment] = STATE(626), + [sym_block_comment] = STATE(626), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARendfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), + }, + [627] = { + [sym_line_comment] = STATE(627), + [sym_doc_comment] = STATE(627), + [sym_block_comment] = STATE(627), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARendfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), + }, + [628] = { + [sym_line_comment] = STATE(628), + [sym_doc_comment] = STATE(628), + [sym_block_comment] = STATE(628), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARendfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), + }, + [629] = { + [sym_line_comment] = STATE(629), + [sym_doc_comment] = STATE(629), + [sym_block_comment] = STATE(629), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARendfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), + }, + [630] = { + [sym_line_comment] = STATE(630), + [sym_doc_comment] = STATE(630), + [sym_block_comment] = STATE(630), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARendfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), + }, + [631] = { + [sym_line_comment] = STATE(631), + [sym_doc_comment] = STATE(631), + [sym_block_comment] = STATE(631), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARendfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), + }, + [632] = { + [sym_line_comment] = STATE(632), + [sym_doc_comment] = STATE(632), + [sym_block_comment] = STATE(632), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1565), - [sym_at_ident] = ACTIONS(1567), - [sym_hash_ident] = ACTIONS(1567), - [sym_type_ident] = ACTIONS(1567), - [sym_ct_type_ident] = ACTIONS(1567), - [sym_const_ident] = ACTIONS(1565), - [sym_builtin] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_tlocal] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_fn] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_var] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_defer] = ACTIONS(1565), - [anon_sym_assert] = ACTIONS(1565), - [anon_sym_nextcase] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_foreach] = ACTIONS(1565), - [anon_sym_foreach_r] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_int] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_asm] = ACTIONS(1565), - [anon_sym_DOLLARassert] = ACTIONS(1565), - [anon_sym_DOLLARerror] = ACTIONS(1565), - [anon_sym_DOLLARecho] = ACTIONS(1565), - [anon_sym_DOLLARif] = ACTIONS(1565), - [anon_sym_DOLLARswitch] = ACTIONS(1565), - [anon_sym_DOLLARfor] = ACTIONS(1565), - [anon_sym_DOLLARforeach] = ACTIONS(1565), - [anon_sym_DOLLARendforeach] = ACTIONS(1565), - [anon_sym_DOLLARalignof] = ACTIONS(1565), - [anon_sym_DOLLARextnameof] = ACTIONS(1565), - [anon_sym_DOLLARnameof] = ACTIONS(1565), - [anon_sym_DOLLARoffsetof] = ACTIONS(1565), - [anon_sym_DOLLARqnameof] = ACTIONS(1565), - [anon_sym_DOLLARvaconst] = ACTIONS(1565), - [anon_sym_DOLLARvaarg] = ACTIONS(1565), - [anon_sym_DOLLARvaref] = ACTIONS(1565), - [anon_sym_DOLLARvaexpr] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1565), - [anon_sym_false] = ACTIONS(1565), - [anon_sym_null] = ACTIONS(1565), - [anon_sym_DOLLARvacount] = ACTIONS(1565), - [anon_sym_DOLLAReval] = ACTIONS(1565), - [anon_sym_DOLLARis_const] = ACTIONS(1565), - [anon_sym_DOLLARsizeof] = ACTIONS(1565), - [anon_sym_DOLLARstringify] = ACTIONS(1565), - [anon_sym_DOLLARappend] = ACTIONS(1565), - [anon_sym_DOLLARconcat] = ACTIONS(1565), - [anon_sym_DOLLARdefined] = ACTIONS(1565), - [anon_sym_DOLLARembed] = ACTIONS(1565), - [anon_sym_DOLLARand] = ACTIONS(1565), - [anon_sym_DOLLARor] = ACTIONS(1565), - [anon_sym_DOLLARfeature] = ACTIONS(1565), - [anon_sym_DOLLARassignable] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_typeid] = ACTIONS(1565), - [anon_sym_LBRACE_PIPE] = ACTIONS(1567), - [anon_sym_void] = ACTIONS(1565), - [anon_sym_bool] = ACTIONS(1565), - [anon_sym_char] = ACTIONS(1565), - [anon_sym_ichar] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [anon_sym_ushort] = ACTIONS(1565), - [anon_sym_uint] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_ulong] = ACTIONS(1565), - [anon_sym_int128] = ACTIONS(1565), - [anon_sym_uint128] = ACTIONS(1565), - [anon_sym_float] = ACTIONS(1565), - [anon_sym_double] = ACTIONS(1565), - [anon_sym_float16] = ACTIONS(1565), - [anon_sym_bfloat16] = ACTIONS(1565), - [anon_sym_float128] = ACTIONS(1565), - [anon_sym_iptr] = ACTIONS(1565), - [anon_sym_uptr] = ACTIONS(1565), - [anon_sym_isz] = ACTIONS(1565), - [anon_sym_usz] = ACTIONS(1565), - [anon_sym_anyfault] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1565), - [anon_sym_DOLLARtypeof] = ACTIONS(1565), - [anon_sym_DOLLARtypefrom] = ACTIONS(1565), - [anon_sym_DOLLARevaltype] = ACTIONS(1565), - [anon_sym_DOLLARvatype] = ACTIONS(1565), - [sym_real_literal] = ACTIONS(1567), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARendfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, - [665] = { - [sym_line_comment] = STATE(665), - [sym_doc_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARendforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARappend] = ACTIONS(1463), - [anon_sym_DOLLARconcat] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), + [633] = { + [sym_line_comment] = STATE(633), + [sym_doc_comment] = STATE(633), + [sym_block_comment] = STATE(633), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARendfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), }, - [666] = { - [sym_line_comment] = STATE(666), - [sym_doc_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARendforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARappend] = ACTIONS(1491), - [anon_sym_DOLLARconcat] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), + [634] = { + [sym_line_comment] = STATE(634), + [sym_doc_comment] = STATE(634), + [sym_block_comment] = STATE(634), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARendfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, - [667] = { - [sym_line_comment] = STATE(667), - [sym_doc_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [sym_ident] = ACTIONS(1189), - [sym_integer_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [anon_sym_BQUOTE] = ACTIONS(1191), - [sym_bytes_literal] = ACTIONS(1191), + [635] = { + [sym_line_comment] = STATE(635), + [sym_doc_comment] = STATE(635), + [sym_block_comment] = STATE(635), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1189), - [sym_at_ident] = ACTIONS(1191), - [sym_hash_ident] = ACTIONS(1191), - [sym_type_ident] = ACTIONS(1191), - [sym_ct_type_ident] = ACTIONS(1191), - [sym_const_ident] = ACTIONS(1189), - [sym_builtin] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_tlocal] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym_fn] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_defer] = ACTIONS(1189), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_nextcase] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_foreach] = ACTIONS(1189), - [anon_sym_foreach_r] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_int] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym_DOLLARassert] = ACTIONS(1189), - [anon_sym_DOLLARerror] = ACTIONS(1189), - [anon_sym_DOLLARecho] = ACTIONS(1189), - [anon_sym_DOLLARif] = ACTIONS(1189), - [anon_sym_DOLLARswitch] = ACTIONS(1189), - [anon_sym_DOLLARfor] = ACTIONS(1189), - [anon_sym_DOLLARendfor] = ACTIONS(1189), - [anon_sym_DOLLARforeach] = ACTIONS(1189), - [anon_sym_DOLLARalignof] = ACTIONS(1189), - [anon_sym_DOLLARextnameof] = ACTIONS(1189), - [anon_sym_DOLLARnameof] = ACTIONS(1189), - [anon_sym_DOLLARoffsetof] = ACTIONS(1189), - [anon_sym_DOLLARqnameof] = ACTIONS(1189), - [anon_sym_DOLLARvaconst] = ACTIONS(1189), - [anon_sym_DOLLARvaarg] = ACTIONS(1189), - [anon_sym_DOLLARvaref] = ACTIONS(1189), - [anon_sym_DOLLARvaexpr] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_DOLLARvacount] = ACTIONS(1189), - [anon_sym_DOLLAReval] = ACTIONS(1189), - [anon_sym_DOLLARis_const] = ACTIONS(1189), - [anon_sym_DOLLARsizeof] = ACTIONS(1189), - [anon_sym_DOLLARstringify] = ACTIONS(1189), - [anon_sym_DOLLARappend] = ACTIONS(1189), - [anon_sym_DOLLARconcat] = ACTIONS(1189), - [anon_sym_DOLLARdefined] = ACTIONS(1189), - [anon_sym_DOLLARembed] = ACTIONS(1189), - [anon_sym_DOLLARand] = ACTIONS(1189), - [anon_sym_DOLLARor] = ACTIONS(1189), - [anon_sym_DOLLARfeature] = ACTIONS(1189), - [anon_sym_DOLLARassignable] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_typeid] = ACTIONS(1189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1191), - [anon_sym_void] = ACTIONS(1189), - [anon_sym_bool] = ACTIONS(1189), - [anon_sym_char] = ACTIONS(1189), - [anon_sym_ichar] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_ushort] = ACTIONS(1189), - [anon_sym_uint] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_ulong] = ACTIONS(1189), - [anon_sym_int128] = ACTIONS(1189), - [anon_sym_uint128] = ACTIONS(1189), - [anon_sym_float] = ACTIONS(1189), - [anon_sym_double] = ACTIONS(1189), - [anon_sym_float16] = ACTIONS(1189), - [anon_sym_bfloat16] = ACTIONS(1189), - [anon_sym_float128] = ACTIONS(1189), - [anon_sym_iptr] = ACTIONS(1189), - [anon_sym_uptr] = ACTIONS(1189), - [anon_sym_isz] = ACTIONS(1189), - [anon_sym_usz] = ACTIONS(1189), - [anon_sym_anyfault] = ACTIONS(1189), - [anon_sym_any] = ACTIONS(1189), - [anon_sym_DOLLARtypeof] = ACTIONS(1189), - [anon_sym_DOLLARtypefrom] = ACTIONS(1189), - [anon_sym_DOLLARevaltype] = ACTIONS(1189), - [anon_sym_DOLLARvatype] = ACTIONS(1189), - [sym_real_literal] = ACTIONS(1191), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARendfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, - [668] = { - [sym_line_comment] = STATE(668), - [sym_doc_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [sym_ident] = ACTIONS(1613), - [sym_integer_literal] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [anon_sym_BQUOTE] = ACTIONS(1615), - [sym_bytes_literal] = ACTIONS(1615), + [636] = { + [sym_line_comment] = STATE(636), + [sym_doc_comment] = STATE(636), + [sym_block_comment] = STATE(636), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1613), - [sym_at_ident] = ACTIONS(1615), - [sym_hash_ident] = ACTIONS(1615), - [sym_type_ident] = ACTIONS(1615), - [sym_ct_type_ident] = ACTIONS(1615), - [sym_const_ident] = ACTIONS(1613), - [sym_builtin] = ACTIONS(1615), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_static] = ACTIONS(1613), - [anon_sym_tlocal] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1615), - [anon_sym_fn] = ACTIONS(1613), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1613), - [anon_sym_var] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_defer] = ACTIONS(1613), - [anon_sym_assert] = ACTIONS(1613), - [anon_sym_nextcase] = ACTIONS(1613), - [anon_sym_switch] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_foreach] = ACTIONS(1613), - [anon_sym_foreach_r] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_do] = ACTIONS(1613), - [anon_sym_int] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_asm] = ACTIONS(1613), - [anon_sym_DOLLARassert] = ACTIONS(1613), - [anon_sym_DOLLARerror] = ACTIONS(1613), - [anon_sym_DOLLARecho] = ACTIONS(1613), - [anon_sym_DOLLARif] = ACTIONS(1613), - [anon_sym_DOLLARswitch] = ACTIONS(1613), - [anon_sym_DOLLARfor] = ACTIONS(1613), - [anon_sym_DOLLARendfor] = ACTIONS(1613), - [anon_sym_DOLLARforeach] = ACTIONS(1613), - [anon_sym_DOLLARalignof] = ACTIONS(1613), - [anon_sym_DOLLARextnameof] = ACTIONS(1613), - [anon_sym_DOLLARnameof] = ACTIONS(1613), - [anon_sym_DOLLARoffsetof] = ACTIONS(1613), - [anon_sym_DOLLARqnameof] = ACTIONS(1613), - [anon_sym_DOLLARvaconst] = ACTIONS(1613), - [anon_sym_DOLLARvaarg] = ACTIONS(1613), - [anon_sym_DOLLARvaref] = ACTIONS(1613), - [anon_sym_DOLLARvaexpr] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_null] = ACTIONS(1613), - [anon_sym_DOLLARvacount] = ACTIONS(1613), - [anon_sym_DOLLAReval] = ACTIONS(1613), - [anon_sym_DOLLARis_const] = ACTIONS(1613), - [anon_sym_DOLLARsizeof] = ACTIONS(1613), - [anon_sym_DOLLARstringify] = ACTIONS(1613), - [anon_sym_DOLLARappend] = ACTIONS(1613), - [anon_sym_DOLLARconcat] = ACTIONS(1613), - [anon_sym_DOLLARdefined] = ACTIONS(1613), - [anon_sym_DOLLARembed] = ACTIONS(1613), - [anon_sym_DOLLARand] = ACTIONS(1613), - [anon_sym_DOLLARor] = ACTIONS(1613), - [anon_sym_DOLLARfeature] = ACTIONS(1613), - [anon_sym_DOLLARassignable] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1615), - [anon_sym_TILDE] = ACTIONS(1615), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [anon_sym_typeid] = ACTIONS(1613), - [anon_sym_LBRACE_PIPE] = ACTIONS(1615), - [anon_sym_void] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_char] = ACTIONS(1613), - [anon_sym_ichar] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [anon_sym_ushort] = ACTIONS(1613), - [anon_sym_uint] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_ulong] = ACTIONS(1613), - [anon_sym_int128] = ACTIONS(1613), - [anon_sym_uint128] = ACTIONS(1613), - [anon_sym_float] = ACTIONS(1613), - [anon_sym_double] = ACTIONS(1613), - [anon_sym_float16] = ACTIONS(1613), - [anon_sym_bfloat16] = ACTIONS(1613), - [anon_sym_float128] = ACTIONS(1613), - [anon_sym_iptr] = ACTIONS(1613), - [anon_sym_uptr] = ACTIONS(1613), - [anon_sym_isz] = ACTIONS(1613), - [anon_sym_usz] = ACTIONS(1613), - [anon_sym_anyfault] = ACTIONS(1613), - [anon_sym_any] = ACTIONS(1613), - [anon_sym_DOLLARtypeof] = ACTIONS(1613), - [anon_sym_DOLLARtypefrom] = ACTIONS(1613), - [anon_sym_DOLLARevaltype] = ACTIONS(1613), - [anon_sym_DOLLARvatype] = ACTIONS(1613), - [sym_real_literal] = ACTIONS(1615), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARendfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, - [669] = { - [sym_line_comment] = STATE(669), - [sym_doc_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [sym_ident] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_BQUOTE] = ACTIONS(1643), - [sym_bytes_literal] = ACTIONS(1643), + [637] = { + [sym_line_comment] = STATE(637), + [sym_doc_comment] = STATE(637), + [sym_block_comment] = STATE(637), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1641), - [sym_at_ident] = ACTIONS(1643), - [sym_hash_ident] = ACTIONS(1643), - [sym_type_ident] = ACTIONS(1643), - [sym_ct_type_ident] = ACTIONS(1643), - [sym_const_ident] = ACTIONS(1641), - [sym_builtin] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_tlocal] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_fn] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_var] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_defer] = ACTIONS(1641), - [anon_sym_assert] = ACTIONS(1641), - [anon_sym_nextcase] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_foreach] = ACTIONS(1641), - [anon_sym_foreach_r] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_int] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_asm] = ACTIONS(1641), - [anon_sym_DOLLARassert] = ACTIONS(1641), - [anon_sym_DOLLARerror] = ACTIONS(1641), - [anon_sym_DOLLARecho] = ACTIONS(1641), - [anon_sym_DOLLARif] = ACTIONS(1641), - [anon_sym_DOLLARswitch] = ACTIONS(1641), - [anon_sym_DOLLARfor] = ACTIONS(1641), - [anon_sym_DOLLARendfor] = ACTIONS(1641), - [anon_sym_DOLLARforeach] = ACTIONS(1641), - [anon_sym_DOLLARalignof] = ACTIONS(1641), - [anon_sym_DOLLARextnameof] = ACTIONS(1641), - [anon_sym_DOLLARnameof] = ACTIONS(1641), - [anon_sym_DOLLARoffsetof] = ACTIONS(1641), - [anon_sym_DOLLARqnameof] = ACTIONS(1641), - [anon_sym_DOLLARvaconst] = ACTIONS(1641), - [anon_sym_DOLLARvaarg] = ACTIONS(1641), - [anon_sym_DOLLARvaref] = ACTIONS(1641), - [anon_sym_DOLLARvaexpr] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [anon_sym_DOLLARvacount] = ACTIONS(1641), - [anon_sym_DOLLAReval] = ACTIONS(1641), - [anon_sym_DOLLARis_const] = ACTIONS(1641), - [anon_sym_DOLLARsizeof] = ACTIONS(1641), - [anon_sym_DOLLARstringify] = ACTIONS(1641), - [anon_sym_DOLLARappend] = ACTIONS(1641), - [anon_sym_DOLLARconcat] = ACTIONS(1641), - [anon_sym_DOLLARdefined] = ACTIONS(1641), - [anon_sym_DOLLARembed] = ACTIONS(1641), - [anon_sym_DOLLARand] = ACTIONS(1641), - [anon_sym_DOLLARor] = ACTIONS(1641), - [anon_sym_DOLLARfeature] = ACTIONS(1641), - [anon_sym_DOLLARassignable] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_typeid] = ACTIONS(1641), - [anon_sym_LBRACE_PIPE] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_char] = ACTIONS(1641), - [anon_sym_ichar] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [anon_sym_ushort] = ACTIONS(1641), - [anon_sym_uint] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_ulong] = ACTIONS(1641), - [anon_sym_int128] = ACTIONS(1641), - [anon_sym_uint128] = ACTIONS(1641), - [anon_sym_float] = ACTIONS(1641), - [anon_sym_double] = ACTIONS(1641), - [anon_sym_float16] = ACTIONS(1641), - [anon_sym_bfloat16] = ACTIONS(1641), - [anon_sym_float128] = ACTIONS(1641), - [anon_sym_iptr] = ACTIONS(1641), - [anon_sym_uptr] = ACTIONS(1641), - [anon_sym_isz] = ACTIONS(1641), - [anon_sym_usz] = ACTIONS(1641), - [anon_sym_anyfault] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_DOLLARtypeof] = ACTIONS(1641), - [anon_sym_DOLLARtypefrom] = ACTIONS(1641), - [anon_sym_DOLLARevaltype] = ACTIONS(1641), - [anon_sym_DOLLARvatype] = ACTIONS(1641), - [sym_real_literal] = ACTIONS(1643), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARendfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, - [670] = { - [sym_line_comment] = STATE(670), - [sym_doc_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [sym_ident] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [anon_sym_BQUOTE] = ACTIONS(1531), - [sym_bytes_literal] = ACTIONS(1531), + [638] = { + [sym_line_comment] = STATE(638), + [sym_doc_comment] = STATE(638), + [sym_block_comment] = STATE(638), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1529), - [sym_at_ident] = ACTIONS(1531), - [sym_hash_ident] = ACTIONS(1531), - [sym_type_ident] = ACTIONS(1531), - [sym_ct_type_ident] = ACTIONS(1531), - [sym_const_ident] = ACTIONS(1529), - [sym_builtin] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_tlocal] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_var] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_defer] = ACTIONS(1529), - [anon_sym_assert] = ACTIONS(1529), - [anon_sym_nextcase] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_foreach] = ACTIONS(1529), - [anon_sym_foreach_r] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_int] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_asm] = ACTIONS(1529), - [anon_sym_DOLLARassert] = ACTIONS(1529), - [anon_sym_DOLLARerror] = ACTIONS(1529), - [anon_sym_DOLLARecho] = ACTIONS(1529), - [anon_sym_DOLLARif] = ACTIONS(1529), - [anon_sym_DOLLARswitch] = ACTIONS(1529), - [anon_sym_DOLLARfor] = ACTIONS(1529), - [anon_sym_DOLLARendfor] = ACTIONS(1529), - [anon_sym_DOLLARforeach] = ACTIONS(1529), - [anon_sym_DOLLARalignof] = ACTIONS(1529), - [anon_sym_DOLLARextnameof] = ACTIONS(1529), - [anon_sym_DOLLARnameof] = ACTIONS(1529), - [anon_sym_DOLLARoffsetof] = ACTIONS(1529), - [anon_sym_DOLLARqnameof] = ACTIONS(1529), - [anon_sym_DOLLARvaconst] = ACTIONS(1529), - [anon_sym_DOLLARvaarg] = ACTIONS(1529), - [anon_sym_DOLLARvaref] = ACTIONS(1529), - [anon_sym_DOLLARvaexpr] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), - [anon_sym_null] = ACTIONS(1529), - [anon_sym_DOLLARvacount] = ACTIONS(1529), - [anon_sym_DOLLAReval] = ACTIONS(1529), - [anon_sym_DOLLARis_const] = ACTIONS(1529), - [anon_sym_DOLLARsizeof] = ACTIONS(1529), - [anon_sym_DOLLARstringify] = ACTIONS(1529), - [anon_sym_DOLLARappend] = ACTIONS(1529), - [anon_sym_DOLLARconcat] = ACTIONS(1529), - [anon_sym_DOLLARdefined] = ACTIONS(1529), - [anon_sym_DOLLARembed] = ACTIONS(1529), - [anon_sym_DOLLARand] = ACTIONS(1529), - [anon_sym_DOLLARor] = ACTIONS(1529), - [anon_sym_DOLLARfeature] = ACTIONS(1529), - [anon_sym_DOLLARassignable] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_typeid] = ACTIONS(1529), - [anon_sym_LBRACE_PIPE] = ACTIONS(1531), - [anon_sym_void] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_ichar] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [anon_sym_ushort] = ACTIONS(1529), - [anon_sym_uint] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_ulong] = ACTIONS(1529), - [anon_sym_int128] = ACTIONS(1529), - [anon_sym_uint128] = ACTIONS(1529), - [anon_sym_float] = ACTIONS(1529), - [anon_sym_double] = ACTIONS(1529), - [anon_sym_float16] = ACTIONS(1529), - [anon_sym_bfloat16] = ACTIONS(1529), - [anon_sym_float128] = ACTIONS(1529), - [anon_sym_iptr] = ACTIONS(1529), - [anon_sym_uptr] = ACTIONS(1529), - [anon_sym_isz] = ACTIONS(1529), - [anon_sym_usz] = ACTIONS(1529), - [anon_sym_anyfault] = ACTIONS(1529), - [anon_sym_any] = ACTIONS(1529), - [anon_sym_DOLLARtypeof] = ACTIONS(1529), - [anon_sym_DOLLARtypefrom] = ACTIONS(1529), - [anon_sym_DOLLARevaltype] = ACTIONS(1529), - [anon_sym_DOLLARvatype] = ACTIONS(1529), - [sym_real_literal] = ACTIONS(1531), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARendfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, - [671] = { - [sym_line_comment] = STATE(671), - [sym_doc_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [sym_ident] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_bytes_literal] = ACTIONS(1595), + [639] = { + [sym_line_comment] = STATE(639), + [sym_doc_comment] = STATE(639), + [sym_block_comment] = STATE(639), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1593), - [sym_at_ident] = ACTIONS(1595), - [sym_hash_ident] = ACTIONS(1595), - [sym_type_ident] = ACTIONS(1595), - [sym_ct_type_ident] = ACTIONS(1595), - [sym_const_ident] = ACTIONS(1593), - [sym_builtin] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_tlocal] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_fn] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_var] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_defer] = ACTIONS(1593), - [anon_sym_assert] = ACTIONS(1593), - [anon_sym_nextcase] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_foreach] = ACTIONS(1593), - [anon_sym_foreach_r] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_asm] = ACTIONS(1593), - [anon_sym_DOLLARassert] = ACTIONS(1593), - [anon_sym_DOLLARerror] = ACTIONS(1593), - [anon_sym_DOLLARecho] = ACTIONS(1593), - [anon_sym_DOLLARif] = ACTIONS(1593), - [anon_sym_DOLLARswitch] = ACTIONS(1593), - [anon_sym_DOLLARfor] = ACTIONS(1593), - [anon_sym_DOLLARforeach] = ACTIONS(1593), - [anon_sym_DOLLARendforeach] = ACTIONS(1593), - [anon_sym_DOLLARalignof] = ACTIONS(1593), - [anon_sym_DOLLARextnameof] = ACTIONS(1593), - [anon_sym_DOLLARnameof] = ACTIONS(1593), - [anon_sym_DOLLARoffsetof] = ACTIONS(1593), - [anon_sym_DOLLARqnameof] = ACTIONS(1593), - [anon_sym_DOLLARvaconst] = ACTIONS(1593), - [anon_sym_DOLLARvaarg] = ACTIONS(1593), - [anon_sym_DOLLARvaref] = ACTIONS(1593), - [anon_sym_DOLLARvaexpr] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_null] = ACTIONS(1593), - [anon_sym_DOLLARvacount] = ACTIONS(1593), - [anon_sym_DOLLAReval] = ACTIONS(1593), - [anon_sym_DOLLARis_const] = ACTIONS(1593), - [anon_sym_DOLLARsizeof] = ACTIONS(1593), - [anon_sym_DOLLARstringify] = ACTIONS(1593), - [anon_sym_DOLLARappend] = ACTIONS(1593), - [anon_sym_DOLLARconcat] = ACTIONS(1593), - [anon_sym_DOLLARdefined] = ACTIONS(1593), - [anon_sym_DOLLARembed] = ACTIONS(1593), - [anon_sym_DOLLARand] = ACTIONS(1593), - [anon_sym_DOLLARor] = ACTIONS(1593), - [anon_sym_DOLLARfeature] = ACTIONS(1593), - [anon_sym_DOLLARassignable] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_typeid] = ACTIONS(1593), - [anon_sym_LBRACE_PIPE] = ACTIONS(1595), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_ichar] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [anon_sym_ushort] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_ulong] = ACTIONS(1593), - [anon_sym_int128] = ACTIONS(1593), - [anon_sym_uint128] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_double] = ACTIONS(1593), - [anon_sym_float16] = ACTIONS(1593), - [anon_sym_bfloat16] = ACTIONS(1593), - [anon_sym_float128] = ACTIONS(1593), - [anon_sym_iptr] = ACTIONS(1593), - [anon_sym_uptr] = ACTIONS(1593), - [anon_sym_isz] = ACTIONS(1593), - [anon_sym_usz] = ACTIONS(1593), - [anon_sym_anyfault] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_DOLLARtypeof] = ACTIONS(1593), - [anon_sym_DOLLARtypefrom] = ACTIONS(1593), - [anon_sym_DOLLARevaltype] = ACTIONS(1593), - [anon_sym_DOLLARvatype] = ACTIONS(1593), - [sym_real_literal] = ACTIONS(1595), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARendfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), + }, + [640] = { + [sym_line_comment] = STATE(640), + [sym_doc_comment] = STATE(640), + [sym_block_comment] = STATE(640), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARendfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, - [672] = { - [sym_line_comment] = STATE(672), - [sym_doc_comment] = STATE(672), - [sym_block_comment] = STATE(672), + [641] = { + [sym_line_comment] = STATE(641), + [sym_doc_comment] = STATE(641), + [sym_block_comment] = STATE(641), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARendfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), + }, + [642] = { + [sym_line_comment] = STATE(642), + [sym_doc_comment] = STATE(642), + [sym_block_comment] = STATE(642), [sym_ident] = ACTIONS(1597), [sym_integer_literal] = ACTIONS(1599), [anon_sym_SQUOTE] = ACTIONS(1599), @@ -102983,8 +99448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(1597), [anon_sym_DOLLARswitch] = ACTIONS(1597), [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARendfor] = ACTIONS(1597), [anon_sym_DOLLARforeach] = ACTIONS(1597), - [anon_sym_DOLLARendforeach] = ACTIONS(1597), [anon_sym_DOLLARalignof] = ACTIONS(1597), [anon_sym_DOLLARextnameof] = ACTIONS(1597), [anon_sym_DOLLARnameof] = ACTIONS(1597), @@ -103044,10 +99509,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1597), [sym_real_literal] = ACTIONS(1599), }, - [673] = { - [sym_line_comment] = STATE(673), - [sym_doc_comment] = STATE(673), - [sym_block_comment] = STATE(673), + [643] = { + [sym_line_comment] = STATE(643), + [sym_doc_comment] = STATE(643), + [sym_block_comment] = STATE(643), [sym_ident] = ACTIONS(1601), [sym_integer_literal] = ACTIONS(1603), [anon_sym_SQUOTE] = ACTIONS(1603), @@ -103098,8 +99563,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(1601), [anon_sym_DOLLARswitch] = ACTIONS(1601), [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARendfor] = ACTIONS(1601), [anon_sym_DOLLARforeach] = ACTIONS(1601), - [anon_sym_DOLLARendforeach] = ACTIONS(1601), [anon_sym_DOLLARalignof] = ACTIONS(1601), [anon_sym_DOLLARextnameof] = ACTIONS(1601), [anon_sym_DOLLARnameof] = ACTIONS(1601), @@ -103159,10 +99624,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1601), [sym_real_literal] = ACTIONS(1603), }, - [674] = { - [sym_line_comment] = STATE(674), - [sym_doc_comment] = STATE(674), - [sym_block_comment] = STATE(674), + [644] = { + [sym_line_comment] = STATE(644), + [sym_doc_comment] = STATE(644), + [sym_block_comment] = STATE(644), [sym_ident] = ACTIONS(1605), [sym_integer_literal] = ACTIONS(1607), [anon_sym_SQUOTE] = ACTIONS(1607), @@ -103213,8 +99678,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(1605), [anon_sym_DOLLARswitch] = ACTIONS(1605), [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARendfor] = ACTIONS(1605), [anon_sym_DOLLARforeach] = ACTIONS(1605), - [anon_sym_DOLLARendforeach] = ACTIONS(1605), [anon_sym_DOLLARalignof] = ACTIONS(1605), [anon_sym_DOLLARextnameof] = ACTIONS(1605), [anon_sym_DOLLARnameof] = ACTIONS(1605), @@ -103274,10 +99739,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1605), [sym_real_literal] = ACTIONS(1607), }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_doc_comment] = STATE(675), - [sym_block_comment] = STATE(675), + [645] = { + [sym_line_comment] = STATE(645), + [sym_doc_comment] = STATE(645), + [sym_block_comment] = STATE(645), [sym_ident] = ACTIONS(1609), [sym_integer_literal] = ACTIONS(1611), [anon_sym_SQUOTE] = ACTIONS(1611), @@ -103328,8 +99793,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(1609), [anon_sym_DOLLARswitch] = ACTIONS(1609), [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARendfor] = ACTIONS(1609), [anon_sym_DOLLARforeach] = ACTIONS(1609), - [anon_sym_DOLLARendforeach] = ACTIONS(1609), [anon_sym_DOLLARalignof] = ACTIONS(1609), [anon_sym_DOLLARextnameof] = ACTIONS(1609), [anon_sym_DOLLARnameof] = ACTIONS(1609), @@ -103389,930 +99854,815 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1609), [sym_real_literal] = ACTIONS(1611), }, - [676] = { - [sym_line_comment] = STATE(676), - [sym_doc_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [sym_ident] = ACTIONS(1625), - [sym_integer_literal] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [anon_sym_BQUOTE] = ACTIONS(1627), - [sym_bytes_literal] = ACTIONS(1627), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1625), - [sym_at_ident] = ACTIONS(1627), - [sym_hash_ident] = ACTIONS(1627), - [sym_type_ident] = ACTIONS(1627), - [sym_ct_type_ident] = ACTIONS(1627), - [sym_const_ident] = ACTIONS(1625), - [sym_builtin] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_tlocal] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_fn] = ACTIONS(1625), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_var] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_defer] = ACTIONS(1625), - [anon_sym_assert] = ACTIONS(1625), - [anon_sym_nextcase] = ACTIONS(1625), - [anon_sym_switch] = ACTIONS(1625), - [anon_sym_AMP_AMP] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_foreach] = ACTIONS(1625), - [anon_sym_foreach_r] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_do] = ACTIONS(1625), - [anon_sym_int] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_asm] = ACTIONS(1625), - [anon_sym_DOLLARassert] = ACTIONS(1625), - [anon_sym_DOLLARerror] = ACTIONS(1625), - [anon_sym_DOLLARecho] = ACTIONS(1625), - [anon_sym_DOLLARif] = ACTIONS(1625), - [anon_sym_DOLLARswitch] = ACTIONS(1625), - [anon_sym_DOLLARfor] = ACTIONS(1625), - [anon_sym_DOLLARforeach] = ACTIONS(1625), - [anon_sym_DOLLARendforeach] = ACTIONS(1625), - [anon_sym_DOLLARalignof] = ACTIONS(1625), - [anon_sym_DOLLARextnameof] = ACTIONS(1625), - [anon_sym_DOLLARnameof] = ACTIONS(1625), - [anon_sym_DOLLARoffsetof] = ACTIONS(1625), - [anon_sym_DOLLARqnameof] = ACTIONS(1625), - [anon_sym_DOLLARvaconst] = ACTIONS(1625), - [anon_sym_DOLLARvaarg] = ACTIONS(1625), - [anon_sym_DOLLARvaref] = ACTIONS(1625), - [anon_sym_DOLLARvaexpr] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(1625), - [anon_sym_false] = ACTIONS(1625), - [anon_sym_null] = ACTIONS(1625), - [anon_sym_DOLLARvacount] = ACTIONS(1625), - [anon_sym_DOLLAReval] = ACTIONS(1625), - [anon_sym_DOLLARis_const] = ACTIONS(1625), - [anon_sym_DOLLARsizeof] = ACTIONS(1625), - [anon_sym_DOLLARstringify] = ACTIONS(1625), - [anon_sym_DOLLARappend] = ACTIONS(1625), - [anon_sym_DOLLARconcat] = ACTIONS(1625), - [anon_sym_DOLLARdefined] = ACTIONS(1625), - [anon_sym_DOLLARembed] = ACTIONS(1625), - [anon_sym_DOLLARand] = ACTIONS(1625), - [anon_sym_DOLLARor] = ACTIONS(1625), - [anon_sym_DOLLARfeature] = ACTIONS(1625), - [anon_sym_DOLLARassignable] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_TILDE] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_typeid] = ACTIONS(1625), - [anon_sym_LBRACE_PIPE] = ACTIONS(1627), - [anon_sym_void] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_char] = ACTIONS(1625), - [anon_sym_ichar] = ACTIONS(1625), - [anon_sym_short] = ACTIONS(1625), - [anon_sym_ushort] = ACTIONS(1625), - [anon_sym_uint] = ACTIONS(1625), - [anon_sym_long] = ACTIONS(1625), - [anon_sym_ulong] = ACTIONS(1625), - [anon_sym_int128] = ACTIONS(1625), - [anon_sym_uint128] = ACTIONS(1625), - [anon_sym_float] = ACTIONS(1625), - [anon_sym_double] = ACTIONS(1625), - [anon_sym_float16] = ACTIONS(1625), - [anon_sym_bfloat16] = ACTIONS(1625), - [anon_sym_float128] = ACTIONS(1625), - [anon_sym_iptr] = ACTIONS(1625), - [anon_sym_uptr] = ACTIONS(1625), - [anon_sym_isz] = ACTIONS(1625), - [anon_sym_usz] = ACTIONS(1625), - [anon_sym_anyfault] = ACTIONS(1625), - [anon_sym_any] = ACTIONS(1625), - [anon_sym_DOLLARtypeof] = ACTIONS(1625), - [anon_sym_DOLLARtypefrom] = ACTIONS(1625), - [anon_sym_DOLLARevaltype] = ACTIONS(1625), - [anon_sym_DOLLARvatype] = ACTIONS(1625), - [sym_real_literal] = ACTIONS(1627), - }, - [677] = { - [sym_line_comment] = STATE(677), - [sym_doc_comment] = STATE(677), - [sym_block_comment] = STATE(677), - [sym_ident] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1651), - [sym_bytes_literal] = ACTIONS(1651), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1649), - [sym_at_ident] = ACTIONS(1651), - [sym_hash_ident] = ACTIONS(1651), - [sym_type_ident] = ACTIONS(1651), - [sym_ct_type_ident] = ACTIONS(1651), - [sym_const_ident] = ACTIONS(1649), - [sym_builtin] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_tlocal] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_var] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_nextcase] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_foreach] = ACTIONS(1649), - [anon_sym_foreach_r] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_DOLLARassert] = ACTIONS(1649), - [anon_sym_DOLLARerror] = ACTIONS(1649), - [anon_sym_DOLLARecho] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_DOLLARswitch] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_DOLLARforeach] = ACTIONS(1649), - [anon_sym_DOLLARendforeach] = ACTIONS(1649), - [anon_sym_DOLLARalignof] = ACTIONS(1649), - [anon_sym_DOLLARextnameof] = ACTIONS(1649), - [anon_sym_DOLLARnameof] = ACTIONS(1649), - [anon_sym_DOLLARoffsetof] = ACTIONS(1649), - [anon_sym_DOLLARqnameof] = ACTIONS(1649), - [anon_sym_DOLLARvaconst] = ACTIONS(1649), - [anon_sym_DOLLARvaarg] = ACTIONS(1649), - [anon_sym_DOLLARvaref] = ACTIONS(1649), - [anon_sym_DOLLARvaexpr] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [anon_sym_DOLLARvacount] = ACTIONS(1649), - [anon_sym_DOLLAReval] = ACTIONS(1649), - [anon_sym_DOLLARis_const] = ACTIONS(1649), - [anon_sym_DOLLARsizeof] = ACTIONS(1649), - [anon_sym_DOLLARstringify] = ACTIONS(1649), - [anon_sym_DOLLARappend] = ACTIONS(1649), - [anon_sym_DOLLARconcat] = ACTIONS(1649), - [anon_sym_DOLLARdefined] = ACTIONS(1649), - [anon_sym_DOLLARembed] = ACTIONS(1649), - [anon_sym_DOLLARand] = ACTIONS(1649), - [anon_sym_DOLLARor] = ACTIONS(1649), - [anon_sym_DOLLARfeature] = ACTIONS(1649), - [anon_sym_DOLLARassignable] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_typeid] = ACTIONS(1649), - [anon_sym_LBRACE_PIPE] = ACTIONS(1651), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_ichar] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [anon_sym_ushort] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_ulong] = ACTIONS(1649), - [anon_sym_int128] = ACTIONS(1649), - [anon_sym_uint128] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_double] = ACTIONS(1649), - [anon_sym_float16] = ACTIONS(1649), - [anon_sym_bfloat16] = ACTIONS(1649), - [anon_sym_float128] = ACTIONS(1649), - [anon_sym_iptr] = ACTIONS(1649), - [anon_sym_uptr] = ACTIONS(1649), - [anon_sym_isz] = ACTIONS(1649), - [anon_sym_usz] = ACTIONS(1649), - [anon_sym_anyfault] = ACTIONS(1649), - [anon_sym_any] = ACTIONS(1649), - [anon_sym_DOLLARtypeof] = ACTIONS(1649), - [anon_sym_DOLLARtypefrom] = ACTIONS(1649), - [anon_sym_DOLLARevaltype] = ACTIONS(1649), - [anon_sym_DOLLARvatype] = ACTIONS(1649), - [sym_real_literal] = ACTIONS(1651), - }, - [678] = { - [sym_line_comment] = STATE(678), - [sym_doc_comment] = STATE(678), - [sym_block_comment] = STATE(678), - [sym_ident] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_BQUOTE] = ACTIONS(1405), - [sym_bytes_literal] = ACTIONS(1405), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1403), - [sym_at_ident] = ACTIONS(1405), - [sym_hash_ident] = ACTIONS(1405), - [sym_type_ident] = ACTIONS(1405), - [sym_ct_type_ident] = ACTIONS(1405), - [sym_const_ident] = ACTIONS(1403), - [sym_builtin] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_tlocal] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_defer] = ACTIONS(1403), - [anon_sym_assert] = ACTIONS(1403), - [anon_sym_nextcase] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_foreach] = ACTIONS(1403), - [anon_sym_foreach_r] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_int] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1403), - [anon_sym_DOLLARassert] = ACTIONS(1403), - [anon_sym_DOLLARerror] = ACTIONS(1403), - [anon_sym_DOLLARecho] = ACTIONS(1403), - [anon_sym_DOLLARif] = ACTIONS(1403), - [anon_sym_DOLLARswitch] = ACTIONS(1403), - [anon_sym_DOLLARfor] = ACTIONS(1403), - [anon_sym_DOLLARforeach] = ACTIONS(1403), - [anon_sym_DOLLARendforeach] = ACTIONS(1403), - [anon_sym_DOLLARalignof] = ACTIONS(1403), - [anon_sym_DOLLARextnameof] = ACTIONS(1403), - [anon_sym_DOLLARnameof] = ACTIONS(1403), - [anon_sym_DOLLARoffsetof] = ACTIONS(1403), - [anon_sym_DOLLARqnameof] = ACTIONS(1403), - [anon_sym_DOLLARvaconst] = ACTIONS(1403), - [anon_sym_DOLLARvaarg] = ACTIONS(1403), - [anon_sym_DOLLARvaref] = ACTIONS(1403), - [anon_sym_DOLLARvaexpr] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_DOLLARvacount] = ACTIONS(1403), - [anon_sym_DOLLAReval] = ACTIONS(1403), - [anon_sym_DOLLARis_const] = ACTIONS(1403), - [anon_sym_DOLLARsizeof] = ACTIONS(1403), - [anon_sym_DOLLARstringify] = ACTIONS(1403), - [anon_sym_DOLLARappend] = ACTIONS(1403), - [anon_sym_DOLLARconcat] = ACTIONS(1403), - [anon_sym_DOLLARdefined] = ACTIONS(1403), - [anon_sym_DOLLARembed] = ACTIONS(1403), - [anon_sym_DOLLARand] = ACTIONS(1403), - [anon_sym_DOLLARor] = ACTIONS(1403), - [anon_sym_DOLLARfeature] = ACTIONS(1403), - [anon_sym_DOLLARassignable] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_typeid] = ACTIONS(1403), - [anon_sym_LBRACE_PIPE] = ACTIONS(1405), - [anon_sym_void] = ACTIONS(1403), - [anon_sym_bool] = ACTIONS(1403), - [anon_sym_char] = ACTIONS(1403), - [anon_sym_ichar] = ACTIONS(1403), - [anon_sym_short] = ACTIONS(1403), - [anon_sym_ushort] = ACTIONS(1403), - [anon_sym_uint] = ACTIONS(1403), - [anon_sym_long] = ACTIONS(1403), - [anon_sym_ulong] = ACTIONS(1403), - [anon_sym_int128] = ACTIONS(1403), - [anon_sym_uint128] = ACTIONS(1403), - [anon_sym_float] = ACTIONS(1403), - [anon_sym_double] = ACTIONS(1403), - [anon_sym_float16] = ACTIONS(1403), - [anon_sym_bfloat16] = ACTIONS(1403), - [anon_sym_float128] = ACTIONS(1403), - [anon_sym_iptr] = ACTIONS(1403), - [anon_sym_uptr] = ACTIONS(1403), - [anon_sym_isz] = ACTIONS(1403), - [anon_sym_usz] = ACTIONS(1403), - [anon_sym_anyfault] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_DOLLARtypeof] = ACTIONS(1403), - [anon_sym_DOLLARtypefrom] = ACTIONS(1403), - [anon_sym_DOLLARevaltype] = ACTIONS(1403), - [anon_sym_DOLLARvatype] = ACTIONS(1403), - [sym_real_literal] = ACTIONS(1405), + [646] = { + [sym_line_comment] = STATE(646), + [sym_doc_comment] = STATE(646), + [sym_block_comment] = STATE(646), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARendforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), }, - [679] = { - [sym_line_comment] = STATE(679), - [sym_doc_comment] = STATE(679), - [sym_block_comment] = STATE(679), - [sym_ident] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [anon_sym_BQUOTE] = ACTIONS(1527), - [sym_bytes_literal] = ACTIONS(1527), + [647] = { + [sym_line_comment] = STATE(647), + [sym_doc_comment] = STATE(647), + [sym_block_comment] = STATE(647), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1525), - [sym_at_ident] = ACTIONS(1527), - [sym_hash_ident] = ACTIONS(1527), - [sym_type_ident] = ACTIONS(1527), - [sym_ct_type_ident] = ACTIONS(1527), - [sym_const_ident] = ACTIONS(1525), - [sym_builtin] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_tlocal] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_var] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_defer] = ACTIONS(1525), - [anon_sym_assert] = ACTIONS(1525), - [anon_sym_nextcase] = ACTIONS(1525), - [anon_sym_switch] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_foreach] = ACTIONS(1525), - [anon_sym_foreach_r] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_int] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym_DOLLARassert] = ACTIONS(1525), - [anon_sym_DOLLARerror] = ACTIONS(1525), - [anon_sym_DOLLARecho] = ACTIONS(1525), - [anon_sym_DOLLARif] = ACTIONS(1525), - [anon_sym_DOLLARswitch] = ACTIONS(1525), - [anon_sym_DOLLARfor] = ACTIONS(1525), - [anon_sym_DOLLARforeach] = ACTIONS(1525), - [anon_sym_DOLLARendforeach] = ACTIONS(1525), - [anon_sym_DOLLARalignof] = ACTIONS(1525), - [anon_sym_DOLLARextnameof] = ACTIONS(1525), - [anon_sym_DOLLARnameof] = ACTIONS(1525), - [anon_sym_DOLLARoffsetof] = ACTIONS(1525), - [anon_sym_DOLLARqnameof] = ACTIONS(1525), - [anon_sym_DOLLARvaconst] = ACTIONS(1525), - [anon_sym_DOLLARvaarg] = ACTIONS(1525), - [anon_sym_DOLLARvaref] = ACTIONS(1525), - [anon_sym_DOLLARvaexpr] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1525), - [anon_sym_false] = ACTIONS(1525), - [anon_sym_null] = ACTIONS(1525), - [anon_sym_DOLLARvacount] = ACTIONS(1525), - [anon_sym_DOLLAReval] = ACTIONS(1525), - [anon_sym_DOLLARis_const] = ACTIONS(1525), - [anon_sym_DOLLARsizeof] = ACTIONS(1525), - [anon_sym_DOLLARstringify] = ACTIONS(1525), - [anon_sym_DOLLARappend] = ACTIONS(1525), - [anon_sym_DOLLARconcat] = ACTIONS(1525), - [anon_sym_DOLLARdefined] = ACTIONS(1525), - [anon_sym_DOLLARembed] = ACTIONS(1525), - [anon_sym_DOLLARand] = ACTIONS(1525), - [anon_sym_DOLLARor] = ACTIONS(1525), - [anon_sym_DOLLARfeature] = ACTIONS(1525), - [anon_sym_DOLLARassignable] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_typeid] = ACTIONS(1525), - [anon_sym_LBRACE_PIPE] = ACTIONS(1527), - [anon_sym_void] = ACTIONS(1525), - [anon_sym_bool] = ACTIONS(1525), - [anon_sym_char] = ACTIONS(1525), - [anon_sym_ichar] = ACTIONS(1525), - [anon_sym_short] = ACTIONS(1525), - [anon_sym_ushort] = ACTIONS(1525), - [anon_sym_uint] = ACTIONS(1525), - [anon_sym_long] = ACTIONS(1525), - [anon_sym_ulong] = ACTIONS(1525), - [anon_sym_int128] = ACTIONS(1525), - [anon_sym_uint128] = ACTIONS(1525), - [anon_sym_float] = ACTIONS(1525), - [anon_sym_double] = ACTIONS(1525), - [anon_sym_float16] = ACTIONS(1525), - [anon_sym_bfloat16] = ACTIONS(1525), - [anon_sym_float128] = ACTIONS(1525), - [anon_sym_iptr] = ACTIONS(1525), - [anon_sym_uptr] = ACTIONS(1525), - [anon_sym_isz] = ACTIONS(1525), - [anon_sym_usz] = ACTIONS(1525), - [anon_sym_anyfault] = ACTIONS(1525), - [anon_sym_any] = ACTIONS(1525), - [anon_sym_DOLLARtypeof] = ACTIONS(1525), - [anon_sym_DOLLARtypefrom] = ACTIONS(1525), - [anon_sym_DOLLARevaltype] = ACTIONS(1525), - [anon_sym_DOLLARvatype] = ACTIONS(1525), - [sym_real_literal] = ACTIONS(1527), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARendforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, - [680] = { - [sym_line_comment] = STATE(680), - [sym_doc_comment] = STATE(680), - [sym_block_comment] = STATE(680), - [sym_ident] = ACTIONS(1589), - [sym_integer_literal] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [anon_sym_BQUOTE] = ACTIONS(1591), - [sym_bytes_literal] = ACTIONS(1591), + [648] = { + [sym_line_comment] = STATE(648), + [sym_doc_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1589), - [sym_at_ident] = ACTIONS(1591), - [sym_hash_ident] = ACTIONS(1591), - [sym_type_ident] = ACTIONS(1591), - [sym_ct_type_ident] = ACTIONS(1591), - [sym_const_ident] = ACTIONS(1589), - [sym_builtin] = ACTIONS(1591), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1589), - [anon_sym_tlocal] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_fn] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1589), - [anon_sym_var] = ACTIONS(1589), - [anon_sym_return] = ACTIONS(1589), - [anon_sym_continue] = ACTIONS(1589), - [anon_sym_break] = ACTIONS(1589), - [anon_sym_defer] = ACTIONS(1589), - [anon_sym_assert] = ACTIONS(1589), - [anon_sym_nextcase] = ACTIONS(1589), - [anon_sym_switch] = ACTIONS(1589), - [anon_sym_AMP_AMP] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1589), - [anon_sym_for] = ACTIONS(1589), - [anon_sym_foreach] = ACTIONS(1589), - [anon_sym_foreach_r] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1589), - [anon_sym_int] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_asm] = ACTIONS(1589), - [anon_sym_DOLLARassert] = ACTIONS(1589), - [anon_sym_DOLLARerror] = ACTIONS(1589), - [anon_sym_DOLLARecho] = ACTIONS(1589), - [anon_sym_DOLLARif] = ACTIONS(1589), - [anon_sym_DOLLARswitch] = ACTIONS(1589), - [anon_sym_DOLLARfor] = ACTIONS(1589), - [anon_sym_DOLLARforeach] = ACTIONS(1589), - [anon_sym_DOLLARendforeach] = ACTIONS(1589), - [anon_sym_DOLLARalignof] = ACTIONS(1589), - [anon_sym_DOLLARextnameof] = ACTIONS(1589), - [anon_sym_DOLLARnameof] = ACTIONS(1589), - [anon_sym_DOLLARoffsetof] = ACTIONS(1589), - [anon_sym_DOLLARqnameof] = ACTIONS(1589), - [anon_sym_DOLLARvaconst] = ACTIONS(1589), - [anon_sym_DOLLARvaarg] = ACTIONS(1589), - [anon_sym_DOLLARvaref] = ACTIONS(1589), - [anon_sym_DOLLARvaexpr] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_DOLLARvacount] = ACTIONS(1589), - [anon_sym_DOLLAReval] = ACTIONS(1589), - [anon_sym_DOLLARis_const] = ACTIONS(1589), - [anon_sym_DOLLARsizeof] = ACTIONS(1589), - [anon_sym_DOLLARstringify] = ACTIONS(1589), - [anon_sym_DOLLARappend] = ACTIONS(1589), - [anon_sym_DOLLARconcat] = ACTIONS(1589), - [anon_sym_DOLLARdefined] = ACTIONS(1589), - [anon_sym_DOLLARembed] = ACTIONS(1589), - [anon_sym_DOLLARand] = ACTIONS(1589), - [anon_sym_DOLLARor] = ACTIONS(1589), - [anon_sym_DOLLARfeature] = ACTIONS(1589), - [anon_sym_DOLLARassignable] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_typeid] = ACTIONS(1589), - [anon_sym_LBRACE_PIPE] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(1589), - [anon_sym_bool] = ACTIONS(1589), - [anon_sym_char] = ACTIONS(1589), - [anon_sym_ichar] = ACTIONS(1589), - [anon_sym_short] = ACTIONS(1589), - [anon_sym_ushort] = ACTIONS(1589), - [anon_sym_uint] = ACTIONS(1589), - [anon_sym_long] = ACTIONS(1589), - [anon_sym_ulong] = ACTIONS(1589), - [anon_sym_int128] = ACTIONS(1589), - [anon_sym_uint128] = ACTIONS(1589), - [anon_sym_float] = ACTIONS(1589), - [anon_sym_double] = ACTIONS(1589), - [anon_sym_float16] = ACTIONS(1589), - [anon_sym_bfloat16] = ACTIONS(1589), - [anon_sym_float128] = ACTIONS(1589), - [anon_sym_iptr] = ACTIONS(1589), - [anon_sym_uptr] = ACTIONS(1589), - [anon_sym_isz] = ACTIONS(1589), - [anon_sym_usz] = ACTIONS(1589), - [anon_sym_anyfault] = ACTIONS(1589), - [anon_sym_any] = ACTIONS(1589), - [anon_sym_DOLLARtypeof] = ACTIONS(1589), - [anon_sym_DOLLARtypefrom] = ACTIONS(1589), - [anon_sym_DOLLARevaltype] = ACTIONS(1589), - [anon_sym_DOLLARvatype] = ACTIONS(1589), - [sym_real_literal] = ACTIONS(1591), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARendfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_doc_comment] = STATE(681), - [sym_block_comment] = STATE(681), - [sym_ident] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [sym_bytes_literal] = ACTIONS(1365), + [649] = { + [sym_line_comment] = STATE(649), + [sym_doc_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1363), - [sym_at_ident] = ACTIONS(1365), - [sym_hash_ident] = ACTIONS(1365), - [sym_type_ident] = ACTIONS(1365), - [sym_ct_type_ident] = ACTIONS(1365), - [sym_const_ident] = ACTIONS(1363), - [sym_builtin] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_tlocal] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_var] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_defer] = ACTIONS(1363), - [anon_sym_assert] = ACTIONS(1363), - [anon_sym_nextcase] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_foreach] = ACTIONS(1363), - [anon_sym_foreach_r] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_int] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym_DOLLARassert] = ACTIONS(1363), - [anon_sym_DOLLARerror] = ACTIONS(1363), - [anon_sym_DOLLARecho] = ACTIONS(1363), - [anon_sym_DOLLARif] = ACTIONS(1363), - [anon_sym_DOLLARswitch] = ACTIONS(1363), - [anon_sym_DOLLARfor] = ACTIONS(1363), - [anon_sym_DOLLARforeach] = ACTIONS(1363), - [anon_sym_DOLLARendforeach] = ACTIONS(1363), - [anon_sym_DOLLARalignof] = ACTIONS(1363), - [anon_sym_DOLLARextnameof] = ACTIONS(1363), - [anon_sym_DOLLARnameof] = ACTIONS(1363), - [anon_sym_DOLLARoffsetof] = ACTIONS(1363), - [anon_sym_DOLLARqnameof] = ACTIONS(1363), - [anon_sym_DOLLARvaconst] = ACTIONS(1363), - [anon_sym_DOLLARvaarg] = ACTIONS(1363), - [anon_sym_DOLLARvaref] = ACTIONS(1363), - [anon_sym_DOLLARvaexpr] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_null] = ACTIONS(1363), - [anon_sym_DOLLARvacount] = ACTIONS(1363), - [anon_sym_DOLLAReval] = ACTIONS(1363), - [anon_sym_DOLLARis_const] = ACTIONS(1363), - [anon_sym_DOLLARsizeof] = ACTIONS(1363), - [anon_sym_DOLLARstringify] = ACTIONS(1363), - [anon_sym_DOLLARappend] = ACTIONS(1363), - [anon_sym_DOLLARconcat] = ACTIONS(1363), - [anon_sym_DOLLARdefined] = ACTIONS(1363), - [anon_sym_DOLLARembed] = ACTIONS(1363), - [anon_sym_DOLLARand] = ACTIONS(1363), - [anon_sym_DOLLARor] = ACTIONS(1363), - [anon_sym_DOLLARfeature] = ACTIONS(1363), - [anon_sym_DOLLARassignable] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_typeid] = ACTIONS(1363), - [anon_sym_LBRACE_PIPE] = ACTIONS(1365), - [anon_sym_void] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_ichar] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_ushort] = ACTIONS(1363), - [anon_sym_uint] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_ulong] = ACTIONS(1363), - [anon_sym_int128] = ACTIONS(1363), - [anon_sym_uint128] = ACTIONS(1363), - [anon_sym_float] = ACTIONS(1363), - [anon_sym_double] = ACTIONS(1363), - [anon_sym_float16] = ACTIONS(1363), - [anon_sym_bfloat16] = ACTIONS(1363), - [anon_sym_float128] = ACTIONS(1363), - [anon_sym_iptr] = ACTIONS(1363), - [anon_sym_uptr] = ACTIONS(1363), - [anon_sym_isz] = ACTIONS(1363), - [anon_sym_usz] = ACTIONS(1363), - [anon_sym_anyfault] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1363), - [anon_sym_DOLLARtypeof] = ACTIONS(1363), - [anon_sym_DOLLARtypefrom] = ACTIONS(1363), - [anon_sym_DOLLARevaltype] = ACTIONS(1363), - [anon_sym_DOLLARvatype] = ACTIONS(1363), - [sym_real_literal] = ACTIONS(1365), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARendfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), + }, + [650] = { + [sym_line_comment] = STATE(650), + [sym_doc_comment] = STATE(650), + [sym_block_comment] = STATE(650), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARendfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_doc_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [sym_ident] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_bytes_literal] = ACTIONS(1647), + [651] = { + [sym_line_comment] = STATE(651), + [sym_doc_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1645), - [sym_at_ident] = ACTIONS(1647), - [sym_hash_ident] = ACTIONS(1647), - [sym_type_ident] = ACTIONS(1647), - [sym_ct_type_ident] = ACTIONS(1647), - [sym_const_ident] = ACTIONS(1645), - [sym_builtin] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_tlocal] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_fn] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_var] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_defer] = ACTIONS(1645), - [anon_sym_assert] = ACTIONS(1645), - [anon_sym_nextcase] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_foreach] = ACTIONS(1645), - [anon_sym_foreach_r] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_int] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_asm] = ACTIONS(1645), - [anon_sym_DOLLARassert] = ACTIONS(1645), - [anon_sym_DOLLARerror] = ACTIONS(1645), - [anon_sym_DOLLARecho] = ACTIONS(1645), - [anon_sym_DOLLARif] = ACTIONS(1645), - [anon_sym_DOLLARswitch] = ACTIONS(1645), - [anon_sym_DOLLARfor] = ACTIONS(1645), - [anon_sym_DOLLARforeach] = ACTIONS(1645), - [anon_sym_DOLLARendforeach] = ACTIONS(1645), - [anon_sym_DOLLARalignof] = ACTIONS(1645), - [anon_sym_DOLLARextnameof] = ACTIONS(1645), - [anon_sym_DOLLARnameof] = ACTIONS(1645), - [anon_sym_DOLLARoffsetof] = ACTIONS(1645), - [anon_sym_DOLLARqnameof] = ACTIONS(1645), - [anon_sym_DOLLARvaconst] = ACTIONS(1645), - [anon_sym_DOLLARvaarg] = ACTIONS(1645), - [anon_sym_DOLLARvaref] = ACTIONS(1645), - [anon_sym_DOLLARvaexpr] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [anon_sym_DOLLARvacount] = ACTIONS(1645), - [anon_sym_DOLLAReval] = ACTIONS(1645), - [anon_sym_DOLLARis_const] = ACTIONS(1645), - [anon_sym_DOLLARsizeof] = ACTIONS(1645), - [anon_sym_DOLLARstringify] = ACTIONS(1645), - [anon_sym_DOLLARappend] = ACTIONS(1645), - [anon_sym_DOLLARconcat] = ACTIONS(1645), - [anon_sym_DOLLARdefined] = ACTIONS(1645), - [anon_sym_DOLLARembed] = ACTIONS(1645), - [anon_sym_DOLLARand] = ACTIONS(1645), - [anon_sym_DOLLARor] = ACTIONS(1645), - [anon_sym_DOLLARfeature] = ACTIONS(1645), - [anon_sym_DOLLARassignable] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_typeid] = ACTIONS(1645), - [anon_sym_LBRACE_PIPE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [anon_sym_ichar] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [anon_sym_ushort] = ACTIONS(1645), - [anon_sym_uint] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_ulong] = ACTIONS(1645), - [anon_sym_int128] = ACTIONS(1645), - [anon_sym_uint128] = ACTIONS(1645), - [anon_sym_float] = ACTIONS(1645), - [anon_sym_double] = ACTIONS(1645), - [anon_sym_float16] = ACTIONS(1645), - [anon_sym_bfloat16] = ACTIONS(1645), - [anon_sym_float128] = ACTIONS(1645), - [anon_sym_iptr] = ACTIONS(1645), - [anon_sym_uptr] = ACTIONS(1645), - [anon_sym_isz] = ACTIONS(1645), - [anon_sym_usz] = ACTIONS(1645), - [anon_sym_anyfault] = ACTIONS(1645), - [anon_sym_any] = ACTIONS(1645), - [anon_sym_DOLLARtypeof] = ACTIONS(1645), - [anon_sym_DOLLARtypefrom] = ACTIONS(1645), - [anon_sym_DOLLARevaltype] = ACTIONS(1645), - [anon_sym_DOLLARvatype] = ACTIONS(1645), - [sym_real_literal] = ACTIONS(1647), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARendfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, - [683] = { - [sym_line_comment] = STATE(683), - [sym_doc_comment] = STATE(683), - [sym_block_comment] = STATE(683), - [sym_ident] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_bytes_literal] = ACTIONS(1571), + [652] = { + [sym_line_comment] = STATE(652), + [sym_doc_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1569), - [sym_at_ident] = ACTIONS(1571), - [sym_hash_ident] = ACTIONS(1571), - [sym_type_ident] = ACTIONS(1571), - [sym_ct_type_ident] = ACTIONS(1571), - [sym_const_ident] = ACTIONS(1569), - [sym_builtin] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_tlocal] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_var] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_defer] = ACTIONS(1569), - [anon_sym_assert] = ACTIONS(1569), - [anon_sym_nextcase] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_foreach] = ACTIONS(1569), - [anon_sym_foreach_r] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_int] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_asm] = ACTIONS(1569), - [anon_sym_DOLLARassert] = ACTIONS(1569), - [anon_sym_DOLLARerror] = ACTIONS(1569), - [anon_sym_DOLLARecho] = ACTIONS(1569), - [anon_sym_DOLLARif] = ACTIONS(1569), - [anon_sym_DOLLARswitch] = ACTIONS(1569), - [anon_sym_DOLLARfor] = ACTIONS(1569), - [anon_sym_DOLLARforeach] = ACTIONS(1569), - [anon_sym_DOLLARendforeach] = ACTIONS(1569), - [anon_sym_DOLLARalignof] = ACTIONS(1569), - [anon_sym_DOLLARextnameof] = ACTIONS(1569), - [anon_sym_DOLLARnameof] = ACTIONS(1569), - [anon_sym_DOLLARoffsetof] = ACTIONS(1569), - [anon_sym_DOLLARqnameof] = ACTIONS(1569), - [anon_sym_DOLLARvaconst] = ACTIONS(1569), - [anon_sym_DOLLARvaarg] = ACTIONS(1569), - [anon_sym_DOLLARvaref] = ACTIONS(1569), - [anon_sym_DOLLARvaexpr] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [anon_sym_DOLLARvacount] = ACTIONS(1569), - [anon_sym_DOLLAReval] = ACTIONS(1569), - [anon_sym_DOLLARis_const] = ACTIONS(1569), - [anon_sym_DOLLARsizeof] = ACTIONS(1569), - [anon_sym_DOLLARstringify] = ACTIONS(1569), - [anon_sym_DOLLARappend] = ACTIONS(1569), - [anon_sym_DOLLARconcat] = ACTIONS(1569), - [anon_sym_DOLLARdefined] = ACTIONS(1569), - [anon_sym_DOLLARembed] = ACTIONS(1569), - [anon_sym_DOLLARand] = ACTIONS(1569), - [anon_sym_DOLLARor] = ACTIONS(1569), - [anon_sym_DOLLARfeature] = ACTIONS(1569), - [anon_sym_DOLLARassignable] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_typeid] = ACTIONS(1569), - [anon_sym_LBRACE_PIPE] = ACTIONS(1571), - [anon_sym_void] = ACTIONS(1569), - [anon_sym_bool] = ACTIONS(1569), - [anon_sym_char] = ACTIONS(1569), - [anon_sym_ichar] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [anon_sym_ushort] = ACTIONS(1569), - [anon_sym_uint] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_ulong] = ACTIONS(1569), - [anon_sym_int128] = ACTIONS(1569), - [anon_sym_uint128] = ACTIONS(1569), - [anon_sym_float] = ACTIONS(1569), - [anon_sym_double] = ACTIONS(1569), - [anon_sym_float16] = ACTIONS(1569), - [anon_sym_bfloat16] = ACTIONS(1569), - [anon_sym_float128] = ACTIONS(1569), - [anon_sym_iptr] = ACTIONS(1569), - [anon_sym_uptr] = ACTIONS(1569), - [anon_sym_isz] = ACTIONS(1569), - [anon_sym_usz] = ACTIONS(1569), - [anon_sym_anyfault] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_DOLLARtypeof] = ACTIONS(1569), - [anon_sym_DOLLARtypefrom] = ACTIONS(1569), - [anon_sym_DOLLARevaltype] = ACTIONS(1569), - [anon_sym_DOLLARvatype] = ACTIONS(1569), - [sym_real_literal] = ACTIONS(1571), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARendfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, - [684] = { - [sym_line_comment] = STATE(684), - [sym_doc_comment] = STATE(684), - [sym_block_comment] = STATE(684), + [653] = { + [sym_line_comment] = STATE(653), + [sym_doc_comment] = STATE(653), + [sym_block_comment] = STATE(653), [sym_ident] = ACTIONS(1629), [sym_integer_literal] = ACTIONS(1631), [anon_sym_SQUOTE] = ACTIONS(1631), @@ -104363,8 +100713,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(1629), [anon_sym_DOLLARswitch] = ACTIONS(1629), [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARendfor] = ACTIONS(1629), [anon_sym_DOLLARforeach] = ACTIONS(1629), - [anon_sym_DOLLARendforeach] = ACTIONS(1629), [anon_sym_DOLLARalignof] = ACTIONS(1629), [anon_sym_DOLLARextnameof] = ACTIONS(1629), [anon_sym_DOLLARnameof] = ACTIONS(1629), @@ -104424,700 +100774,470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1629), [sym_real_literal] = ACTIONS(1631), }, - [685] = { - [sym_line_comment] = STATE(685), - [sym_doc_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [sym_ident] = ACTIONS(1633), - [sym_integer_literal] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), - [sym_bytes_literal] = ACTIONS(1635), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1633), - [sym_at_ident] = ACTIONS(1635), - [sym_hash_ident] = ACTIONS(1635), - [sym_type_ident] = ACTIONS(1635), - [sym_ct_type_ident] = ACTIONS(1635), - [sym_const_ident] = ACTIONS(1633), - [sym_builtin] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_tlocal] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_fn] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_var] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_defer] = ACTIONS(1633), - [anon_sym_assert] = ACTIONS(1633), - [anon_sym_nextcase] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_foreach] = ACTIONS(1633), - [anon_sym_foreach_r] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_int] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1633), - [anon_sym_DOLLARassert] = ACTIONS(1633), - [anon_sym_DOLLARerror] = ACTIONS(1633), - [anon_sym_DOLLARecho] = ACTIONS(1633), - [anon_sym_DOLLARif] = ACTIONS(1633), - [anon_sym_DOLLARswitch] = ACTIONS(1633), - [anon_sym_DOLLARfor] = ACTIONS(1633), - [anon_sym_DOLLARforeach] = ACTIONS(1633), - [anon_sym_DOLLARendforeach] = ACTIONS(1633), - [anon_sym_DOLLARalignof] = ACTIONS(1633), - [anon_sym_DOLLARextnameof] = ACTIONS(1633), - [anon_sym_DOLLARnameof] = ACTIONS(1633), - [anon_sym_DOLLARoffsetof] = ACTIONS(1633), - [anon_sym_DOLLARqnameof] = ACTIONS(1633), - [anon_sym_DOLLARvaconst] = ACTIONS(1633), - [anon_sym_DOLLARvaarg] = ACTIONS(1633), - [anon_sym_DOLLARvaref] = ACTIONS(1633), - [anon_sym_DOLLARvaexpr] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [anon_sym_DOLLARvacount] = ACTIONS(1633), - [anon_sym_DOLLAReval] = ACTIONS(1633), - [anon_sym_DOLLARis_const] = ACTIONS(1633), - [anon_sym_DOLLARsizeof] = ACTIONS(1633), - [anon_sym_DOLLARstringify] = ACTIONS(1633), - [anon_sym_DOLLARappend] = ACTIONS(1633), - [anon_sym_DOLLARconcat] = ACTIONS(1633), - [anon_sym_DOLLARdefined] = ACTIONS(1633), - [anon_sym_DOLLARembed] = ACTIONS(1633), - [anon_sym_DOLLARand] = ACTIONS(1633), - [anon_sym_DOLLARor] = ACTIONS(1633), - [anon_sym_DOLLARfeature] = ACTIONS(1633), - [anon_sym_DOLLARassignable] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_typeid] = ACTIONS(1633), - [anon_sym_LBRACE_PIPE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1633), - [anon_sym_bool] = ACTIONS(1633), - [anon_sym_char] = ACTIONS(1633), - [anon_sym_ichar] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [anon_sym_ushort] = ACTIONS(1633), - [anon_sym_uint] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_ulong] = ACTIONS(1633), - [anon_sym_int128] = ACTIONS(1633), - [anon_sym_uint128] = ACTIONS(1633), - [anon_sym_float] = ACTIONS(1633), - [anon_sym_double] = ACTIONS(1633), - [anon_sym_float16] = ACTIONS(1633), - [anon_sym_bfloat16] = ACTIONS(1633), - [anon_sym_float128] = ACTIONS(1633), - [anon_sym_iptr] = ACTIONS(1633), - [anon_sym_uptr] = ACTIONS(1633), - [anon_sym_isz] = ACTIONS(1633), - [anon_sym_usz] = ACTIONS(1633), - [anon_sym_anyfault] = ACTIONS(1633), - [anon_sym_any] = ACTIONS(1633), - [anon_sym_DOLLARtypeof] = ACTIONS(1633), - [anon_sym_DOLLARtypefrom] = ACTIONS(1633), - [anon_sym_DOLLARevaltype] = ACTIONS(1633), - [anon_sym_DOLLARvatype] = ACTIONS(1633), - [sym_real_literal] = ACTIONS(1635), - }, - [686] = { - [sym_line_comment] = STATE(686), - [sym_doc_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [sym_ident] = ACTIONS(1387), - [sym_integer_literal] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [anon_sym_BQUOTE] = ACTIONS(1389), - [sym_bytes_literal] = ACTIONS(1389), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1387), - [sym_at_ident] = ACTIONS(1389), - [sym_hash_ident] = ACTIONS(1389), - [sym_type_ident] = ACTIONS(1389), - [sym_ct_type_ident] = ACTIONS(1389), - [sym_const_ident] = ACTIONS(1387), - [sym_builtin] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_tlocal] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_var] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_defer] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_nextcase] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_foreach] = ACTIONS(1387), - [anon_sym_foreach_r] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_int] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym_DOLLARassert] = ACTIONS(1387), - [anon_sym_DOLLARerror] = ACTIONS(1387), - [anon_sym_DOLLARecho] = ACTIONS(1387), - [anon_sym_DOLLARif] = ACTIONS(1387), - [anon_sym_DOLLARswitch] = ACTIONS(1387), - [anon_sym_DOLLARfor] = ACTIONS(1387), - [anon_sym_DOLLARforeach] = ACTIONS(1387), - [anon_sym_DOLLARendforeach] = ACTIONS(1387), - [anon_sym_DOLLARalignof] = ACTIONS(1387), - [anon_sym_DOLLARextnameof] = ACTIONS(1387), - [anon_sym_DOLLARnameof] = ACTIONS(1387), - [anon_sym_DOLLARoffsetof] = ACTIONS(1387), - [anon_sym_DOLLARqnameof] = ACTIONS(1387), - [anon_sym_DOLLARvaconst] = ACTIONS(1387), - [anon_sym_DOLLARvaarg] = ACTIONS(1387), - [anon_sym_DOLLARvaref] = ACTIONS(1387), - [anon_sym_DOLLARvaexpr] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_null] = ACTIONS(1387), - [anon_sym_DOLLARvacount] = ACTIONS(1387), - [anon_sym_DOLLAReval] = ACTIONS(1387), - [anon_sym_DOLLARis_const] = ACTIONS(1387), - [anon_sym_DOLLARsizeof] = ACTIONS(1387), - [anon_sym_DOLLARstringify] = ACTIONS(1387), - [anon_sym_DOLLARappend] = ACTIONS(1387), - [anon_sym_DOLLARconcat] = ACTIONS(1387), - [anon_sym_DOLLARdefined] = ACTIONS(1387), - [anon_sym_DOLLARembed] = ACTIONS(1387), - [anon_sym_DOLLARand] = ACTIONS(1387), - [anon_sym_DOLLARor] = ACTIONS(1387), - [anon_sym_DOLLARfeature] = ACTIONS(1387), - [anon_sym_DOLLARassignable] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_typeid] = ACTIONS(1387), - [anon_sym_LBRACE_PIPE] = ACTIONS(1389), - [anon_sym_void] = ACTIONS(1387), - [anon_sym_bool] = ACTIONS(1387), - [anon_sym_char] = ACTIONS(1387), - [anon_sym_ichar] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_ushort] = ACTIONS(1387), - [anon_sym_uint] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_ulong] = ACTIONS(1387), - [anon_sym_int128] = ACTIONS(1387), - [anon_sym_uint128] = ACTIONS(1387), - [anon_sym_float] = ACTIONS(1387), - [anon_sym_double] = ACTIONS(1387), - [anon_sym_float16] = ACTIONS(1387), - [anon_sym_bfloat16] = ACTIONS(1387), - [anon_sym_float128] = ACTIONS(1387), - [anon_sym_iptr] = ACTIONS(1387), - [anon_sym_uptr] = ACTIONS(1387), - [anon_sym_isz] = ACTIONS(1387), - [anon_sym_usz] = ACTIONS(1387), - [anon_sym_anyfault] = ACTIONS(1387), - [anon_sym_any] = ACTIONS(1387), - [anon_sym_DOLLARtypeof] = ACTIONS(1387), - [anon_sym_DOLLARtypefrom] = ACTIONS(1387), - [anon_sym_DOLLARevaltype] = ACTIONS(1387), - [anon_sym_DOLLARvatype] = ACTIONS(1387), - [sym_real_literal] = ACTIONS(1389), - }, - [687] = { - [sym_line_comment] = STATE(687), - [sym_doc_comment] = STATE(687), - [sym_block_comment] = STATE(687), - [sym_ident] = ACTIONS(1391), - [sym_integer_literal] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [anon_sym_BQUOTE] = ACTIONS(1393), - [sym_bytes_literal] = ACTIONS(1393), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1391), - [sym_at_ident] = ACTIONS(1393), - [sym_hash_ident] = ACTIONS(1393), - [sym_type_ident] = ACTIONS(1393), - [sym_ct_type_ident] = ACTIONS(1393), - [sym_const_ident] = ACTIONS(1391), - [sym_builtin] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_tlocal] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_var] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_defer] = ACTIONS(1391), - [anon_sym_assert] = ACTIONS(1391), - [anon_sym_nextcase] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_foreach] = ACTIONS(1391), - [anon_sym_foreach_r] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_int] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1391), - [anon_sym_DOLLARassert] = ACTIONS(1391), - [anon_sym_DOLLARerror] = ACTIONS(1391), - [anon_sym_DOLLARecho] = ACTIONS(1391), - [anon_sym_DOLLARif] = ACTIONS(1391), - [anon_sym_DOLLARswitch] = ACTIONS(1391), - [anon_sym_DOLLARfor] = ACTIONS(1391), - [anon_sym_DOLLARforeach] = ACTIONS(1391), - [anon_sym_DOLLARendforeach] = ACTIONS(1391), - [anon_sym_DOLLARalignof] = ACTIONS(1391), - [anon_sym_DOLLARextnameof] = ACTIONS(1391), - [anon_sym_DOLLARnameof] = ACTIONS(1391), - [anon_sym_DOLLARoffsetof] = ACTIONS(1391), - [anon_sym_DOLLARqnameof] = ACTIONS(1391), - [anon_sym_DOLLARvaconst] = ACTIONS(1391), - [anon_sym_DOLLARvaarg] = ACTIONS(1391), - [anon_sym_DOLLARvaref] = ACTIONS(1391), - [anon_sym_DOLLARvaexpr] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1391), - [anon_sym_false] = ACTIONS(1391), - [anon_sym_null] = ACTIONS(1391), - [anon_sym_DOLLARvacount] = ACTIONS(1391), - [anon_sym_DOLLAReval] = ACTIONS(1391), - [anon_sym_DOLLARis_const] = ACTIONS(1391), - [anon_sym_DOLLARsizeof] = ACTIONS(1391), - [anon_sym_DOLLARstringify] = ACTIONS(1391), - [anon_sym_DOLLARappend] = ACTIONS(1391), - [anon_sym_DOLLARconcat] = ACTIONS(1391), - [anon_sym_DOLLARdefined] = ACTIONS(1391), - [anon_sym_DOLLARembed] = ACTIONS(1391), - [anon_sym_DOLLARand] = ACTIONS(1391), - [anon_sym_DOLLARor] = ACTIONS(1391), - [anon_sym_DOLLARfeature] = ACTIONS(1391), - [anon_sym_DOLLARassignable] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_typeid] = ACTIONS(1391), - [anon_sym_LBRACE_PIPE] = ACTIONS(1393), - [anon_sym_void] = ACTIONS(1391), - [anon_sym_bool] = ACTIONS(1391), - [anon_sym_char] = ACTIONS(1391), - [anon_sym_ichar] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_ushort] = ACTIONS(1391), - [anon_sym_uint] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_ulong] = ACTIONS(1391), - [anon_sym_int128] = ACTIONS(1391), - [anon_sym_uint128] = ACTIONS(1391), - [anon_sym_float] = ACTIONS(1391), - [anon_sym_double] = ACTIONS(1391), - [anon_sym_float16] = ACTIONS(1391), - [anon_sym_bfloat16] = ACTIONS(1391), - [anon_sym_float128] = ACTIONS(1391), - [anon_sym_iptr] = ACTIONS(1391), - [anon_sym_uptr] = ACTIONS(1391), - [anon_sym_isz] = ACTIONS(1391), - [anon_sym_usz] = ACTIONS(1391), - [anon_sym_anyfault] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_DOLLARtypeof] = ACTIONS(1391), - [anon_sym_DOLLARtypefrom] = ACTIONS(1391), - [anon_sym_DOLLARevaltype] = ACTIONS(1391), - [anon_sym_DOLLARvatype] = ACTIONS(1391), - [sym_real_literal] = ACTIONS(1393), + [654] = { + [sym_line_comment] = STATE(654), + [sym_doc_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARendforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, - [688] = { - [sym_line_comment] = STATE(688), - [sym_doc_comment] = STATE(688), - [sym_block_comment] = STATE(688), - [sym_ident] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [anon_sym_BQUOTE] = ACTIONS(1397), - [sym_bytes_literal] = ACTIONS(1397), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1395), - [sym_at_ident] = ACTIONS(1397), - [sym_hash_ident] = ACTIONS(1397), - [sym_type_ident] = ACTIONS(1397), - [sym_ct_type_ident] = ACTIONS(1397), - [sym_const_ident] = ACTIONS(1395), - [sym_builtin] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_tlocal] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_var] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_defer] = ACTIONS(1395), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_nextcase] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_foreach] = ACTIONS(1395), - [anon_sym_foreach_r] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_int] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_asm] = ACTIONS(1395), - [anon_sym_DOLLARassert] = ACTIONS(1395), - [anon_sym_DOLLARerror] = ACTIONS(1395), - [anon_sym_DOLLARecho] = ACTIONS(1395), - [anon_sym_DOLLARif] = ACTIONS(1395), - [anon_sym_DOLLARswitch] = ACTIONS(1395), - [anon_sym_DOLLARfor] = ACTIONS(1395), - [anon_sym_DOLLARforeach] = ACTIONS(1395), - [anon_sym_DOLLARendforeach] = ACTIONS(1395), - [anon_sym_DOLLARalignof] = ACTIONS(1395), - [anon_sym_DOLLARextnameof] = ACTIONS(1395), - [anon_sym_DOLLARnameof] = ACTIONS(1395), - [anon_sym_DOLLARoffsetof] = ACTIONS(1395), - [anon_sym_DOLLARqnameof] = ACTIONS(1395), - [anon_sym_DOLLARvaconst] = ACTIONS(1395), - [anon_sym_DOLLARvaarg] = ACTIONS(1395), - [anon_sym_DOLLARvaref] = ACTIONS(1395), - [anon_sym_DOLLARvaexpr] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_DOLLARvacount] = ACTIONS(1395), - [anon_sym_DOLLAReval] = ACTIONS(1395), - [anon_sym_DOLLARis_const] = ACTIONS(1395), - [anon_sym_DOLLARsizeof] = ACTIONS(1395), - [anon_sym_DOLLARstringify] = ACTIONS(1395), - [anon_sym_DOLLARappend] = ACTIONS(1395), - [anon_sym_DOLLARconcat] = ACTIONS(1395), - [anon_sym_DOLLARdefined] = ACTIONS(1395), - [anon_sym_DOLLARembed] = ACTIONS(1395), - [anon_sym_DOLLARand] = ACTIONS(1395), - [anon_sym_DOLLARor] = ACTIONS(1395), - [anon_sym_DOLLARfeature] = ACTIONS(1395), - [anon_sym_DOLLARassignable] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_typeid] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_ichar] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [anon_sym_ushort] = ACTIONS(1395), - [anon_sym_uint] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_ulong] = ACTIONS(1395), - [anon_sym_int128] = ACTIONS(1395), - [anon_sym_uint128] = ACTIONS(1395), - [anon_sym_float] = ACTIONS(1395), - [anon_sym_double] = ACTIONS(1395), - [anon_sym_float16] = ACTIONS(1395), - [anon_sym_bfloat16] = ACTIONS(1395), - [anon_sym_float128] = ACTIONS(1395), - [anon_sym_iptr] = ACTIONS(1395), - [anon_sym_uptr] = ACTIONS(1395), - [anon_sym_isz] = ACTIONS(1395), - [anon_sym_usz] = ACTIONS(1395), - [anon_sym_anyfault] = ACTIONS(1395), - [anon_sym_any] = ACTIONS(1395), - [anon_sym_DOLLARtypeof] = ACTIONS(1395), - [anon_sym_DOLLARtypefrom] = ACTIONS(1395), - [anon_sym_DOLLARevaltype] = ACTIONS(1395), - [anon_sym_DOLLARvatype] = ACTIONS(1395), - [sym_real_literal] = ACTIONS(1397), + [655] = { + [sym_line_comment] = STATE(655), + [sym_doc_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARendforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, - [689] = { - [sym_line_comment] = STATE(689), - [sym_doc_comment] = STATE(689), - [sym_block_comment] = STATE(689), - [sym_ident] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1409), - [sym_bytes_literal] = ACTIONS(1409), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1407), - [sym_at_ident] = ACTIONS(1409), - [sym_hash_ident] = ACTIONS(1409), - [sym_type_ident] = ACTIONS(1409), - [sym_ct_type_ident] = ACTIONS(1409), - [sym_const_ident] = ACTIONS(1407), - [sym_builtin] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_tlocal] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_var] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_defer] = ACTIONS(1407), - [anon_sym_assert] = ACTIONS(1407), - [anon_sym_nextcase] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_foreach] = ACTIONS(1407), - [anon_sym_foreach_r] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_int] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym_DOLLARassert] = ACTIONS(1407), - [anon_sym_DOLLARerror] = ACTIONS(1407), - [anon_sym_DOLLARecho] = ACTIONS(1407), - [anon_sym_DOLLARif] = ACTIONS(1407), - [anon_sym_DOLLARswitch] = ACTIONS(1407), - [anon_sym_DOLLARfor] = ACTIONS(1407), - [anon_sym_DOLLARforeach] = ACTIONS(1407), - [anon_sym_DOLLARendforeach] = ACTIONS(1407), - [anon_sym_DOLLARalignof] = ACTIONS(1407), - [anon_sym_DOLLARextnameof] = ACTIONS(1407), - [anon_sym_DOLLARnameof] = ACTIONS(1407), - [anon_sym_DOLLARoffsetof] = ACTIONS(1407), - [anon_sym_DOLLARqnameof] = ACTIONS(1407), - [anon_sym_DOLLARvaconst] = ACTIONS(1407), - [anon_sym_DOLLARvaarg] = ACTIONS(1407), - [anon_sym_DOLLARvaref] = ACTIONS(1407), - [anon_sym_DOLLARvaexpr] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [anon_sym_null] = ACTIONS(1407), - [anon_sym_DOLLARvacount] = ACTIONS(1407), - [anon_sym_DOLLAReval] = ACTIONS(1407), - [anon_sym_DOLLARis_const] = ACTIONS(1407), - [anon_sym_DOLLARsizeof] = ACTIONS(1407), - [anon_sym_DOLLARstringify] = ACTIONS(1407), - [anon_sym_DOLLARappend] = ACTIONS(1407), - [anon_sym_DOLLARconcat] = ACTIONS(1407), - [anon_sym_DOLLARdefined] = ACTIONS(1407), - [anon_sym_DOLLARembed] = ACTIONS(1407), - [anon_sym_DOLLARand] = ACTIONS(1407), - [anon_sym_DOLLARor] = ACTIONS(1407), - [anon_sym_DOLLARfeature] = ACTIONS(1407), - [anon_sym_DOLLARassignable] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_typeid] = ACTIONS(1407), - [anon_sym_LBRACE_PIPE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1407), - [anon_sym_bool] = ACTIONS(1407), - [anon_sym_char] = ACTIONS(1407), - [anon_sym_ichar] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_ushort] = ACTIONS(1407), - [anon_sym_uint] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_ulong] = ACTIONS(1407), - [anon_sym_int128] = ACTIONS(1407), - [anon_sym_uint128] = ACTIONS(1407), - [anon_sym_float] = ACTIONS(1407), - [anon_sym_double] = ACTIONS(1407), - [anon_sym_float16] = ACTIONS(1407), - [anon_sym_bfloat16] = ACTIONS(1407), - [anon_sym_float128] = ACTIONS(1407), - [anon_sym_iptr] = ACTIONS(1407), - [anon_sym_uptr] = ACTIONS(1407), - [anon_sym_isz] = ACTIONS(1407), - [anon_sym_usz] = ACTIONS(1407), - [anon_sym_anyfault] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_DOLLARtypeof] = ACTIONS(1407), - [anon_sym_DOLLARtypefrom] = ACTIONS(1407), - [anon_sym_DOLLARevaltype] = ACTIONS(1407), - [anon_sym_DOLLARvatype] = ACTIONS(1407), - [sym_real_literal] = ACTIONS(1409), + [656] = { + [sym_line_comment] = STATE(656), + [sym_doc_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARendforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, - [690] = { - [sym_line_comment] = STATE(690), - [sym_doc_comment] = STATE(690), - [sym_block_comment] = STATE(690), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARendforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARappend] = ACTIONS(1475), - [anon_sym_DOLLARconcat] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), + [657] = { + [sym_line_comment] = STATE(657), + [sym_doc_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARendforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, - [691] = { - [sym_line_comment] = STATE(691), - [sym_doc_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [658] = { + [sym_line_comment] = STATE(658), + [sym_doc_comment] = STATE(658), + [sym_block_comment] = STATE(658), [sym_ident] = ACTIONS(1509), [sym_integer_literal] = ACTIONS(1511), [anon_sym_SQUOTE] = ACTIONS(1511), @@ -105229,240 +101349,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1509), [sym_real_literal] = ACTIONS(1511), }, - [692] = { - [sym_line_comment] = STATE(692), - [sym_doc_comment] = STATE(692), - [sym_block_comment] = STATE(692), - [sym_ident] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [anon_sym_BQUOTE] = ACTIONS(1519), - [sym_bytes_literal] = ACTIONS(1519), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1517), - [sym_at_ident] = ACTIONS(1519), - [sym_hash_ident] = ACTIONS(1519), - [sym_type_ident] = ACTIONS(1519), - [sym_ct_type_ident] = ACTIONS(1519), - [sym_const_ident] = ACTIONS(1517), - [sym_builtin] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_tlocal] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_var] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_defer] = ACTIONS(1517), - [anon_sym_assert] = ACTIONS(1517), - [anon_sym_nextcase] = ACTIONS(1517), - [anon_sym_switch] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_foreach] = ACTIONS(1517), - [anon_sym_foreach_r] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_int] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_asm] = ACTIONS(1517), - [anon_sym_DOLLARassert] = ACTIONS(1517), - [anon_sym_DOLLARerror] = ACTIONS(1517), - [anon_sym_DOLLARecho] = ACTIONS(1517), - [anon_sym_DOLLARif] = ACTIONS(1517), - [anon_sym_DOLLARswitch] = ACTIONS(1517), - [anon_sym_DOLLARfor] = ACTIONS(1517), - [anon_sym_DOLLARforeach] = ACTIONS(1517), - [anon_sym_DOLLARendforeach] = ACTIONS(1517), - [anon_sym_DOLLARalignof] = ACTIONS(1517), - [anon_sym_DOLLARextnameof] = ACTIONS(1517), - [anon_sym_DOLLARnameof] = ACTIONS(1517), - [anon_sym_DOLLARoffsetof] = ACTIONS(1517), - [anon_sym_DOLLARqnameof] = ACTIONS(1517), - [anon_sym_DOLLARvaconst] = ACTIONS(1517), - [anon_sym_DOLLARvaarg] = ACTIONS(1517), - [anon_sym_DOLLARvaref] = ACTIONS(1517), - [anon_sym_DOLLARvaexpr] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_null] = ACTIONS(1517), - [anon_sym_DOLLARvacount] = ACTIONS(1517), - [anon_sym_DOLLAReval] = ACTIONS(1517), - [anon_sym_DOLLARis_const] = ACTIONS(1517), - [anon_sym_DOLLARsizeof] = ACTIONS(1517), - [anon_sym_DOLLARstringify] = ACTIONS(1517), - [anon_sym_DOLLARappend] = ACTIONS(1517), - [anon_sym_DOLLARconcat] = ACTIONS(1517), - [anon_sym_DOLLARdefined] = ACTIONS(1517), - [anon_sym_DOLLARembed] = ACTIONS(1517), - [anon_sym_DOLLARand] = ACTIONS(1517), - [anon_sym_DOLLARor] = ACTIONS(1517), - [anon_sym_DOLLARfeature] = ACTIONS(1517), - [anon_sym_DOLLARassignable] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_typeid] = ACTIONS(1517), - [anon_sym_LBRACE_PIPE] = ACTIONS(1519), - [anon_sym_void] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_ichar] = ACTIONS(1517), - [anon_sym_short] = ACTIONS(1517), - [anon_sym_ushort] = ACTIONS(1517), - [anon_sym_uint] = ACTIONS(1517), - [anon_sym_long] = ACTIONS(1517), - [anon_sym_ulong] = ACTIONS(1517), - [anon_sym_int128] = ACTIONS(1517), - [anon_sym_uint128] = ACTIONS(1517), - [anon_sym_float] = ACTIONS(1517), - [anon_sym_double] = ACTIONS(1517), - [anon_sym_float16] = ACTIONS(1517), - [anon_sym_bfloat16] = ACTIONS(1517), - [anon_sym_float128] = ACTIONS(1517), - [anon_sym_iptr] = ACTIONS(1517), - [anon_sym_uptr] = ACTIONS(1517), - [anon_sym_isz] = ACTIONS(1517), - [anon_sym_usz] = ACTIONS(1517), - [anon_sym_anyfault] = ACTIONS(1517), - [anon_sym_any] = ACTIONS(1517), - [anon_sym_DOLLARtypeof] = ACTIONS(1517), - [anon_sym_DOLLARtypefrom] = ACTIONS(1517), - [anon_sym_DOLLARevaltype] = ACTIONS(1517), - [anon_sym_DOLLARvatype] = ACTIONS(1517), - [sym_real_literal] = ACTIONS(1519), - }, - [693] = { - [sym_line_comment] = STATE(693), - [sym_doc_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [sym_ident] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [anon_sym_BQUOTE] = ACTIONS(1579), - [sym_bytes_literal] = ACTIONS(1579), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1577), - [sym_at_ident] = ACTIONS(1579), - [sym_hash_ident] = ACTIONS(1579), - [sym_type_ident] = ACTIONS(1579), - [sym_ct_type_ident] = ACTIONS(1579), - [sym_const_ident] = ACTIONS(1577), - [sym_builtin] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_tlocal] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_fn] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_var] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_defer] = ACTIONS(1577), - [anon_sym_assert] = ACTIONS(1577), - [anon_sym_nextcase] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_foreach] = ACTIONS(1577), - [anon_sym_foreach_r] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_int] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_asm] = ACTIONS(1577), - [anon_sym_DOLLARassert] = ACTIONS(1577), - [anon_sym_DOLLARerror] = ACTIONS(1577), - [anon_sym_DOLLARecho] = ACTIONS(1577), - [anon_sym_DOLLARif] = ACTIONS(1577), - [anon_sym_DOLLARswitch] = ACTIONS(1577), - [anon_sym_DOLLARfor] = ACTIONS(1577), - [anon_sym_DOLLARendfor] = ACTIONS(1577), - [anon_sym_DOLLARforeach] = ACTIONS(1577), - [anon_sym_DOLLARalignof] = ACTIONS(1577), - [anon_sym_DOLLARextnameof] = ACTIONS(1577), - [anon_sym_DOLLARnameof] = ACTIONS(1577), - [anon_sym_DOLLARoffsetof] = ACTIONS(1577), - [anon_sym_DOLLARqnameof] = ACTIONS(1577), - [anon_sym_DOLLARvaconst] = ACTIONS(1577), - [anon_sym_DOLLARvaarg] = ACTIONS(1577), - [anon_sym_DOLLARvaref] = ACTIONS(1577), - [anon_sym_DOLLARvaexpr] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [anon_sym_null] = ACTIONS(1577), - [anon_sym_DOLLARvacount] = ACTIONS(1577), - [anon_sym_DOLLAReval] = ACTIONS(1577), - [anon_sym_DOLLARis_const] = ACTIONS(1577), - [anon_sym_DOLLARsizeof] = ACTIONS(1577), - [anon_sym_DOLLARstringify] = ACTIONS(1577), - [anon_sym_DOLLARappend] = ACTIONS(1577), - [anon_sym_DOLLARconcat] = ACTIONS(1577), - [anon_sym_DOLLARdefined] = ACTIONS(1577), - [anon_sym_DOLLARembed] = ACTIONS(1577), - [anon_sym_DOLLARand] = ACTIONS(1577), - [anon_sym_DOLLARor] = ACTIONS(1577), - [anon_sym_DOLLARfeature] = ACTIONS(1577), - [anon_sym_DOLLARassignable] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_typeid] = ACTIONS(1577), - [anon_sym_LBRACE_PIPE] = ACTIONS(1579), - [anon_sym_void] = ACTIONS(1577), - [anon_sym_bool] = ACTIONS(1577), - [anon_sym_char] = ACTIONS(1577), - [anon_sym_ichar] = ACTIONS(1577), - [anon_sym_short] = ACTIONS(1577), - [anon_sym_ushort] = ACTIONS(1577), - [anon_sym_uint] = ACTIONS(1577), - [anon_sym_long] = ACTIONS(1577), - [anon_sym_ulong] = ACTIONS(1577), - [anon_sym_int128] = ACTIONS(1577), - [anon_sym_uint128] = ACTIONS(1577), - [anon_sym_float] = ACTIONS(1577), - [anon_sym_double] = ACTIONS(1577), - [anon_sym_float16] = ACTIONS(1577), - [anon_sym_bfloat16] = ACTIONS(1577), - [anon_sym_float128] = ACTIONS(1577), - [anon_sym_iptr] = ACTIONS(1577), - [anon_sym_uptr] = ACTIONS(1577), - [anon_sym_isz] = ACTIONS(1577), - [anon_sym_usz] = ACTIONS(1577), - [anon_sym_anyfault] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_DOLLARtypeof] = ACTIONS(1577), - [anon_sym_DOLLARtypefrom] = ACTIONS(1577), - [anon_sym_DOLLARevaltype] = ACTIONS(1577), - [anon_sym_DOLLARvatype] = ACTIONS(1577), - [sym_real_literal] = ACTIONS(1579), - }, - [694] = { - [sym_line_comment] = STATE(694), - [sym_doc_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [659] = { + [sym_line_comment] = STATE(659), + [sym_doc_comment] = STATE(659), + [sym_block_comment] = STATE(659), [sym_ident] = ACTIONS(1513), [sym_integer_literal] = ACTIONS(1515), [anon_sym_SQUOTE] = ACTIONS(1515), @@ -105513,8 +101403,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(1513), [anon_sym_DOLLARswitch] = ACTIONS(1513), [anon_sym_DOLLARfor] = ACTIONS(1513), - [anon_sym_DOLLARendfor] = ACTIONS(1513), [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARendforeach] = ACTIONS(1513), [anon_sym_DOLLARalignof] = ACTIONS(1513), [anon_sym_DOLLARextnameof] = ACTIONS(1513), [anon_sym_DOLLARnameof] = ACTIONS(1513), @@ -105574,1160 +101464,1045 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1513), [sym_real_literal] = ACTIONS(1515), }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_doc_comment] = STATE(695), - [sym_block_comment] = STATE(695), - [sym_ident] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_bytes_literal] = ACTIONS(1461), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1459), - [sym_at_ident] = ACTIONS(1461), - [sym_hash_ident] = ACTIONS(1461), - [sym_type_ident] = ACTIONS(1461), - [sym_ct_type_ident] = ACTIONS(1461), - [sym_const_ident] = ACTIONS(1459), - [sym_builtin] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_tlocal] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_var] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_defer] = ACTIONS(1459), - [anon_sym_assert] = ACTIONS(1459), - [anon_sym_nextcase] = ACTIONS(1459), - [anon_sym_switch] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_foreach] = ACTIONS(1459), - [anon_sym_foreach_r] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_int] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1459), - [anon_sym_DOLLARassert] = ACTIONS(1459), - [anon_sym_DOLLARerror] = ACTIONS(1459), - [anon_sym_DOLLARecho] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1459), - [anon_sym_DOLLARswitch] = ACTIONS(1459), - [anon_sym_DOLLARfor] = ACTIONS(1459), - [anon_sym_DOLLARforeach] = ACTIONS(1459), - [anon_sym_DOLLARendforeach] = ACTIONS(1459), - [anon_sym_DOLLARalignof] = ACTIONS(1459), - [anon_sym_DOLLARextnameof] = ACTIONS(1459), - [anon_sym_DOLLARnameof] = ACTIONS(1459), - [anon_sym_DOLLARoffsetof] = ACTIONS(1459), - [anon_sym_DOLLARqnameof] = ACTIONS(1459), - [anon_sym_DOLLARvaconst] = ACTIONS(1459), - [anon_sym_DOLLARvaarg] = ACTIONS(1459), - [anon_sym_DOLLARvaref] = ACTIONS(1459), - [anon_sym_DOLLARvaexpr] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1459), - [anon_sym_DOLLARvacount] = ACTIONS(1459), - [anon_sym_DOLLAReval] = ACTIONS(1459), - [anon_sym_DOLLARis_const] = ACTIONS(1459), - [anon_sym_DOLLARsizeof] = ACTIONS(1459), - [anon_sym_DOLLARstringify] = ACTIONS(1459), - [anon_sym_DOLLARappend] = ACTIONS(1459), - [anon_sym_DOLLARconcat] = ACTIONS(1459), - [anon_sym_DOLLARdefined] = ACTIONS(1459), - [anon_sym_DOLLARembed] = ACTIONS(1459), - [anon_sym_DOLLARand] = ACTIONS(1459), - [anon_sym_DOLLARor] = ACTIONS(1459), - [anon_sym_DOLLARfeature] = ACTIONS(1459), - [anon_sym_DOLLARassignable] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_typeid] = ACTIONS(1459), - [anon_sym_LBRACE_PIPE] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_ichar] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [anon_sym_ushort] = ACTIONS(1459), - [anon_sym_uint] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_ulong] = ACTIONS(1459), - [anon_sym_int128] = ACTIONS(1459), - [anon_sym_uint128] = ACTIONS(1459), - [anon_sym_float] = ACTIONS(1459), - [anon_sym_double] = ACTIONS(1459), - [anon_sym_float16] = ACTIONS(1459), - [anon_sym_bfloat16] = ACTIONS(1459), - [anon_sym_float128] = ACTIONS(1459), - [anon_sym_iptr] = ACTIONS(1459), - [anon_sym_uptr] = ACTIONS(1459), - [anon_sym_isz] = ACTIONS(1459), - [anon_sym_usz] = ACTIONS(1459), - [anon_sym_anyfault] = ACTIONS(1459), - [anon_sym_any] = ACTIONS(1459), - [anon_sym_DOLLARtypeof] = ACTIONS(1459), - [anon_sym_DOLLARtypefrom] = ACTIONS(1459), - [anon_sym_DOLLARevaltype] = ACTIONS(1459), - [anon_sym_DOLLARvatype] = ACTIONS(1459), - [sym_real_literal] = ACTIONS(1461), - }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_doc_comment] = STATE(696), - [sym_block_comment] = STATE(696), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARendforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARappend] = ACTIONS(1467), - [anon_sym_DOLLARconcat] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), - }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_doc_comment] = STATE(697), - [sym_block_comment] = STATE(697), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARendforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARappend] = ACTIONS(1471), - [anon_sym_DOLLARconcat] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), - }, - [698] = { - [sym_line_comment] = STATE(698), - [sym_doc_comment] = STATE(698), - [sym_block_comment] = STATE(698), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARendforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARappend] = ACTIONS(1503), - [anon_sym_DOLLARconcat] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), + [660] = { + [sym_line_comment] = STATE(660), + [sym_doc_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARendforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, - [699] = { - [sym_line_comment] = STATE(699), - [sym_doc_comment] = STATE(699), - [sym_block_comment] = STATE(699), - [sym_ident] = ACTIONS(1521), - [sym_integer_literal] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [anon_sym_BQUOTE] = ACTIONS(1523), - [sym_bytes_literal] = ACTIONS(1523), + [661] = { + [sym_line_comment] = STATE(661), + [sym_doc_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1521), - [sym_at_ident] = ACTIONS(1523), - [sym_hash_ident] = ACTIONS(1523), - [sym_type_ident] = ACTIONS(1523), - [sym_ct_type_ident] = ACTIONS(1523), - [sym_const_ident] = ACTIONS(1521), - [sym_builtin] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_tlocal] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_defer] = ACTIONS(1521), - [anon_sym_assert] = ACTIONS(1521), - [anon_sym_nextcase] = ACTIONS(1521), - [anon_sym_switch] = ACTIONS(1521), - [anon_sym_AMP_AMP] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_foreach] = ACTIONS(1521), - [anon_sym_foreach_r] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_do] = ACTIONS(1521), - [anon_sym_int] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_asm] = ACTIONS(1521), - [anon_sym_DOLLARassert] = ACTIONS(1521), - [anon_sym_DOLLARerror] = ACTIONS(1521), - [anon_sym_DOLLARecho] = ACTIONS(1521), - [anon_sym_DOLLARif] = ACTIONS(1521), - [anon_sym_DOLLARswitch] = ACTIONS(1521), - [anon_sym_DOLLARfor] = ACTIONS(1521), - [anon_sym_DOLLARforeach] = ACTIONS(1521), - [anon_sym_DOLLARendforeach] = ACTIONS(1521), - [anon_sym_DOLLARalignof] = ACTIONS(1521), - [anon_sym_DOLLARextnameof] = ACTIONS(1521), - [anon_sym_DOLLARnameof] = ACTIONS(1521), - [anon_sym_DOLLARoffsetof] = ACTIONS(1521), - [anon_sym_DOLLARqnameof] = ACTIONS(1521), - [anon_sym_DOLLARvaconst] = ACTIONS(1521), - [anon_sym_DOLLARvaarg] = ACTIONS(1521), - [anon_sym_DOLLARvaref] = ACTIONS(1521), - [anon_sym_DOLLARvaexpr] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1521), - [anon_sym_false] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1521), - [anon_sym_DOLLARvacount] = ACTIONS(1521), - [anon_sym_DOLLAReval] = ACTIONS(1521), - [anon_sym_DOLLARis_const] = ACTIONS(1521), - [anon_sym_DOLLARsizeof] = ACTIONS(1521), - [anon_sym_DOLLARstringify] = ACTIONS(1521), - [anon_sym_DOLLARappend] = ACTIONS(1521), - [anon_sym_DOLLARconcat] = ACTIONS(1521), - [anon_sym_DOLLARdefined] = ACTIONS(1521), - [anon_sym_DOLLARembed] = ACTIONS(1521), - [anon_sym_DOLLARand] = ACTIONS(1521), - [anon_sym_DOLLARor] = ACTIONS(1521), - [anon_sym_DOLLARfeature] = ACTIONS(1521), - [anon_sym_DOLLARassignable] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_typeid] = ACTIONS(1521), - [anon_sym_LBRACE_PIPE] = ACTIONS(1523), - [anon_sym_void] = ACTIONS(1521), - [anon_sym_bool] = ACTIONS(1521), - [anon_sym_char] = ACTIONS(1521), - [anon_sym_ichar] = ACTIONS(1521), - [anon_sym_short] = ACTIONS(1521), - [anon_sym_ushort] = ACTIONS(1521), - [anon_sym_uint] = ACTIONS(1521), - [anon_sym_long] = ACTIONS(1521), - [anon_sym_ulong] = ACTIONS(1521), - [anon_sym_int128] = ACTIONS(1521), - [anon_sym_uint128] = ACTIONS(1521), - [anon_sym_float] = ACTIONS(1521), - [anon_sym_double] = ACTIONS(1521), - [anon_sym_float16] = ACTIONS(1521), - [anon_sym_bfloat16] = ACTIONS(1521), - [anon_sym_float128] = ACTIONS(1521), - [anon_sym_iptr] = ACTIONS(1521), - [anon_sym_uptr] = ACTIONS(1521), - [anon_sym_isz] = ACTIONS(1521), - [anon_sym_usz] = ACTIONS(1521), - [anon_sym_anyfault] = ACTIONS(1521), - [anon_sym_any] = ACTIONS(1521), - [anon_sym_DOLLARtypeof] = ACTIONS(1521), - [anon_sym_DOLLARtypefrom] = ACTIONS(1521), - [anon_sym_DOLLARevaltype] = ACTIONS(1521), - [anon_sym_DOLLARvatype] = ACTIONS(1521), - [sym_real_literal] = ACTIONS(1523), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARendforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, - [700] = { - [sym_line_comment] = STATE(700), - [sym_doc_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [sym_ident] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1535), - [sym_bytes_literal] = ACTIONS(1535), + [662] = { + [sym_line_comment] = STATE(662), + [sym_doc_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1533), - [sym_at_ident] = ACTIONS(1535), - [sym_hash_ident] = ACTIONS(1535), - [sym_type_ident] = ACTIONS(1535), - [sym_ct_type_ident] = ACTIONS(1535), - [sym_const_ident] = ACTIONS(1533), - [sym_builtin] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_tlocal] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_var] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_defer] = ACTIONS(1533), - [anon_sym_assert] = ACTIONS(1533), - [anon_sym_nextcase] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_foreach] = ACTIONS(1533), - [anon_sym_foreach_r] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_int] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_asm] = ACTIONS(1533), - [anon_sym_DOLLARassert] = ACTIONS(1533), - [anon_sym_DOLLARerror] = ACTIONS(1533), - [anon_sym_DOLLARecho] = ACTIONS(1533), - [anon_sym_DOLLARif] = ACTIONS(1533), - [anon_sym_DOLLARswitch] = ACTIONS(1533), - [anon_sym_DOLLARfor] = ACTIONS(1533), - [anon_sym_DOLLARforeach] = ACTIONS(1533), - [anon_sym_DOLLARendforeach] = ACTIONS(1533), - [anon_sym_DOLLARalignof] = ACTIONS(1533), - [anon_sym_DOLLARextnameof] = ACTIONS(1533), - [anon_sym_DOLLARnameof] = ACTIONS(1533), - [anon_sym_DOLLARoffsetof] = ACTIONS(1533), - [anon_sym_DOLLARqnameof] = ACTIONS(1533), - [anon_sym_DOLLARvaconst] = ACTIONS(1533), - [anon_sym_DOLLARvaarg] = ACTIONS(1533), - [anon_sym_DOLLARvaref] = ACTIONS(1533), - [anon_sym_DOLLARvaexpr] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_null] = ACTIONS(1533), - [anon_sym_DOLLARvacount] = ACTIONS(1533), - [anon_sym_DOLLAReval] = ACTIONS(1533), - [anon_sym_DOLLARis_const] = ACTIONS(1533), - [anon_sym_DOLLARsizeof] = ACTIONS(1533), - [anon_sym_DOLLARstringify] = ACTIONS(1533), - [anon_sym_DOLLARappend] = ACTIONS(1533), - [anon_sym_DOLLARconcat] = ACTIONS(1533), - [anon_sym_DOLLARdefined] = ACTIONS(1533), - [anon_sym_DOLLARembed] = ACTIONS(1533), - [anon_sym_DOLLARand] = ACTIONS(1533), - [anon_sym_DOLLARor] = ACTIONS(1533), - [anon_sym_DOLLARfeature] = ACTIONS(1533), - [anon_sym_DOLLARassignable] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_typeid] = ACTIONS(1533), - [anon_sym_LBRACE_PIPE] = ACTIONS(1535), - [anon_sym_void] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_ichar] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_ushort] = ACTIONS(1533), - [anon_sym_uint] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_ulong] = ACTIONS(1533), - [anon_sym_int128] = ACTIONS(1533), - [anon_sym_uint128] = ACTIONS(1533), - [anon_sym_float] = ACTIONS(1533), - [anon_sym_double] = ACTIONS(1533), - [anon_sym_float16] = ACTIONS(1533), - [anon_sym_bfloat16] = ACTIONS(1533), - [anon_sym_float128] = ACTIONS(1533), - [anon_sym_iptr] = ACTIONS(1533), - [anon_sym_uptr] = ACTIONS(1533), - [anon_sym_isz] = ACTIONS(1533), - [anon_sym_usz] = ACTIONS(1533), - [anon_sym_anyfault] = ACTIONS(1533), - [anon_sym_any] = ACTIONS(1533), - [anon_sym_DOLLARtypeof] = ACTIONS(1533), - [anon_sym_DOLLARtypefrom] = ACTIONS(1533), - [anon_sym_DOLLARevaltype] = ACTIONS(1533), - [anon_sym_DOLLARvatype] = ACTIONS(1533), - [sym_real_literal] = ACTIONS(1535), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARendfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, - [701] = { - [sym_line_comment] = STATE(701), - [sym_doc_comment] = STATE(701), - [sym_block_comment] = STATE(701), - [sym_ident] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [anon_sym_BQUOTE] = ACTIONS(1543), - [sym_bytes_literal] = ACTIONS(1543), + [663] = { + [sym_line_comment] = STATE(663), + [sym_doc_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1541), - [sym_at_ident] = ACTIONS(1543), - [sym_hash_ident] = ACTIONS(1543), - [sym_type_ident] = ACTIONS(1543), - [sym_ct_type_ident] = ACTIONS(1543), - [sym_const_ident] = ACTIONS(1541), - [sym_builtin] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_tlocal] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_defer] = ACTIONS(1541), - [anon_sym_assert] = ACTIONS(1541), - [anon_sym_nextcase] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_AMP_AMP] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_foreach] = ACTIONS(1541), - [anon_sym_foreach_r] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_int] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_asm] = ACTIONS(1541), - [anon_sym_DOLLARassert] = ACTIONS(1541), - [anon_sym_DOLLARerror] = ACTIONS(1541), - [anon_sym_DOLLARecho] = ACTIONS(1541), - [anon_sym_DOLLARif] = ACTIONS(1541), - [anon_sym_DOLLARswitch] = ACTIONS(1541), - [anon_sym_DOLLARfor] = ACTIONS(1541), - [anon_sym_DOLLARforeach] = ACTIONS(1541), - [anon_sym_DOLLARendforeach] = ACTIONS(1541), - [anon_sym_DOLLARalignof] = ACTIONS(1541), - [anon_sym_DOLLARextnameof] = ACTIONS(1541), - [anon_sym_DOLLARnameof] = ACTIONS(1541), - [anon_sym_DOLLARoffsetof] = ACTIONS(1541), - [anon_sym_DOLLARqnameof] = ACTIONS(1541), - [anon_sym_DOLLARvaconst] = ACTIONS(1541), - [anon_sym_DOLLARvaarg] = ACTIONS(1541), - [anon_sym_DOLLARvaref] = ACTIONS(1541), - [anon_sym_DOLLARvaexpr] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1541), - [anon_sym_false] = ACTIONS(1541), - [anon_sym_null] = ACTIONS(1541), - [anon_sym_DOLLARvacount] = ACTIONS(1541), - [anon_sym_DOLLAReval] = ACTIONS(1541), - [anon_sym_DOLLARis_const] = ACTIONS(1541), - [anon_sym_DOLLARsizeof] = ACTIONS(1541), - [anon_sym_DOLLARstringify] = ACTIONS(1541), - [anon_sym_DOLLARappend] = ACTIONS(1541), - [anon_sym_DOLLARconcat] = ACTIONS(1541), - [anon_sym_DOLLARdefined] = ACTIONS(1541), - [anon_sym_DOLLARembed] = ACTIONS(1541), - [anon_sym_DOLLARand] = ACTIONS(1541), - [anon_sym_DOLLARor] = ACTIONS(1541), - [anon_sym_DOLLARfeature] = ACTIONS(1541), - [anon_sym_DOLLARassignable] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_typeid] = ACTIONS(1541), - [anon_sym_LBRACE_PIPE] = ACTIONS(1543), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_ichar] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [anon_sym_ushort] = ACTIONS(1541), - [anon_sym_uint] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_ulong] = ACTIONS(1541), - [anon_sym_int128] = ACTIONS(1541), - [anon_sym_uint128] = ACTIONS(1541), - [anon_sym_float] = ACTIONS(1541), - [anon_sym_double] = ACTIONS(1541), - [anon_sym_float16] = ACTIONS(1541), - [anon_sym_bfloat16] = ACTIONS(1541), - [anon_sym_float128] = ACTIONS(1541), - [anon_sym_iptr] = ACTIONS(1541), - [anon_sym_uptr] = ACTIONS(1541), - [anon_sym_isz] = ACTIONS(1541), - [anon_sym_usz] = ACTIONS(1541), - [anon_sym_anyfault] = ACTIONS(1541), - [anon_sym_any] = ACTIONS(1541), - [anon_sym_DOLLARtypeof] = ACTIONS(1541), - [anon_sym_DOLLARtypefrom] = ACTIONS(1541), - [anon_sym_DOLLARevaltype] = ACTIONS(1541), - [anon_sym_DOLLARvatype] = ACTIONS(1541), - [sym_real_literal] = ACTIONS(1543), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARendfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, - [702] = { - [sym_line_comment] = STATE(702), - [sym_doc_comment] = STATE(702), - [sym_block_comment] = STATE(702), - [sym_ident] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [anon_sym_BQUOTE] = ACTIONS(1547), - [sym_bytes_literal] = ACTIONS(1547), + [664] = { + [sym_line_comment] = STATE(664), + [sym_doc_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [sym_ident] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_bytes_literal] = ACTIONS(1643), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1545), - [sym_at_ident] = ACTIONS(1547), - [sym_hash_ident] = ACTIONS(1547), - [sym_type_ident] = ACTIONS(1547), - [sym_ct_type_ident] = ACTIONS(1547), - [sym_const_ident] = ACTIONS(1545), - [sym_builtin] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_tlocal] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_fn] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_var] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1545), - [anon_sym_continue] = ACTIONS(1545), - [anon_sym_break] = ACTIONS(1545), - [anon_sym_defer] = ACTIONS(1545), - [anon_sym_assert] = ACTIONS(1545), - [anon_sym_nextcase] = ACTIONS(1545), - [anon_sym_switch] = ACTIONS(1545), - [anon_sym_AMP_AMP] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_foreach] = ACTIONS(1545), - [anon_sym_foreach_r] = ACTIONS(1545), - [anon_sym_while] = ACTIONS(1545), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_int] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_asm] = ACTIONS(1545), - [anon_sym_DOLLARassert] = ACTIONS(1545), - [anon_sym_DOLLARerror] = ACTIONS(1545), - [anon_sym_DOLLARecho] = ACTIONS(1545), - [anon_sym_DOLLARif] = ACTIONS(1545), - [anon_sym_DOLLARswitch] = ACTIONS(1545), - [anon_sym_DOLLARfor] = ACTIONS(1545), - [anon_sym_DOLLARforeach] = ACTIONS(1545), - [anon_sym_DOLLARendforeach] = ACTIONS(1545), - [anon_sym_DOLLARalignof] = ACTIONS(1545), - [anon_sym_DOLLARextnameof] = ACTIONS(1545), - [anon_sym_DOLLARnameof] = ACTIONS(1545), - [anon_sym_DOLLARoffsetof] = ACTIONS(1545), - [anon_sym_DOLLARqnameof] = ACTIONS(1545), - [anon_sym_DOLLARvaconst] = ACTIONS(1545), - [anon_sym_DOLLARvaarg] = ACTIONS(1545), - [anon_sym_DOLLARvaref] = ACTIONS(1545), - [anon_sym_DOLLARvaexpr] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(1545), - [anon_sym_false] = ACTIONS(1545), - [anon_sym_null] = ACTIONS(1545), - [anon_sym_DOLLARvacount] = ACTIONS(1545), - [anon_sym_DOLLAReval] = ACTIONS(1545), - [anon_sym_DOLLARis_const] = ACTIONS(1545), - [anon_sym_DOLLARsizeof] = ACTIONS(1545), - [anon_sym_DOLLARstringify] = ACTIONS(1545), - [anon_sym_DOLLARappend] = ACTIONS(1545), - [anon_sym_DOLLARconcat] = ACTIONS(1545), - [anon_sym_DOLLARdefined] = ACTIONS(1545), - [anon_sym_DOLLARembed] = ACTIONS(1545), - [anon_sym_DOLLARand] = ACTIONS(1545), - [anon_sym_DOLLARor] = ACTIONS(1545), - [anon_sym_DOLLARfeature] = ACTIONS(1545), - [anon_sym_DOLLARassignable] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_typeid] = ACTIONS(1545), - [anon_sym_LBRACE_PIPE] = ACTIONS(1547), - [anon_sym_void] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_ichar] = ACTIONS(1545), - [anon_sym_short] = ACTIONS(1545), - [anon_sym_ushort] = ACTIONS(1545), - [anon_sym_uint] = ACTIONS(1545), - [anon_sym_long] = ACTIONS(1545), - [anon_sym_ulong] = ACTIONS(1545), - [anon_sym_int128] = ACTIONS(1545), - [anon_sym_uint128] = ACTIONS(1545), - [anon_sym_float] = ACTIONS(1545), - [anon_sym_double] = ACTIONS(1545), - [anon_sym_float16] = ACTIONS(1545), - [anon_sym_bfloat16] = ACTIONS(1545), - [anon_sym_float128] = ACTIONS(1545), - [anon_sym_iptr] = ACTIONS(1545), - [anon_sym_uptr] = ACTIONS(1545), - [anon_sym_isz] = ACTIONS(1545), - [anon_sym_usz] = ACTIONS(1545), - [anon_sym_anyfault] = ACTIONS(1545), - [anon_sym_any] = ACTIONS(1545), - [anon_sym_DOLLARtypeof] = ACTIONS(1545), - [anon_sym_DOLLARtypefrom] = ACTIONS(1545), - [anon_sym_DOLLARevaltype] = ACTIONS(1545), - [anon_sym_DOLLARvatype] = ACTIONS(1545), - [sym_real_literal] = ACTIONS(1547), + [sym_ct_ident] = ACTIONS(1641), + [sym_at_ident] = ACTIONS(1643), + [sym_hash_ident] = ACTIONS(1643), + [sym_type_ident] = ACTIONS(1643), + [sym_ct_type_ident] = ACTIONS(1643), + [sym_const_ident] = ACTIONS(1641), + [sym_builtin] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_tlocal] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_var] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_defer] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_nextcase] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_foreach] = ACTIONS(1641), + [anon_sym_foreach_r] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym_DOLLARassert] = ACTIONS(1641), + [anon_sym_DOLLARerror] = ACTIONS(1641), + [anon_sym_DOLLARecho] = ACTIONS(1641), + [anon_sym_DOLLARif] = ACTIONS(1641), + [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARfor] = ACTIONS(1641), + [anon_sym_DOLLARendfor] = ACTIONS(1641), + [anon_sym_DOLLARforeach] = ACTIONS(1641), + [anon_sym_DOLLARalignof] = ACTIONS(1641), + [anon_sym_DOLLARextnameof] = ACTIONS(1641), + [anon_sym_DOLLARnameof] = ACTIONS(1641), + [anon_sym_DOLLARoffsetof] = ACTIONS(1641), + [anon_sym_DOLLARqnameof] = ACTIONS(1641), + [anon_sym_DOLLARvaconst] = ACTIONS(1641), + [anon_sym_DOLLARvaarg] = ACTIONS(1641), + [anon_sym_DOLLARvaref] = ACTIONS(1641), + [anon_sym_DOLLARvaexpr] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_DOLLARvacount] = ACTIONS(1641), + [anon_sym_DOLLAReval] = ACTIONS(1641), + [anon_sym_DOLLARis_const] = ACTIONS(1641), + [anon_sym_DOLLARsizeof] = ACTIONS(1641), + [anon_sym_DOLLARstringify] = ACTIONS(1641), + [anon_sym_DOLLARappend] = ACTIONS(1641), + [anon_sym_DOLLARconcat] = ACTIONS(1641), + [anon_sym_DOLLARdefined] = ACTIONS(1641), + [anon_sym_DOLLARembed] = ACTIONS(1641), + [anon_sym_DOLLARand] = ACTIONS(1641), + [anon_sym_DOLLARor] = ACTIONS(1641), + [anon_sym_DOLLARfeature] = ACTIONS(1641), + [anon_sym_DOLLARassignable] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_typeid] = ACTIONS(1641), + [anon_sym_LBRACE_PIPE] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_ichar] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_ushort] = ACTIONS(1641), + [anon_sym_uint] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_ulong] = ACTIONS(1641), + [anon_sym_int128] = ACTIONS(1641), + [anon_sym_uint128] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_float16] = ACTIONS(1641), + [anon_sym_bfloat16] = ACTIONS(1641), + [anon_sym_float128] = ACTIONS(1641), + [anon_sym_iptr] = ACTIONS(1641), + [anon_sym_uptr] = ACTIONS(1641), + [anon_sym_isz] = ACTIONS(1641), + [anon_sym_usz] = ACTIONS(1641), + [anon_sym_anyfault] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_DOLLARtypeof] = ACTIONS(1641), + [anon_sym_DOLLARtypefrom] = ACTIONS(1641), + [anon_sym_DOLLARevaltype] = ACTIONS(1641), + [anon_sym_DOLLARvatype] = ACTIONS(1641), + [sym_real_literal] = ACTIONS(1643), + }, + [665] = { + [sym_line_comment] = STATE(665), + [sym_doc_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARendfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), }, - [703] = { - [sym_line_comment] = STATE(703), - [sym_doc_comment] = STATE(703), - [sym_block_comment] = STATE(703), - [sym_ident] = ACTIONS(1557), - [sym_integer_literal] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [sym_bytes_literal] = ACTIONS(1559), + [666] = { + [sym_line_comment] = STATE(666), + [sym_doc_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1557), - [sym_at_ident] = ACTIONS(1559), - [sym_hash_ident] = ACTIONS(1559), - [sym_type_ident] = ACTIONS(1559), - [sym_ct_type_ident] = ACTIONS(1559), - [sym_const_ident] = ACTIONS(1557), - [sym_builtin] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_tlocal] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_fn] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_var] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_defer] = ACTIONS(1557), - [anon_sym_assert] = ACTIONS(1557), - [anon_sym_nextcase] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_foreach] = ACTIONS(1557), - [anon_sym_foreach_r] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_int] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_asm] = ACTIONS(1557), - [anon_sym_DOLLARassert] = ACTIONS(1557), - [anon_sym_DOLLARerror] = ACTIONS(1557), - [anon_sym_DOLLARecho] = ACTIONS(1557), - [anon_sym_DOLLARif] = ACTIONS(1557), - [anon_sym_DOLLARswitch] = ACTIONS(1557), - [anon_sym_DOLLARfor] = ACTIONS(1557), - [anon_sym_DOLLARforeach] = ACTIONS(1557), - [anon_sym_DOLLARendforeach] = ACTIONS(1557), - [anon_sym_DOLLARalignof] = ACTIONS(1557), - [anon_sym_DOLLARextnameof] = ACTIONS(1557), - [anon_sym_DOLLARnameof] = ACTIONS(1557), - [anon_sym_DOLLARoffsetof] = ACTIONS(1557), - [anon_sym_DOLLARqnameof] = ACTIONS(1557), - [anon_sym_DOLLARvaconst] = ACTIONS(1557), - [anon_sym_DOLLARvaarg] = ACTIONS(1557), - [anon_sym_DOLLARvaref] = ACTIONS(1557), - [anon_sym_DOLLARvaexpr] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(1557), - [anon_sym_false] = ACTIONS(1557), - [anon_sym_null] = ACTIONS(1557), - [anon_sym_DOLLARvacount] = ACTIONS(1557), - [anon_sym_DOLLAReval] = ACTIONS(1557), - [anon_sym_DOLLARis_const] = ACTIONS(1557), - [anon_sym_DOLLARsizeof] = ACTIONS(1557), - [anon_sym_DOLLARstringify] = ACTIONS(1557), - [anon_sym_DOLLARappend] = ACTIONS(1557), - [anon_sym_DOLLARconcat] = ACTIONS(1557), - [anon_sym_DOLLARdefined] = ACTIONS(1557), - [anon_sym_DOLLARembed] = ACTIONS(1557), - [anon_sym_DOLLARand] = ACTIONS(1557), - [anon_sym_DOLLARor] = ACTIONS(1557), - [anon_sym_DOLLARfeature] = ACTIONS(1557), - [anon_sym_DOLLARassignable] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_typeid] = ACTIONS(1557), - [anon_sym_LBRACE_PIPE] = ACTIONS(1559), - [anon_sym_void] = ACTIONS(1557), - [anon_sym_bool] = ACTIONS(1557), - [anon_sym_char] = ACTIONS(1557), - [anon_sym_ichar] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [anon_sym_ushort] = ACTIONS(1557), - [anon_sym_uint] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_ulong] = ACTIONS(1557), - [anon_sym_int128] = ACTIONS(1557), - [anon_sym_uint128] = ACTIONS(1557), - [anon_sym_float] = ACTIONS(1557), - [anon_sym_double] = ACTIONS(1557), - [anon_sym_float16] = ACTIONS(1557), - [anon_sym_bfloat16] = ACTIONS(1557), - [anon_sym_float128] = ACTIONS(1557), - [anon_sym_iptr] = ACTIONS(1557), - [anon_sym_uptr] = ACTIONS(1557), - [anon_sym_isz] = ACTIONS(1557), - [anon_sym_usz] = ACTIONS(1557), - [anon_sym_anyfault] = ACTIONS(1557), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_DOLLARtypeof] = ACTIONS(1557), - [anon_sym_DOLLARtypefrom] = ACTIONS(1557), - [anon_sym_DOLLARevaltype] = ACTIONS(1557), - [anon_sym_DOLLARvatype] = ACTIONS(1557), - [sym_real_literal] = ACTIONS(1559), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARendforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, - [704] = { - [sym_line_comment] = STATE(704), - [sym_doc_comment] = STATE(704), - [sym_block_comment] = STATE(704), - [sym_ident] = ACTIONS(1561), - [sym_integer_literal] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [anon_sym_BQUOTE] = ACTIONS(1563), - [sym_bytes_literal] = ACTIONS(1563), + [667] = { + [sym_line_comment] = STATE(667), + [sym_doc_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1561), - [sym_at_ident] = ACTIONS(1563), - [sym_hash_ident] = ACTIONS(1563), - [sym_type_ident] = ACTIONS(1563), - [sym_ct_type_ident] = ACTIONS(1563), - [sym_const_ident] = ACTIONS(1561), - [sym_builtin] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_tlocal] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_fn] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_var] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_defer] = ACTIONS(1561), - [anon_sym_assert] = ACTIONS(1561), - [anon_sym_nextcase] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1563), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_foreach] = ACTIONS(1561), - [anon_sym_foreach_r] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_int] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_asm] = ACTIONS(1561), - [anon_sym_DOLLARassert] = ACTIONS(1561), - [anon_sym_DOLLARerror] = ACTIONS(1561), - [anon_sym_DOLLARecho] = ACTIONS(1561), - [anon_sym_DOLLARif] = ACTIONS(1561), - [anon_sym_DOLLARswitch] = ACTIONS(1561), - [anon_sym_DOLLARfor] = ACTIONS(1561), - [anon_sym_DOLLARforeach] = ACTIONS(1561), - [anon_sym_DOLLARendforeach] = ACTIONS(1561), - [anon_sym_DOLLARalignof] = ACTIONS(1561), - [anon_sym_DOLLARextnameof] = ACTIONS(1561), - [anon_sym_DOLLARnameof] = ACTIONS(1561), - [anon_sym_DOLLARoffsetof] = ACTIONS(1561), - [anon_sym_DOLLARqnameof] = ACTIONS(1561), - [anon_sym_DOLLARvaconst] = ACTIONS(1561), - [anon_sym_DOLLARvaarg] = ACTIONS(1561), - [anon_sym_DOLLARvaref] = ACTIONS(1561), - [anon_sym_DOLLARvaexpr] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [anon_sym_null] = ACTIONS(1561), - [anon_sym_DOLLARvacount] = ACTIONS(1561), - [anon_sym_DOLLAReval] = ACTIONS(1561), - [anon_sym_DOLLARis_const] = ACTIONS(1561), - [anon_sym_DOLLARsizeof] = ACTIONS(1561), - [anon_sym_DOLLARstringify] = ACTIONS(1561), - [anon_sym_DOLLARappend] = ACTIONS(1561), - [anon_sym_DOLLARconcat] = ACTIONS(1561), - [anon_sym_DOLLARdefined] = ACTIONS(1561), - [anon_sym_DOLLARembed] = ACTIONS(1561), - [anon_sym_DOLLARand] = ACTIONS(1561), - [anon_sym_DOLLARor] = ACTIONS(1561), - [anon_sym_DOLLARfeature] = ACTIONS(1561), - [anon_sym_DOLLARassignable] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_typeid] = ACTIONS(1561), - [anon_sym_LBRACE_PIPE] = ACTIONS(1563), - [anon_sym_void] = ACTIONS(1561), - [anon_sym_bool] = ACTIONS(1561), - [anon_sym_char] = ACTIONS(1561), - [anon_sym_ichar] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [anon_sym_ushort] = ACTIONS(1561), - [anon_sym_uint] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_ulong] = ACTIONS(1561), - [anon_sym_int128] = ACTIONS(1561), - [anon_sym_uint128] = ACTIONS(1561), - [anon_sym_float] = ACTIONS(1561), - [anon_sym_double] = ACTIONS(1561), - [anon_sym_float16] = ACTIONS(1561), - [anon_sym_bfloat16] = ACTIONS(1561), - [anon_sym_float128] = ACTIONS(1561), - [anon_sym_iptr] = ACTIONS(1561), - [anon_sym_uptr] = ACTIONS(1561), - [anon_sym_isz] = ACTIONS(1561), - [anon_sym_usz] = ACTIONS(1561), - [anon_sym_anyfault] = ACTIONS(1561), - [anon_sym_any] = ACTIONS(1561), - [anon_sym_DOLLARtypeof] = ACTIONS(1561), - [anon_sym_DOLLARtypefrom] = ACTIONS(1561), - [anon_sym_DOLLARevaltype] = ACTIONS(1561), - [anon_sym_DOLLARvatype] = ACTIONS(1561), - [sym_real_literal] = ACTIONS(1563), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARendforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), + }, + [668] = { + [sym_line_comment] = STATE(668), + [sym_doc_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARendforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, - [705] = { - [sym_line_comment] = STATE(705), - [sym_doc_comment] = STATE(705), - [sym_block_comment] = STATE(705), + [669] = { + [sym_line_comment] = STATE(669), + [sym_doc_comment] = STATE(669), + [sym_block_comment] = STATE(669), [sym_ident] = ACTIONS(1573), [sym_integer_literal] = ACTIONS(1575), [anon_sym_SQUOTE] = ACTIONS(1575), @@ -106839,2770 +102614,4495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1573), [sym_real_literal] = ACTIONS(1575), }, - [706] = { - [sym_line_comment] = STATE(706), - [sym_doc_comment] = STATE(706), - [sym_block_comment] = STATE(706), - [sym_ident] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_BQUOTE] = ACTIONS(1583), - [sym_bytes_literal] = ACTIONS(1583), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1581), - [sym_at_ident] = ACTIONS(1583), - [sym_hash_ident] = ACTIONS(1583), - [sym_type_ident] = ACTIONS(1583), - [sym_ct_type_ident] = ACTIONS(1583), - [sym_const_ident] = ACTIONS(1581), - [sym_builtin] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_tlocal] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_fn] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1581), - [anon_sym_var] = ACTIONS(1581), - [anon_sym_return] = ACTIONS(1581), - [anon_sym_continue] = ACTIONS(1581), - [anon_sym_break] = ACTIONS(1581), - [anon_sym_defer] = ACTIONS(1581), - [anon_sym_assert] = ACTIONS(1581), - [anon_sym_nextcase] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1581), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_for] = ACTIONS(1581), - [anon_sym_foreach] = ACTIONS(1581), - [anon_sym_foreach_r] = ACTIONS(1581), - [anon_sym_while] = ACTIONS(1581), - [anon_sym_do] = ACTIONS(1581), - [anon_sym_int] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_asm] = ACTIONS(1581), - [anon_sym_DOLLARassert] = ACTIONS(1581), - [anon_sym_DOLLARerror] = ACTIONS(1581), - [anon_sym_DOLLARecho] = ACTIONS(1581), - [anon_sym_DOLLARif] = ACTIONS(1581), - [anon_sym_DOLLARswitch] = ACTIONS(1581), - [anon_sym_DOLLARfor] = ACTIONS(1581), - [anon_sym_DOLLARforeach] = ACTIONS(1581), - [anon_sym_DOLLARendforeach] = ACTIONS(1581), - [anon_sym_DOLLARalignof] = ACTIONS(1581), - [anon_sym_DOLLARextnameof] = ACTIONS(1581), - [anon_sym_DOLLARnameof] = ACTIONS(1581), - [anon_sym_DOLLARoffsetof] = ACTIONS(1581), - [anon_sym_DOLLARqnameof] = ACTIONS(1581), - [anon_sym_DOLLARvaconst] = ACTIONS(1581), - [anon_sym_DOLLARvaarg] = ACTIONS(1581), - [anon_sym_DOLLARvaref] = ACTIONS(1581), - [anon_sym_DOLLARvaexpr] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1581), - [anon_sym_false] = ACTIONS(1581), - [anon_sym_null] = ACTIONS(1581), - [anon_sym_DOLLARvacount] = ACTIONS(1581), - [anon_sym_DOLLAReval] = ACTIONS(1581), - [anon_sym_DOLLARis_const] = ACTIONS(1581), - [anon_sym_DOLLARsizeof] = ACTIONS(1581), - [anon_sym_DOLLARstringify] = ACTIONS(1581), - [anon_sym_DOLLARappend] = ACTIONS(1581), - [anon_sym_DOLLARconcat] = ACTIONS(1581), - [anon_sym_DOLLARdefined] = ACTIONS(1581), - [anon_sym_DOLLARembed] = ACTIONS(1581), - [anon_sym_DOLLARand] = ACTIONS(1581), - [anon_sym_DOLLARor] = ACTIONS(1581), - [anon_sym_DOLLARfeature] = ACTIONS(1581), - [anon_sym_DOLLARassignable] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_TILDE] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_typeid] = ACTIONS(1581), - [anon_sym_LBRACE_PIPE] = ACTIONS(1583), - [anon_sym_void] = ACTIONS(1581), - [anon_sym_bool] = ACTIONS(1581), - [anon_sym_char] = ACTIONS(1581), - [anon_sym_ichar] = ACTIONS(1581), - [anon_sym_short] = ACTIONS(1581), - [anon_sym_ushort] = ACTIONS(1581), - [anon_sym_uint] = ACTIONS(1581), - [anon_sym_long] = ACTIONS(1581), - [anon_sym_ulong] = ACTIONS(1581), - [anon_sym_int128] = ACTIONS(1581), - [anon_sym_uint128] = ACTIONS(1581), - [anon_sym_float] = ACTIONS(1581), - [anon_sym_double] = ACTIONS(1581), - [anon_sym_float16] = ACTIONS(1581), - [anon_sym_bfloat16] = ACTIONS(1581), - [anon_sym_float128] = ACTIONS(1581), - [anon_sym_iptr] = ACTIONS(1581), - [anon_sym_uptr] = ACTIONS(1581), - [anon_sym_isz] = ACTIONS(1581), - [anon_sym_usz] = ACTIONS(1581), - [anon_sym_anyfault] = ACTIONS(1581), - [anon_sym_any] = ACTIONS(1581), - [anon_sym_DOLLARtypeof] = ACTIONS(1581), - [anon_sym_DOLLARtypefrom] = ACTIONS(1581), - [anon_sym_DOLLARevaltype] = ACTIONS(1581), - [anon_sym_DOLLARvatype] = ACTIONS(1581), - [sym_real_literal] = ACTIONS(1583), + [670] = { + [sym_line_comment] = STATE(670), + [sym_doc_comment] = STATE(670), + [sym_block_comment] = STATE(670), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARendforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), + }, + [671] = { + [sym_line_comment] = STATE(671), + [sym_doc_comment] = STATE(671), + [sym_block_comment] = STATE(671), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARendforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), + }, + [672] = { + [sym_line_comment] = STATE(672), + [sym_doc_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARendforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), + }, + [673] = { + [sym_line_comment] = STATE(673), + [sym_doc_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARendforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), + }, + [674] = { + [sym_line_comment] = STATE(674), + [sym_doc_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARendforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), + }, + [675] = { + [sym_line_comment] = STATE(675), + [sym_doc_comment] = STATE(675), + [sym_block_comment] = STATE(675), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARendforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), + }, + [676] = { + [sym_line_comment] = STATE(676), + [sym_doc_comment] = STATE(676), + [sym_block_comment] = STATE(676), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARendforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, + [677] = { + [sym_line_comment] = STATE(677), + [sym_doc_comment] = STATE(677), + [sym_block_comment] = STATE(677), + [sym_ident] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [sym_bytes_literal] = ACTIONS(1391), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1389), + [sym_at_ident] = ACTIONS(1391), + [sym_hash_ident] = ACTIONS(1391), + [sym_type_ident] = ACTIONS(1391), + [sym_ct_type_ident] = ACTIONS(1391), + [sym_const_ident] = ACTIONS(1389), + [sym_builtin] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_tlocal] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_var] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_defer] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1389), + [anon_sym_nextcase] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_foreach] = ACTIONS(1389), + [anon_sym_foreach_r] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_int] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_DOLLARassert] = ACTIONS(1389), + [anon_sym_DOLLARerror] = ACTIONS(1389), + [anon_sym_DOLLARecho] = ACTIONS(1389), + [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARswitch] = ACTIONS(1389), + [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARforeach] = ACTIONS(1389), + [anon_sym_DOLLARendforeach] = ACTIONS(1389), + [anon_sym_DOLLARalignof] = ACTIONS(1389), + [anon_sym_DOLLARextnameof] = ACTIONS(1389), + [anon_sym_DOLLARnameof] = ACTIONS(1389), + [anon_sym_DOLLARoffsetof] = ACTIONS(1389), + [anon_sym_DOLLARqnameof] = ACTIONS(1389), + [anon_sym_DOLLARvaconst] = ACTIONS(1389), + [anon_sym_DOLLARvaarg] = ACTIONS(1389), + [anon_sym_DOLLARvaref] = ACTIONS(1389), + [anon_sym_DOLLARvaexpr] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_DOLLARvacount] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), + [anon_sym_DOLLARand] = ACTIONS(1389), + [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLARassignable] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_typeid] = ACTIONS(1389), + [anon_sym_LBRACE_PIPE] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_ichar] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_ushort] = ACTIONS(1389), + [anon_sym_uint] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_ulong] = ACTIONS(1389), + [anon_sym_int128] = ACTIONS(1389), + [anon_sym_uint128] = ACTIONS(1389), + [anon_sym_float] = ACTIONS(1389), + [anon_sym_double] = ACTIONS(1389), + [anon_sym_float16] = ACTIONS(1389), + [anon_sym_bfloat16] = ACTIONS(1389), + [anon_sym_float128] = ACTIONS(1389), + [anon_sym_iptr] = ACTIONS(1389), + [anon_sym_uptr] = ACTIONS(1389), + [anon_sym_isz] = ACTIONS(1389), + [anon_sym_usz] = ACTIONS(1389), + [anon_sym_anyfault] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_DOLLARtypeof] = ACTIONS(1389), + [anon_sym_DOLLARtypefrom] = ACTIONS(1389), + [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), + [sym_real_literal] = ACTIONS(1391), + }, + [678] = { + [sym_line_comment] = STATE(678), + [sym_doc_comment] = STATE(678), + [sym_block_comment] = STATE(678), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARendforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), + }, + [679] = { + [sym_line_comment] = STATE(679), + [sym_doc_comment] = STATE(679), + [sym_block_comment] = STATE(679), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARendforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), + }, + [680] = { + [sym_line_comment] = STATE(680), + [sym_doc_comment] = STATE(680), + [sym_block_comment] = STATE(680), + [sym_ident] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_BQUOTE] = ACTIONS(1403), + [sym_bytes_literal] = ACTIONS(1403), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1401), + [sym_at_ident] = ACTIONS(1403), + [sym_hash_ident] = ACTIONS(1403), + [sym_type_ident] = ACTIONS(1403), + [sym_ct_type_ident] = ACTIONS(1403), + [sym_const_ident] = ACTIONS(1401), + [sym_builtin] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_tlocal] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_var] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_defer] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1401), + [anon_sym_nextcase] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_foreach] = ACTIONS(1401), + [anon_sym_foreach_r] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_int] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_DOLLARassert] = ACTIONS(1401), + [anon_sym_DOLLARerror] = ACTIONS(1401), + [anon_sym_DOLLARecho] = ACTIONS(1401), + [anon_sym_DOLLARif] = ACTIONS(1401), + [anon_sym_DOLLARswitch] = ACTIONS(1401), + [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARforeach] = ACTIONS(1401), + [anon_sym_DOLLARendforeach] = ACTIONS(1401), + [anon_sym_DOLLARalignof] = ACTIONS(1401), + [anon_sym_DOLLARextnameof] = ACTIONS(1401), + [anon_sym_DOLLARnameof] = ACTIONS(1401), + [anon_sym_DOLLARoffsetof] = ACTIONS(1401), + [anon_sym_DOLLARqnameof] = ACTIONS(1401), + [anon_sym_DOLLARvaconst] = ACTIONS(1401), + [anon_sym_DOLLARvaarg] = ACTIONS(1401), + [anon_sym_DOLLARvaref] = ACTIONS(1401), + [anon_sym_DOLLARvaexpr] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1401), + [anon_sym_DOLLARvacount] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), + [anon_sym_DOLLARand] = ACTIONS(1401), + [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLARassignable] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), + [anon_sym_typeid] = ACTIONS(1401), + [anon_sym_LBRACE_PIPE] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_ichar] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), + }, + [681] = { + [sym_line_comment] = STATE(681), + [sym_doc_comment] = STATE(681), + [sym_block_comment] = STATE(681), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARendforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), + }, + [682] = { + [sym_line_comment] = STATE(682), + [sym_doc_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARendforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), + }, + [683] = { + [sym_line_comment] = STATE(683), + [sym_doc_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARendforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), + }, + [684] = { + [sym_line_comment] = STATE(684), + [sym_doc_comment] = STATE(684), + [sym_block_comment] = STATE(684), + [sym_ident] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_bytes_literal] = ACTIONS(1419), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1417), + [sym_at_ident] = ACTIONS(1419), + [sym_hash_ident] = ACTIONS(1419), + [sym_type_ident] = ACTIONS(1419), + [sym_ct_type_ident] = ACTIONS(1419), + [sym_const_ident] = ACTIONS(1417), + [sym_builtin] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_tlocal] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_var] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_defer] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_nextcase] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_foreach] = ACTIONS(1417), + [anon_sym_foreach_r] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_DOLLARassert] = ACTIONS(1417), + [anon_sym_DOLLARerror] = ACTIONS(1417), + [anon_sym_DOLLARecho] = ACTIONS(1417), + [anon_sym_DOLLARif] = ACTIONS(1417), + [anon_sym_DOLLARswitch] = ACTIONS(1417), + [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARforeach] = ACTIONS(1417), + [anon_sym_DOLLARendforeach] = ACTIONS(1417), + [anon_sym_DOLLARalignof] = ACTIONS(1417), + [anon_sym_DOLLARextnameof] = ACTIONS(1417), + [anon_sym_DOLLARnameof] = ACTIONS(1417), + [anon_sym_DOLLARoffsetof] = ACTIONS(1417), + [anon_sym_DOLLARqnameof] = ACTIONS(1417), + [anon_sym_DOLLARvaconst] = ACTIONS(1417), + [anon_sym_DOLLARvaarg] = ACTIONS(1417), + [anon_sym_DOLLARvaref] = ACTIONS(1417), + [anon_sym_DOLLARvaexpr] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_DOLLARvacount] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), + [anon_sym_DOLLARand] = ACTIONS(1417), + [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLARassignable] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_typeid] = ACTIONS(1417), + [anon_sym_LBRACE_PIPE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_ichar] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_ushort] = ACTIONS(1417), + [anon_sym_uint] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_ulong] = ACTIONS(1417), + [anon_sym_int128] = ACTIONS(1417), + [anon_sym_uint128] = ACTIONS(1417), + [anon_sym_float] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_float16] = ACTIONS(1417), + [anon_sym_bfloat16] = ACTIONS(1417), + [anon_sym_float128] = ACTIONS(1417), + [anon_sym_iptr] = ACTIONS(1417), + [anon_sym_uptr] = ACTIONS(1417), + [anon_sym_isz] = ACTIONS(1417), + [anon_sym_usz] = ACTIONS(1417), + [anon_sym_anyfault] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_DOLLARtypeof] = ACTIONS(1417), + [anon_sym_DOLLARtypefrom] = ACTIONS(1417), + [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1419), + }, + [685] = { + [sym_line_comment] = STATE(685), + [sym_doc_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARendforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), }, - [707] = { - [sym_line_comment] = STATE(707), - [sym_doc_comment] = STATE(707), - [sym_block_comment] = STATE(707), - [sym_ident] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [anon_sym_BQUOTE] = ACTIONS(1587), - [sym_bytes_literal] = ACTIONS(1587), + [686] = { + [sym_line_comment] = STATE(686), + [sym_doc_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARendforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), + }, + [687] = { + [sym_line_comment] = STATE(687), + [sym_doc_comment] = STATE(687), + [sym_block_comment] = STATE(687), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARendforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), + }, + [688] = { + [sym_line_comment] = STATE(688), + [sym_doc_comment] = STATE(688), + [sym_block_comment] = STATE(688), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1585), - [sym_at_ident] = ACTIONS(1587), - [sym_hash_ident] = ACTIONS(1587), - [sym_type_ident] = ACTIONS(1587), - [sym_ct_type_ident] = ACTIONS(1587), - [sym_const_ident] = ACTIONS(1585), - [sym_builtin] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_tlocal] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_fn] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_var] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_defer] = ACTIONS(1585), - [anon_sym_assert] = ACTIONS(1585), - [anon_sym_nextcase] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_foreach] = ACTIONS(1585), - [anon_sym_foreach_r] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_int] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_asm] = ACTIONS(1585), - [anon_sym_DOLLARassert] = ACTIONS(1585), - [anon_sym_DOLLARerror] = ACTIONS(1585), - [anon_sym_DOLLARecho] = ACTIONS(1585), - [anon_sym_DOLLARif] = ACTIONS(1585), - [anon_sym_DOLLARswitch] = ACTIONS(1585), - [anon_sym_DOLLARfor] = ACTIONS(1585), - [anon_sym_DOLLARforeach] = ACTIONS(1585), - [anon_sym_DOLLARendforeach] = ACTIONS(1585), - [anon_sym_DOLLARalignof] = ACTIONS(1585), - [anon_sym_DOLLARextnameof] = ACTIONS(1585), - [anon_sym_DOLLARnameof] = ACTIONS(1585), - [anon_sym_DOLLARoffsetof] = ACTIONS(1585), - [anon_sym_DOLLARqnameof] = ACTIONS(1585), - [anon_sym_DOLLARvaconst] = ACTIONS(1585), - [anon_sym_DOLLARvaarg] = ACTIONS(1585), - [anon_sym_DOLLARvaref] = ACTIONS(1585), - [anon_sym_DOLLARvaexpr] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [anon_sym_null] = ACTIONS(1585), - [anon_sym_DOLLARvacount] = ACTIONS(1585), - [anon_sym_DOLLAReval] = ACTIONS(1585), - [anon_sym_DOLLARis_const] = ACTIONS(1585), - [anon_sym_DOLLARsizeof] = ACTIONS(1585), - [anon_sym_DOLLARstringify] = ACTIONS(1585), - [anon_sym_DOLLARappend] = ACTIONS(1585), - [anon_sym_DOLLARconcat] = ACTIONS(1585), - [anon_sym_DOLLARdefined] = ACTIONS(1585), - [anon_sym_DOLLARembed] = ACTIONS(1585), - [anon_sym_DOLLARand] = ACTIONS(1585), - [anon_sym_DOLLARor] = ACTIONS(1585), - [anon_sym_DOLLARfeature] = ACTIONS(1585), - [anon_sym_DOLLARassignable] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_typeid] = ACTIONS(1585), - [anon_sym_LBRACE_PIPE] = ACTIONS(1587), - [anon_sym_void] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_ichar] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_ushort] = ACTIONS(1585), - [anon_sym_uint] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_ulong] = ACTIONS(1585), - [anon_sym_int128] = ACTIONS(1585), - [anon_sym_uint128] = ACTIONS(1585), - [anon_sym_float] = ACTIONS(1585), - [anon_sym_double] = ACTIONS(1585), - [anon_sym_float16] = ACTIONS(1585), - [anon_sym_bfloat16] = ACTIONS(1585), - [anon_sym_float128] = ACTIONS(1585), - [anon_sym_iptr] = ACTIONS(1585), - [anon_sym_uptr] = ACTIONS(1585), - [anon_sym_isz] = ACTIONS(1585), - [anon_sym_usz] = ACTIONS(1585), - [anon_sym_anyfault] = ACTIONS(1585), - [anon_sym_any] = ACTIONS(1585), - [anon_sym_DOLLARtypeof] = ACTIONS(1585), - [anon_sym_DOLLARtypefrom] = ACTIONS(1585), - [anon_sym_DOLLARevaltype] = ACTIONS(1585), - [anon_sym_DOLLARvatype] = ACTIONS(1585), - [sym_real_literal] = ACTIONS(1587), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARendfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), }, - [708] = { - [sym_line_comment] = STATE(708), - [sym_doc_comment] = STATE(708), - [sym_block_comment] = STATE(708), - [sym_ident] = ACTIONS(1637), - [sym_integer_literal] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [anon_sym_BQUOTE] = ACTIONS(1639), - [sym_bytes_literal] = ACTIONS(1639), + [689] = { + [sym_line_comment] = STATE(689), + [sym_doc_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1637), - [sym_at_ident] = ACTIONS(1639), - [sym_hash_ident] = ACTIONS(1639), - [sym_type_ident] = ACTIONS(1639), - [sym_ct_type_ident] = ACTIONS(1639), - [sym_const_ident] = ACTIONS(1637), - [sym_builtin] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_tlocal] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_fn] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_var] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_defer] = ACTIONS(1637), - [anon_sym_assert] = ACTIONS(1637), - [anon_sym_nextcase] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_foreach] = ACTIONS(1637), - [anon_sym_foreach_r] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_int] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_asm] = ACTIONS(1637), - [anon_sym_DOLLARassert] = ACTIONS(1637), - [anon_sym_DOLLARerror] = ACTIONS(1637), - [anon_sym_DOLLARecho] = ACTIONS(1637), - [anon_sym_DOLLARif] = ACTIONS(1637), - [anon_sym_DOLLARswitch] = ACTIONS(1637), - [anon_sym_DOLLARfor] = ACTIONS(1637), - [anon_sym_DOLLARforeach] = ACTIONS(1637), - [anon_sym_DOLLARendforeach] = ACTIONS(1637), - [anon_sym_DOLLARalignof] = ACTIONS(1637), - [anon_sym_DOLLARextnameof] = ACTIONS(1637), - [anon_sym_DOLLARnameof] = ACTIONS(1637), - [anon_sym_DOLLARoffsetof] = ACTIONS(1637), - [anon_sym_DOLLARqnameof] = ACTIONS(1637), - [anon_sym_DOLLARvaconst] = ACTIONS(1637), - [anon_sym_DOLLARvaarg] = ACTIONS(1637), - [anon_sym_DOLLARvaref] = ACTIONS(1637), - [anon_sym_DOLLARvaexpr] = ACTIONS(1637), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [anon_sym_null] = ACTIONS(1637), - [anon_sym_DOLLARvacount] = ACTIONS(1637), - [anon_sym_DOLLAReval] = ACTIONS(1637), - [anon_sym_DOLLARis_const] = ACTIONS(1637), - [anon_sym_DOLLARsizeof] = ACTIONS(1637), - [anon_sym_DOLLARstringify] = ACTIONS(1637), - [anon_sym_DOLLARappend] = ACTIONS(1637), - [anon_sym_DOLLARconcat] = ACTIONS(1637), - [anon_sym_DOLLARdefined] = ACTIONS(1637), - [anon_sym_DOLLARembed] = ACTIONS(1637), - [anon_sym_DOLLARand] = ACTIONS(1637), - [anon_sym_DOLLARor] = ACTIONS(1637), - [anon_sym_DOLLARfeature] = ACTIONS(1637), - [anon_sym_DOLLARassignable] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_typeid] = ACTIONS(1637), - [anon_sym_LBRACE_PIPE] = ACTIONS(1639), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_char] = ACTIONS(1637), - [anon_sym_ichar] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [anon_sym_ushort] = ACTIONS(1637), - [anon_sym_uint] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_ulong] = ACTIONS(1637), - [anon_sym_int128] = ACTIONS(1637), - [anon_sym_uint128] = ACTIONS(1637), - [anon_sym_float] = ACTIONS(1637), - [anon_sym_double] = ACTIONS(1637), - [anon_sym_float16] = ACTIONS(1637), - [anon_sym_bfloat16] = ACTIONS(1637), - [anon_sym_float128] = ACTIONS(1637), - [anon_sym_iptr] = ACTIONS(1637), - [anon_sym_uptr] = ACTIONS(1637), - [anon_sym_isz] = ACTIONS(1637), - [anon_sym_usz] = ACTIONS(1637), - [anon_sym_anyfault] = ACTIONS(1637), - [anon_sym_any] = ACTIONS(1637), - [anon_sym_DOLLARtypeof] = ACTIONS(1637), - [anon_sym_DOLLARtypefrom] = ACTIONS(1637), - [anon_sym_DOLLARevaltype] = ACTIONS(1637), - [anon_sym_DOLLARvatype] = ACTIONS(1637), - [sym_real_literal] = ACTIONS(1639), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARendfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, - [709] = { - [sym_line_comment] = STATE(709), - [sym_doc_comment] = STATE(709), - [sym_block_comment] = STATE(709), - [sym_ident] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_bytes_literal] = ACTIONS(1655), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1653), - [sym_at_ident] = ACTIONS(1655), - [sym_hash_ident] = ACTIONS(1655), - [sym_type_ident] = ACTIONS(1655), - [sym_ct_type_ident] = ACTIONS(1655), - [sym_const_ident] = ACTIONS(1653), - [sym_builtin] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_tlocal] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_var] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_assert] = ACTIONS(1653), - [anon_sym_nextcase] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_foreach] = ACTIONS(1653), - [anon_sym_foreach_r] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_asm] = ACTIONS(1653), - [anon_sym_DOLLARassert] = ACTIONS(1653), - [anon_sym_DOLLARerror] = ACTIONS(1653), - [anon_sym_DOLLARecho] = ACTIONS(1653), - [anon_sym_DOLLARif] = ACTIONS(1653), - [anon_sym_DOLLARswitch] = ACTIONS(1653), - [anon_sym_DOLLARfor] = ACTIONS(1653), - [anon_sym_DOLLARforeach] = ACTIONS(1653), - [anon_sym_DOLLARendforeach] = ACTIONS(1653), - [anon_sym_DOLLARalignof] = ACTIONS(1653), - [anon_sym_DOLLARextnameof] = ACTIONS(1653), - [anon_sym_DOLLARnameof] = ACTIONS(1653), - [anon_sym_DOLLARoffsetof] = ACTIONS(1653), - [anon_sym_DOLLARqnameof] = ACTIONS(1653), - [anon_sym_DOLLARvaconst] = ACTIONS(1653), - [anon_sym_DOLLARvaarg] = ACTIONS(1653), - [anon_sym_DOLLARvaref] = ACTIONS(1653), - [anon_sym_DOLLARvaexpr] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_DOLLARvacount] = ACTIONS(1653), - [anon_sym_DOLLAReval] = ACTIONS(1653), - [anon_sym_DOLLARis_const] = ACTIONS(1653), - [anon_sym_DOLLARsizeof] = ACTIONS(1653), - [anon_sym_DOLLARstringify] = ACTIONS(1653), - [anon_sym_DOLLARappend] = ACTIONS(1653), - [anon_sym_DOLLARconcat] = ACTIONS(1653), - [anon_sym_DOLLARdefined] = ACTIONS(1653), - [anon_sym_DOLLARembed] = ACTIONS(1653), - [anon_sym_DOLLARand] = ACTIONS(1653), - [anon_sym_DOLLARor] = ACTIONS(1653), - [anon_sym_DOLLARfeature] = ACTIONS(1653), - [anon_sym_DOLLARassignable] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_typeid] = ACTIONS(1653), - [anon_sym_LBRACE_PIPE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_ichar] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [anon_sym_ushort] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_ulong] = ACTIONS(1653), - [anon_sym_int128] = ACTIONS(1653), - [anon_sym_uint128] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_double] = ACTIONS(1653), - [anon_sym_float16] = ACTIONS(1653), - [anon_sym_bfloat16] = ACTIONS(1653), - [anon_sym_float128] = ACTIONS(1653), - [anon_sym_iptr] = ACTIONS(1653), - [anon_sym_uptr] = ACTIONS(1653), - [anon_sym_isz] = ACTIONS(1653), - [anon_sym_usz] = ACTIONS(1653), - [anon_sym_anyfault] = ACTIONS(1653), - [anon_sym_any] = ACTIONS(1653), - [anon_sym_DOLLARtypeof] = ACTIONS(1653), - [anon_sym_DOLLARtypefrom] = ACTIONS(1653), - [anon_sym_DOLLARevaltype] = ACTIONS(1653), - [anon_sym_DOLLARvatype] = ACTIONS(1653), - [sym_real_literal] = ACTIONS(1655), + [690] = { + [sym_line_comment] = STATE(690), + [sym_doc_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARendforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, - [710] = { - [sym_line_comment] = STATE(710), - [sym_doc_comment] = STATE(710), - [sym_block_comment] = STATE(710), - [sym_ident] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [sym_bytes_literal] = ACTIONS(1385), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1383), - [sym_at_ident] = ACTIONS(1385), - [sym_hash_ident] = ACTIONS(1385), - [sym_type_ident] = ACTIONS(1385), - [sym_ct_type_ident] = ACTIONS(1385), - [sym_const_ident] = ACTIONS(1383), - [sym_builtin] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_tlocal] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_var] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_defer] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_nextcase] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_AMP_AMP] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_foreach] = ACTIONS(1383), - [anon_sym_foreach_r] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_int] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym_DOLLARassert] = ACTIONS(1383), - [anon_sym_DOLLARerror] = ACTIONS(1383), - [anon_sym_DOLLARecho] = ACTIONS(1383), - [anon_sym_DOLLARif] = ACTIONS(1383), - [anon_sym_DOLLARswitch] = ACTIONS(1383), - [anon_sym_DOLLARfor] = ACTIONS(1383), - [anon_sym_DOLLARforeach] = ACTIONS(1383), - [anon_sym_DOLLARendforeach] = ACTIONS(1383), - [anon_sym_DOLLARalignof] = ACTIONS(1383), - [anon_sym_DOLLARextnameof] = ACTIONS(1383), - [anon_sym_DOLLARnameof] = ACTIONS(1383), - [anon_sym_DOLLARoffsetof] = ACTIONS(1383), - [anon_sym_DOLLARqnameof] = ACTIONS(1383), - [anon_sym_DOLLARvaconst] = ACTIONS(1383), - [anon_sym_DOLLARvaarg] = ACTIONS(1383), - [anon_sym_DOLLARvaref] = ACTIONS(1383), - [anon_sym_DOLLARvaexpr] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1383), - [anon_sym_DOLLARvacount] = ACTIONS(1383), - [anon_sym_DOLLAReval] = ACTIONS(1383), - [anon_sym_DOLLARis_const] = ACTIONS(1383), - [anon_sym_DOLLARsizeof] = ACTIONS(1383), - [anon_sym_DOLLARstringify] = ACTIONS(1383), - [anon_sym_DOLLARappend] = ACTIONS(1383), - [anon_sym_DOLLARconcat] = ACTIONS(1383), - [anon_sym_DOLLARdefined] = ACTIONS(1383), - [anon_sym_DOLLARembed] = ACTIONS(1383), - [anon_sym_DOLLARand] = ACTIONS(1383), - [anon_sym_DOLLARor] = ACTIONS(1383), - [anon_sym_DOLLARfeature] = ACTIONS(1383), - [anon_sym_DOLLARassignable] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_typeid] = ACTIONS(1383), - [anon_sym_LBRACE_PIPE] = ACTIONS(1385), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_bool] = ACTIONS(1383), - [anon_sym_char] = ACTIONS(1383), - [anon_sym_ichar] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_ushort] = ACTIONS(1383), - [anon_sym_uint] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_ulong] = ACTIONS(1383), - [anon_sym_int128] = ACTIONS(1383), - [anon_sym_uint128] = ACTIONS(1383), - [anon_sym_float] = ACTIONS(1383), - [anon_sym_double] = ACTIONS(1383), - [anon_sym_float16] = ACTIONS(1383), - [anon_sym_bfloat16] = ACTIONS(1383), - [anon_sym_float128] = ACTIONS(1383), - [anon_sym_iptr] = ACTIONS(1383), - [anon_sym_uptr] = ACTIONS(1383), - [anon_sym_isz] = ACTIONS(1383), - [anon_sym_usz] = ACTIONS(1383), - [anon_sym_anyfault] = ACTIONS(1383), - [anon_sym_any] = ACTIONS(1383), - [anon_sym_DOLLARtypeof] = ACTIONS(1383), - [anon_sym_DOLLARtypefrom] = ACTIONS(1383), - [anon_sym_DOLLARevaltype] = ACTIONS(1383), - [anon_sym_DOLLARvatype] = ACTIONS(1383), - [sym_real_literal] = ACTIONS(1385), + [691] = { + [sym_line_comment] = STATE(691), + [sym_doc_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARendforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, - [711] = { - [sym_line_comment] = STATE(711), - [sym_doc_comment] = STATE(711), - [sym_block_comment] = STATE(711), - [sym_ident] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [anon_sym_BQUOTE] = ACTIONS(1413), - [sym_bytes_literal] = ACTIONS(1413), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1411), - [sym_at_ident] = ACTIONS(1413), - [sym_hash_ident] = ACTIONS(1413), - [sym_type_ident] = ACTIONS(1413), - [sym_ct_type_ident] = ACTIONS(1413), - [sym_const_ident] = ACTIONS(1411), - [sym_builtin] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_tlocal] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_var] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_defer] = ACTIONS(1411), - [anon_sym_assert] = ACTIONS(1411), - [anon_sym_nextcase] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_foreach] = ACTIONS(1411), - [anon_sym_foreach_r] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_int] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym_DOLLARassert] = ACTIONS(1411), - [anon_sym_DOLLARerror] = ACTIONS(1411), - [anon_sym_DOLLARecho] = ACTIONS(1411), - [anon_sym_DOLLARif] = ACTIONS(1411), - [anon_sym_DOLLARswitch] = ACTIONS(1411), - [anon_sym_DOLLARfor] = ACTIONS(1411), - [anon_sym_DOLLARforeach] = ACTIONS(1411), - [anon_sym_DOLLARendforeach] = ACTIONS(1411), - [anon_sym_DOLLARalignof] = ACTIONS(1411), - [anon_sym_DOLLARextnameof] = ACTIONS(1411), - [anon_sym_DOLLARnameof] = ACTIONS(1411), - [anon_sym_DOLLARoffsetof] = ACTIONS(1411), - [anon_sym_DOLLARqnameof] = ACTIONS(1411), - [anon_sym_DOLLARvaconst] = ACTIONS(1411), - [anon_sym_DOLLARvaarg] = ACTIONS(1411), - [anon_sym_DOLLARvaref] = ACTIONS(1411), - [anon_sym_DOLLARvaexpr] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_DOLLARvacount] = ACTIONS(1411), - [anon_sym_DOLLAReval] = ACTIONS(1411), - [anon_sym_DOLLARis_const] = ACTIONS(1411), - [anon_sym_DOLLARsizeof] = ACTIONS(1411), - [anon_sym_DOLLARstringify] = ACTIONS(1411), - [anon_sym_DOLLARappend] = ACTIONS(1411), - [anon_sym_DOLLARconcat] = ACTIONS(1411), - [anon_sym_DOLLARdefined] = ACTIONS(1411), - [anon_sym_DOLLARembed] = ACTIONS(1411), - [anon_sym_DOLLARand] = ACTIONS(1411), - [anon_sym_DOLLARor] = ACTIONS(1411), - [anon_sym_DOLLARfeature] = ACTIONS(1411), - [anon_sym_DOLLARassignable] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_typeid] = ACTIONS(1411), - [anon_sym_LBRACE_PIPE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_bool] = ACTIONS(1411), - [anon_sym_char] = ACTIONS(1411), - [anon_sym_ichar] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_ushort] = ACTIONS(1411), - [anon_sym_uint] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_ulong] = ACTIONS(1411), - [anon_sym_int128] = ACTIONS(1411), - [anon_sym_uint128] = ACTIONS(1411), - [anon_sym_float] = ACTIONS(1411), - [anon_sym_double] = ACTIONS(1411), - [anon_sym_float16] = ACTIONS(1411), - [anon_sym_bfloat16] = ACTIONS(1411), - [anon_sym_float128] = ACTIONS(1411), - [anon_sym_iptr] = ACTIONS(1411), - [anon_sym_uptr] = ACTIONS(1411), - [anon_sym_isz] = ACTIONS(1411), - [anon_sym_usz] = ACTIONS(1411), - [anon_sym_anyfault] = ACTIONS(1411), - [anon_sym_any] = ACTIONS(1411), - [anon_sym_DOLLARtypeof] = ACTIONS(1411), - [anon_sym_DOLLARtypefrom] = ACTIONS(1411), - [anon_sym_DOLLARevaltype] = ACTIONS(1411), - [anon_sym_DOLLARvatype] = ACTIONS(1411), - [sym_real_literal] = ACTIONS(1413), + [692] = { + [sym_line_comment] = STATE(692), + [sym_doc_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARendforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, - [712] = { - [sym_line_comment] = STATE(712), - [sym_doc_comment] = STATE(712), - [sym_block_comment] = STATE(712), - [sym_ident] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [sym_bytes_literal] = ACTIONS(1417), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1415), - [sym_at_ident] = ACTIONS(1417), - [sym_hash_ident] = ACTIONS(1417), - [sym_type_ident] = ACTIONS(1417), - [sym_ct_type_ident] = ACTIONS(1417), - [sym_const_ident] = ACTIONS(1415), - [sym_builtin] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_tlocal] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_var] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_defer] = ACTIONS(1415), - [anon_sym_assert] = ACTIONS(1415), - [anon_sym_nextcase] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_foreach] = ACTIONS(1415), - [anon_sym_foreach_r] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_int] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym_DOLLARassert] = ACTIONS(1415), - [anon_sym_DOLLARerror] = ACTIONS(1415), - [anon_sym_DOLLARecho] = ACTIONS(1415), - [anon_sym_DOLLARif] = ACTIONS(1415), - [anon_sym_DOLLARswitch] = ACTIONS(1415), - [anon_sym_DOLLARfor] = ACTIONS(1415), - [anon_sym_DOLLARforeach] = ACTIONS(1415), - [anon_sym_DOLLARendforeach] = ACTIONS(1415), - [anon_sym_DOLLARalignof] = ACTIONS(1415), - [anon_sym_DOLLARextnameof] = ACTIONS(1415), - [anon_sym_DOLLARnameof] = ACTIONS(1415), - [anon_sym_DOLLARoffsetof] = ACTIONS(1415), - [anon_sym_DOLLARqnameof] = ACTIONS(1415), - [anon_sym_DOLLARvaconst] = ACTIONS(1415), - [anon_sym_DOLLARvaarg] = ACTIONS(1415), - [anon_sym_DOLLARvaref] = ACTIONS(1415), - [anon_sym_DOLLARvaexpr] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_null] = ACTIONS(1415), - [anon_sym_DOLLARvacount] = ACTIONS(1415), - [anon_sym_DOLLAReval] = ACTIONS(1415), - [anon_sym_DOLLARis_const] = ACTIONS(1415), - [anon_sym_DOLLARsizeof] = ACTIONS(1415), - [anon_sym_DOLLARstringify] = ACTIONS(1415), - [anon_sym_DOLLARappend] = ACTIONS(1415), - [anon_sym_DOLLARconcat] = ACTIONS(1415), - [anon_sym_DOLLARdefined] = ACTIONS(1415), - [anon_sym_DOLLARembed] = ACTIONS(1415), - [anon_sym_DOLLARand] = ACTIONS(1415), - [anon_sym_DOLLARor] = ACTIONS(1415), - [anon_sym_DOLLARfeature] = ACTIONS(1415), - [anon_sym_DOLLARassignable] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_typeid] = ACTIONS(1415), - [anon_sym_LBRACE_PIPE] = ACTIONS(1417), - [anon_sym_void] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_ichar] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_ushort] = ACTIONS(1415), - [anon_sym_uint] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_ulong] = ACTIONS(1415), - [anon_sym_int128] = ACTIONS(1415), - [anon_sym_uint128] = ACTIONS(1415), - [anon_sym_float] = ACTIONS(1415), - [anon_sym_double] = ACTIONS(1415), - [anon_sym_float16] = ACTIONS(1415), - [anon_sym_bfloat16] = ACTIONS(1415), - [anon_sym_float128] = ACTIONS(1415), - [anon_sym_iptr] = ACTIONS(1415), - [anon_sym_uptr] = ACTIONS(1415), - [anon_sym_isz] = ACTIONS(1415), - [anon_sym_usz] = ACTIONS(1415), - [anon_sym_anyfault] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_DOLLARtypeof] = ACTIONS(1415), - [anon_sym_DOLLARtypefrom] = ACTIONS(1415), - [anon_sym_DOLLARevaltype] = ACTIONS(1415), - [anon_sym_DOLLARvatype] = ACTIONS(1415), - [sym_real_literal] = ACTIONS(1417), + [693] = { + [sym_line_comment] = STATE(693), + [sym_doc_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARendforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), }, - [713] = { - [sym_line_comment] = STATE(713), - [sym_doc_comment] = STATE(713), - [sym_block_comment] = STATE(713), - [sym_ident] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [sym_bytes_literal] = ACTIONS(1421), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1419), - [sym_at_ident] = ACTIONS(1421), - [sym_hash_ident] = ACTIONS(1421), - [sym_type_ident] = ACTIONS(1421), - [sym_ct_type_ident] = ACTIONS(1421), - [sym_const_ident] = ACTIONS(1419), - [sym_builtin] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_tlocal] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_var] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_defer] = ACTIONS(1419), - [anon_sym_assert] = ACTIONS(1419), - [anon_sym_nextcase] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_foreach] = ACTIONS(1419), - [anon_sym_foreach_r] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_int] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym_DOLLARassert] = ACTIONS(1419), - [anon_sym_DOLLARerror] = ACTIONS(1419), - [anon_sym_DOLLARecho] = ACTIONS(1419), - [anon_sym_DOLLARif] = ACTIONS(1419), - [anon_sym_DOLLARswitch] = ACTIONS(1419), - [anon_sym_DOLLARfor] = ACTIONS(1419), - [anon_sym_DOLLARforeach] = ACTIONS(1419), - [anon_sym_DOLLARendforeach] = ACTIONS(1419), - [anon_sym_DOLLARalignof] = ACTIONS(1419), - [anon_sym_DOLLARextnameof] = ACTIONS(1419), - [anon_sym_DOLLARnameof] = ACTIONS(1419), - [anon_sym_DOLLARoffsetof] = ACTIONS(1419), - [anon_sym_DOLLARqnameof] = ACTIONS(1419), - [anon_sym_DOLLARvaconst] = ACTIONS(1419), - [anon_sym_DOLLARvaarg] = ACTIONS(1419), - [anon_sym_DOLLARvaref] = ACTIONS(1419), - [anon_sym_DOLLARvaexpr] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1419), - [anon_sym_DOLLARvacount] = ACTIONS(1419), - [anon_sym_DOLLAReval] = ACTIONS(1419), - [anon_sym_DOLLARis_const] = ACTIONS(1419), - [anon_sym_DOLLARsizeof] = ACTIONS(1419), - [anon_sym_DOLLARstringify] = ACTIONS(1419), - [anon_sym_DOLLARappend] = ACTIONS(1419), - [anon_sym_DOLLARconcat] = ACTIONS(1419), - [anon_sym_DOLLARdefined] = ACTIONS(1419), - [anon_sym_DOLLARembed] = ACTIONS(1419), - [anon_sym_DOLLARand] = ACTIONS(1419), - [anon_sym_DOLLARor] = ACTIONS(1419), - [anon_sym_DOLLARfeature] = ACTIONS(1419), - [anon_sym_DOLLARassignable] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_typeid] = ACTIONS(1419), - [anon_sym_LBRACE_PIPE] = ACTIONS(1421), - [anon_sym_void] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_ichar] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_ushort] = ACTIONS(1419), - [anon_sym_uint] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_ulong] = ACTIONS(1419), - [anon_sym_int128] = ACTIONS(1419), - [anon_sym_uint128] = ACTIONS(1419), - [anon_sym_float] = ACTIONS(1419), - [anon_sym_double] = ACTIONS(1419), - [anon_sym_float16] = ACTIONS(1419), - [anon_sym_bfloat16] = ACTIONS(1419), - [anon_sym_float128] = ACTIONS(1419), - [anon_sym_iptr] = ACTIONS(1419), - [anon_sym_uptr] = ACTIONS(1419), - [anon_sym_isz] = ACTIONS(1419), - [anon_sym_usz] = ACTIONS(1419), - [anon_sym_anyfault] = ACTIONS(1419), - [anon_sym_any] = ACTIONS(1419), - [anon_sym_DOLLARtypeof] = ACTIONS(1419), - [anon_sym_DOLLARtypefrom] = ACTIONS(1419), - [anon_sym_DOLLARevaltype] = ACTIONS(1419), - [anon_sym_DOLLARvatype] = ACTIONS(1419), - [sym_real_literal] = ACTIONS(1421), + [694] = { + [sym_line_comment] = STATE(694), + [sym_doc_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARendforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, - [714] = { - [sym_line_comment] = STATE(714), - [sym_doc_comment] = STATE(714), - [sym_block_comment] = STATE(714), - [sym_ident] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1433), - [sym_bytes_literal] = ACTIONS(1433), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1431), - [sym_at_ident] = ACTIONS(1433), - [sym_hash_ident] = ACTIONS(1433), - [sym_type_ident] = ACTIONS(1433), - [sym_ct_type_ident] = ACTIONS(1433), - [sym_const_ident] = ACTIONS(1431), - [sym_builtin] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_tlocal] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_var] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_defer] = ACTIONS(1431), - [anon_sym_assert] = ACTIONS(1431), - [anon_sym_nextcase] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_foreach] = ACTIONS(1431), - [anon_sym_foreach_r] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_int] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1431), - [anon_sym_DOLLARassert] = ACTIONS(1431), - [anon_sym_DOLLARerror] = ACTIONS(1431), - [anon_sym_DOLLARecho] = ACTIONS(1431), - [anon_sym_DOLLARif] = ACTIONS(1431), - [anon_sym_DOLLARswitch] = ACTIONS(1431), - [anon_sym_DOLLARfor] = ACTIONS(1431), - [anon_sym_DOLLARforeach] = ACTIONS(1431), - [anon_sym_DOLLARendforeach] = ACTIONS(1431), - [anon_sym_DOLLARalignof] = ACTIONS(1431), - [anon_sym_DOLLARextnameof] = ACTIONS(1431), - [anon_sym_DOLLARnameof] = ACTIONS(1431), - [anon_sym_DOLLARoffsetof] = ACTIONS(1431), - [anon_sym_DOLLARqnameof] = ACTIONS(1431), - [anon_sym_DOLLARvaconst] = ACTIONS(1431), - [anon_sym_DOLLARvaarg] = ACTIONS(1431), - [anon_sym_DOLLARvaref] = ACTIONS(1431), - [anon_sym_DOLLARvaexpr] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_null] = ACTIONS(1431), - [anon_sym_DOLLARvacount] = ACTIONS(1431), - [anon_sym_DOLLAReval] = ACTIONS(1431), - [anon_sym_DOLLARis_const] = ACTIONS(1431), - [anon_sym_DOLLARsizeof] = ACTIONS(1431), - [anon_sym_DOLLARstringify] = ACTIONS(1431), - [anon_sym_DOLLARappend] = ACTIONS(1431), - [anon_sym_DOLLARconcat] = ACTIONS(1431), - [anon_sym_DOLLARdefined] = ACTIONS(1431), - [anon_sym_DOLLARembed] = ACTIONS(1431), - [anon_sym_DOLLARand] = ACTIONS(1431), - [anon_sym_DOLLARor] = ACTIONS(1431), - [anon_sym_DOLLARfeature] = ACTIONS(1431), - [anon_sym_DOLLARassignable] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_typeid] = ACTIONS(1431), - [anon_sym_LBRACE_PIPE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_ichar] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_ushort] = ACTIONS(1431), - [anon_sym_uint] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_ulong] = ACTIONS(1431), - [anon_sym_int128] = ACTIONS(1431), - [anon_sym_uint128] = ACTIONS(1431), - [anon_sym_float] = ACTIONS(1431), - [anon_sym_double] = ACTIONS(1431), - [anon_sym_float16] = ACTIONS(1431), - [anon_sym_bfloat16] = ACTIONS(1431), - [anon_sym_float128] = ACTIONS(1431), - [anon_sym_iptr] = ACTIONS(1431), - [anon_sym_uptr] = ACTIONS(1431), - [anon_sym_isz] = ACTIONS(1431), - [anon_sym_usz] = ACTIONS(1431), - [anon_sym_anyfault] = ACTIONS(1431), - [anon_sym_any] = ACTIONS(1431), - [anon_sym_DOLLARtypeof] = ACTIONS(1431), - [anon_sym_DOLLARtypefrom] = ACTIONS(1431), - [anon_sym_DOLLARevaltype] = ACTIONS(1431), - [anon_sym_DOLLARvatype] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), + [695] = { + [sym_line_comment] = STATE(695), + [sym_doc_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARendforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, - [715] = { - [sym_line_comment] = STATE(715), - [sym_doc_comment] = STATE(715), - [sym_block_comment] = STATE(715), - [sym_ident] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_BQUOTE] = ACTIONS(1437), - [sym_bytes_literal] = ACTIONS(1437), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1435), - [sym_at_ident] = ACTIONS(1437), - [sym_hash_ident] = ACTIONS(1437), - [sym_type_ident] = ACTIONS(1437), - [sym_ct_type_ident] = ACTIONS(1437), - [sym_const_ident] = ACTIONS(1435), - [sym_builtin] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_tlocal] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_defer] = ACTIONS(1435), - [anon_sym_assert] = ACTIONS(1435), - [anon_sym_nextcase] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_foreach] = ACTIONS(1435), - [anon_sym_foreach_r] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_int] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1435), - [anon_sym_DOLLARassert] = ACTIONS(1435), - [anon_sym_DOLLARerror] = ACTIONS(1435), - [anon_sym_DOLLARecho] = ACTIONS(1435), - [anon_sym_DOLLARif] = ACTIONS(1435), - [anon_sym_DOLLARswitch] = ACTIONS(1435), - [anon_sym_DOLLARfor] = ACTIONS(1435), - [anon_sym_DOLLARforeach] = ACTIONS(1435), - [anon_sym_DOLLARendforeach] = ACTIONS(1435), - [anon_sym_DOLLARalignof] = ACTIONS(1435), - [anon_sym_DOLLARextnameof] = ACTIONS(1435), - [anon_sym_DOLLARnameof] = ACTIONS(1435), - [anon_sym_DOLLARoffsetof] = ACTIONS(1435), - [anon_sym_DOLLARqnameof] = ACTIONS(1435), - [anon_sym_DOLLARvaconst] = ACTIONS(1435), - [anon_sym_DOLLARvaarg] = ACTIONS(1435), - [anon_sym_DOLLARvaref] = ACTIONS(1435), - [anon_sym_DOLLARvaexpr] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), - [anon_sym_null] = ACTIONS(1435), - [anon_sym_DOLLARvacount] = ACTIONS(1435), - [anon_sym_DOLLAReval] = ACTIONS(1435), - [anon_sym_DOLLARis_const] = ACTIONS(1435), - [anon_sym_DOLLARsizeof] = ACTIONS(1435), - [anon_sym_DOLLARstringify] = ACTIONS(1435), - [anon_sym_DOLLARappend] = ACTIONS(1435), - [anon_sym_DOLLARconcat] = ACTIONS(1435), - [anon_sym_DOLLARdefined] = ACTIONS(1435), - [anon_sym_DOLLARembed] = ACTIONS(1435), - [anon_sym_DOLLARand] = ACTIONS(1435), - [anon_sym_DOLLARor] = ACTIONS(1435), - [anon_sym_DOLLARfeature] = ACTIONS(1435), - [anon_sym_DOLLARassignable] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_typeid] = ACTIONS(1435), - [anon_sym_LBRACE_PIPE] = ACTIONS(1437), - [anon_sym_void] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_ichar] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_ushort] = ACTIONS(1435), - [anon_sym_uint] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_ulong] = ACTIONS(1435), - [anon_sym_int128] = ACTIONS(1435), - [anon_sym_uint128] = ACTIONS(1435), - [anon_sym_float] = ACTIONS(1435), - [anon_sym_double] = ACTIONS(1435), - [anon_sym_float16] = ACTIONS(1435), - [anon_sym_bfloat16] = ACTIONS(1435), - [anon_sym_float128] = ACTIONS(1435), - [anon_sym_iptr] = ACTIONS(1435), - [anon_sym_uptr] = ACTIONS(1435), - [anon_sym_isz] = ACTIONS(1435), - [anon_sym_usz] = ACTIONS(1435), - [anon_sym_anyfault] = ACTIONS(1435), - [anon_sym_any] = ACTIONS(1435), - [anon_sym_DOLLARtypeof] = ACTIONS(1435), - [anon_sym_DOLLARtypefrom] = ACTIONS(1435), - [anon_sym_DOLLARevaltype] = ACTIONS(1435), - [anon_sym_DOLLARvatype] = ACTIONS(1435), - [sym_real_literal] = ACTIONS(1437), + [696] = { + [sym_line_comment] = STATE(696), + [sym_doc_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARendforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, - [716] = { - [sym_line_comment] = STATE(716), - [sym_doc_comment] = STATE(716), - [sym_block_comment] = STATE(716), - [sym_ident] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [anon_sym_BQUOTE] = ACTIONS(1441), - [sym_bytes_literal] = ACTIONS(1441), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1439), - [sym_at_ident] = ACTIONS(1441), - [sym_hash_ident] = ACTIONS(1441), - [sym_type_ident] = ACTIONS(1441), - [sym_ct_type_ident] = ACTIONS(1441), - [sym_const_ident] = ACTIONS(1439), - [sym_builtin] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_tlocal] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_var] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_defer] = ACTIONS(1439), - [anon_sym_assert] = ACTIONS(1439), - [anon_sym_nextcase] = ACTIONS(1439), - [anon_sym_switch] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_foreach] = ACTIONS(1439), - [anon_sym_foreach_r] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_do] = ACTIONS(1439), - [anon_sym_int] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1439), - [anon_sym_DOLLARassert] = ACTIONS(1439), - [anon_sym_DOLLARerror] = ACTIONS(1439), - [anon_sym_DOLLARecho] = ACTIONS(1439), - [anon_sym_DOLLARif] = ACTIONS(1439), - [anon_sym_DOLLARswitch] = ACTIONS(1439), - [anon_sym_DOLLARfor] = ACTIONS(1439), - [anon_sym_DOLLARforeach] = ACTIONS(1439), - [anon_sym_DOLLARendforeach] = ACTIONS(1439), - [anon_sym_DOLLARalignof] = ACTIONS(1439), - [anon_sym_DOLLARextnameof] = ACTIONS(1439), - [anon_sym_DOLLARnameof] = ACTIONS(1439), - [anon_sym_DOLLARoffsetof] = ACTIONS(1439), - [anon_sym_DOLLARqnameof] = ACTIONS(1439), - [anon_sym_DOLLARvaconst] = ACTIONS(1439), - [anon_sym_DOLLARvaarg] = ACTIONS(1439), - [anon_sym_DOLLARvaref] = ACTIONS(1439), - [anon_sym_DOLLARvaexpr] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_DOLLARvacount] = ACTIONS(1439), - [anon_sym_DOLLAReval] = ACTIONS(1439), - [anon_sym_DOLLARis_const] = ACTIONS(1439), - [anon_sym_DOLLARsizeof] = ACTIONS(1439), - [anon_sym_DOLLARstringify] = ACTIONS(1439), - [anon_sym_DOLLARappend] = ACTIONS(1439), - [anon_sym_DOLLARconcat] = ACTIONS(1439), - [anon_sym_DOLLARdefined] = ACTIONS(1439), - [anon_sym_DOLLARembed] = ACTIONS(1439), - [anon_sym_DOLLARand] = ACTIONS(1439), - [anon_sym_DOLLARor] = ACTIONS(1439), - [anon_sym_DOLLARfeature] = ACTIONS(1439), - [anon_sym_DOLLARassignable] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_typeid] = ACTIONS(1439), - [anon_sym_LBRACE_PIPE] = ACTIONS(1441), - [anon_sym_void] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_ichar] = ACTIONS(1439), - [anon_sym_short] = ACTIONS(1439), - [anon_sym_ushort] = ACTIONS(1439), - [anon_sym_uint] = ACTIONS(1439), - [anon_sym_long] = ACTIONS(1439), - [anon_sym_ulong] = ACTIONS(1439), - [anon_sym_int128] = ACTIONS(1439), - [anon_sym_uint128] = ACTIONS(1439), - [anon_sym_float] = ACTIONS(1439), - [anon_sym_double] = ACTIONS(1439), - [anon_sym_float16] = ACTIONS(1439), - [anon_sym_bfloat16] = ACTIONS(1439), - [anon_sym_float128] = ACTIONS(1439), - [anon_sym_iptr] = ACTIONS(1439), - [anon_sym_uptr] = ACTIONS(1439), - [anon_sym_isz] = ACTIONS(1439), - [anon_sym_usz] = ACTIONS(1439), - [anon_sym_anyfault] = ACTIONS(1439), - [anon_sym_any] = ACTIONS(1439), - [anon_sym_DOLLARtypeof] = ACTIONS(1439), - [anon_sym_DOLLARtypefrom] = ACTIONS(1439), - [anon_sym_DOLLARevaltype] = ACTIONS(1439), - [anon_sym_DOLLARvatype] = ACTIONS(1439), - [sym_real_literal] = ACTIONS(1441), + [697] = { + [sym_line_comment] = STATE(697), + [sym_doc_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARendforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, - [717] = { - [sym_line_comment] = STATE(717), - [sym_doc_comment] = STATE(717), - [sym_block_comment] = STATE(717), - [sym_ident] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_BQUOTE] = ACTIONS(1445), - [sym_bytes_literal] = ACTIONS(1445), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1443), - [sym_at_ident] = ACTIONS(1445), - [sym_hash_ident] = ACTIONS(1445), - [sym_type_ident] = ACTIONS(1445), - [sym_ct_type_ident] = ACTIONS(1445), - [sym_const_ident] = ACTIONS(1443), - [sym_builtin] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_tlocal] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_var] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_defer] = ACTIONS(1443), - [anon_sym_assert] = ACTIONS(1443), - [anon_sym_nextcase] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_foreach] = ACTIONS(1443), - [anon_sym_foreach_r] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_int] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_asm] = ACTIONS(1443), - [anon_sym_DOLLARassert] = ACTIONS(1443), - [anon_sym_DOLLARerror] = ACTIONS(1443), - [anon_sym_DOLLARecho] = ACTIONS(1443), - [anon_sym_DOLLARif] = ACTIONS(1443), - [anon_sym_DOLLARswitch] = ACTIONS(1443), - [anon_sym_DOLLARfor] = ACTIONS(1443), - [anon_sym_DOLLARforeach] = ACTIONS(1443), - [anon_sym_DOLLARendforeach] = ACTIONS(1443), - [anon_sym_DOLLARalignof] = ACTIONS(1443), - [anon_sym_DOLLARextnameof] = ACTIONS(1443), - [anon_sym_DOLLARnameof] = ACTIONS(1443), - [anon_sym_DOLLARoffsetof] = ACTIONS(1443), - [anon_sym_DOLLARqnameof] = ACTIONS(1443), - [anon_sym_DOLLARvaconst] = ACTIONS(1443), - [anon_sym_DOLLARvaarg] = ACTIONS(1443), - [anon_sym_DOLLARvaref] = ACTIONS(1443), - [anon_sym_DOLLARvaexpr] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_null] = ACTIONS(1443), - [anon_sym_DOLLARvacount] = ACTIONS(1443), - [anon_sym_DOLLAReval] = ACTIONS(1443), - [anon_sym_DOLLARis_const] = ACTIONS(1443), - [anon_sym_DOLLARsizeof] = ACTIONS(1443), - [anon_sym_DOLLARstringify] = ACTIONS(1443), - [anon_sym_DOLLARappend] = ACTIONS(1443), - [anon_sym_DOLLARconcat] = ACTIONS(1443), - [anon_sym_DOLLARdefined] = ACTIONS(1443), - [anon_sym_DOLLARembed] = ACTIONS(1443), - [anon_sym_DOLLARand] = ACTIONS(1443), - [anon_sym_DOLLARor] = ACTIONS(1443), - [anon_sym_DOLLARfeature] = ACTIONS(1443), - [anon_sym_DOLLARassignable] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_typeid] = ACTIONS(1443), - [anon_sym_LBRACE_PIPE] = ACTIONS(1445), - [anon_sym_void] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_ichar] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [anon_sym_ushort] = ACTIONS(1443), - [anon_sym_uint] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_ulong] = ACTIONS(1443), - [anon_sym_int128] = ACTIONS(1443), - [anon_sym_uint128] = ACTIONS(1443), - [anon_sym_float] = ACTIONS(1443), - [anon_sym_double] = ACTIONS(1443), - [anon_sym_float16] = ACTIONS(1443), - [anon_sym_bfloat16] = ACTIONS(1443), - [anon_sym_float128] = ACTIONS(1443), - [anon_sym_iptr] = ACTIONS(1443), - [anon_sym_uptr] = ACTIONS(1443), - [anon_sym_isz] = ACTIONS(1443), - [anon_sym_usz] = ACTIONS(1443), - [anon_sym_anyfault] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_DOLLARtypeof] = ACTIONS(1443), - [anon_sym_DOLLARtypefrom] = ACTIONS(1443), - [anon_sym_DOLLARevaltype] = ACTIONS(1443), - [anon_sym_DOLLARvatype] = ACTIONS(1443), - [sym_real_literal] = ACTIONS(1445), + [698] = { + [sym_line_comment] = STATE(698), + [sym_doc_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARendforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, - [718] = { - [sym_line_comment] = STATE(718), - [sym_doc_comment] = STATE(718), - [sym_block_comment] = STATE(718), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARendforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARappend] = ACTIONS(1487), - [anon_sym_DOLLARconcat] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), + [699] = { + [sym_line_comment] = STATE(699), + [sym_doc_comment] = STATE(699), + [sym_block_comment] = STATE(699), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARendforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, - [719] = { - [sym_line_comment] = STATE(719), - [sym_doc_comment] = STATE(719), - [sym_block_comment] = STATE(719), - [sym_ident] = ACTIONS(1621), - [sym_integer_literal] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [anon_sym_BQUOTE] = ACTIONS(1623), - [sym_bytes_literal] = ACTIONS(1623), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1621), - [sym_at_ident] = ACTIONS(1623), - [sym_hash_ident] = ACTIONS(1623), - [sym_type_ident] = ACTIONS(1623), - [sym_ct_type_ident] = ACTIONS(1623), - [sym_const_ident] = ACTIONS(1621), - [sym_builtin] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_tlocal] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_var] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_defer] = ACTIONS(1621), - [anon_sym_assert] = ACTIONS(1621), - [anon_sym_nextcase] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_foreach] = ACTIONS(1621), - [anon_sym_foreach_r] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_int] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_asm] = ACTIONS(1621), - [anon_sym_DOLLARassert] = ACTIONS(1621), - [anon_sym_DOLLARerror] = ACTIONS(1621), - [anon_sym_DOLLARecho] = ACTIONS(1621), - [anon_sym_DOLLARif] = ACTIONS(1621), - [anon_sym_DOLLARswitch] = ACTIONS(1621), - [anon_sym_DOLLARfor] = ACTIONS(1621), - [anon_sym_DOLLARforeach] = ACTIONS(1621), - [anon_sym_DOLLARendforeach] = ACTIONS(1621), - [anon_sym_DOLLARalignof] = ACTIONS(1621), - [anon_sym_DOLLARextnameof] = ACTIONS(1621), - [anon_sym_DOLLARnameof] = ACTIONS(1621), - [anon_sym_DOLLARoffsetof] = ACTIONS(1621), - [anon_sym_DOLLARqnameof] = ACTIONS(1621), - [anon_sym_DOLLARvaconst] = ACTIONS(1621), - [anon_sym_DOLLARvaarg] = ACTIONS(1621), - [anon_sym_DOLLARvaref] = ACTIONS(1621), - [anon_sym_DOLLARvaexpr] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1621), - [anon_sym_false] = ACTIONS(1621), - [anon_sym_null] = ACTIONS(1621), - [anon_sym_DOLLARvacount] = ACTIONS(1621), - [anon_sym_DOLLAReval] = ACTIONS(1621), - [anon_sym_DOLLARis_const] = ACTIONS(1621), - [anon_sym_DOLLARsizeof] = ACTIONS(1621), - [anon_sym_DOLLARstringify] = ACTIONS(1621), - [anon_sym_DOLLARappend] = ACTIONS(1621), - [anon_sym_DOLLARconcat] = ACTIONS(1621), - [anon_sym_DOLLARdefined] = ACTIONS(1621), - [anon_sym_DOLLARembed] = ACTIONS(1621), - [anon_sym_DOLLARand] = ACTIONS(1621), - [anon_sym_DOLLARor] = ACTIONS(1621), - [anon_sym_DOLLARfeature] = ACTIONS(1621), - [anon_sym_DOLLARassignable] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_typeid] = ACTIONS(1621), - [anon_sym_LBRACE_PIPE] = ACTIONS(1623), - [anon_sym_void] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_char] = ACTIONS(1621), - [anon_sym_ichar] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [anon_sym_ushort] = ACTIONS(1621), - [anon_sym_uint] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_ulong] = ACTIONS(1621), - [anon_sym_int128] = ACTIONS(1621), - [anon_sym_uint128] = ACTIONS(1621), - [anon_sym_float] = ACTIONS(1621), - [anon_sym_double] = ACTIONS(1621), - [anon_sym_float16] = ACTIONS(1621), - [anon_sym_bfloat16] = ACTIONS(1621), - [anon_sym_float128] = ACTIONS(1621), - [anon_sym_iptr] = ACTIONS(1621), - [anon_sym_uptr] = ACTIONS(1621), - [anon_sym_isz] = ACTIONS(1621), - [anon_sym_usz] = ACTIONS(1621), - [anon_sym_anyfault] = ACTIONS(1621), - [anon_sym_any] = ACTIONS(1621), - [anon_sym_DOLLARtypeof] = ACTIONS(1621), - [anon_sym_DOLLARtypefrom] = ACTIONS(1621), - [anon_sym_DOLLARevaltype] = ACTIONS(1621), - [anon_sym_DOLLARvatype] = ACTIONS(1621), - [sym_real_literal] = ACTIONS(1623), + [700] = { + [sym_line_comment] = STATE(700), + [sym_doc_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARendforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, - [720] = { - [sym_line_comment] = STATE(720), - [sym_doc_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [sym_ident] = ACTIONS(1399), - [sym_integer_literal] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_BQUOTE] = ACTIONS(1401), - [sym_bytes_literal] = ACTIONS(1401), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1399), - [sym_at_ident] = ACTIONS(1401), - [sym_hash_ident] = ACTIONS(1401), - [sym_type_ident] = ACTIONS(1401), - [sym_ct_type_ident] = ACTIONS(1401), - [sym_const_ident] = ACTIONS(1399), - [sym_builtin] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_static] = ACTIONS(1399), - [anon_sym_tlocal] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_var] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_defer] = ACTIONS(1399), - [anon_sym_assert] = ACTIONS(1399), - [anon_sym_nextcase] = ACTIONS(1399), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_foreach] = ACTIONS(1399), - [anon_sym_foreach_r] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_int] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_asm] = ACTIONS(1399), - [anon_sym_DOLLARassert] = ACTIONS(1399), - [anon_sym_DOLLARerror] = ACTIONS(1399), - [anon_sym_DOLLARecho] = ACTIONS(1399), - [anon_sym_DOLLARif] = ACTIONS(1399), - [anon_sym_DOLLARswitch] = ACTIONS(1399), - [anon_sym_DOLLARfor] = ACTIONS(1399), - [anon_sym_DOLLARforeach] = ACTIONS(1399), - [anon_sym_DOLLARendforeach] = ACTIONS(1399), - [anon_sym_DOLLARalignof] = ACTIONS(1399), - [anon_sym_DOLLARextnameof] = ACTIONS(1399), - [anon_sym_DOLLARnameof] = ACTIONS(1399), - [anon_sym_DOLLARoffsetof] = ACTIONS(1399), - [anon_sym_DOLLARqnameof] = ACTIONS(1399), - [anon_sym_DOLLARvaconst] = ACTIONS(1399), - [anon_sym_DOLLARvaarg] = ACTIONS(1399), - [anon_sym_DOLLARvaref] = ACTIONS(1399), - [anon_sym_DOLLARvaexpr] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_DOLLARvacount] = ACTIONS(1399), - [anon_sym_DOLLAReval] = ACTIONS(1399), - [anon_sym_DOLLARis_const] = ACTIONS(1399), - [anon_sym_DOLLARsizeof] = ACTIONS(1399), - [anon_sym_DOLLARstringify] = ACTIONS(1399), - [anon_sym_DOLLARappend] = ACTIONS(1399), - [anon_sym_DOLLARconcat] = ACTIONS(1399), - [anon_sym_DOLLARdefined] = ACTIONS(1399), - [anon_sym_DOLLARembed] = ACTIONS(1399), - [anon_sym_DOLLARand] = ACTIONS(1399), - [anon_sym_DOLLARor] = ACTIONS(1399), - [anon_sym_DOLLARfeature] = ACTIONS(1399), - [anon_sym_DOLLARassignable] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_typeid] = ACTIONS(1399), - [anon_sym_LBRACE_PIPE] = ACTIONS(1401), - [anon_sym_void] = ACTIONS(1399), - [anon_sym_bool] = ACTIONS(1399), - [anon_sym_char] = ACTIONS(1399), - [anon_sym_ichar] = ACTIONS(1399), - [anon_sym_short] = ACTIONS(1399), - [anon_sym_ushort] = ACTIONS(1399), - [anon_sym_uint] = ACTIONS(1399), - [anon_sym_long] = ACTIONS(1399), - [anon_sym_ulong] = ACTIONS(1399), - [anon_sym_int128] = ACTIONS(1399), - [anon_sym_uint128] = ACTIONS(1399), - [anon_sym_float] = ACTIONS(1399), - [anon_sym_double] = ACTIONS(1399), - [anon_sym_float16] = ACTIONS(1399), - [anon_sym_bfloat16] = ACTIONS(1399), - [anon_sym_float128] = ACTIONS(1399), - [anon_sym_iptr] = ACTIONS(1399), - [anon_sym_uptr] = ACTIONS(1399), - [anon_sym_isz] = ACTIONS(1399), - [anon_sym_usz] = ACTIONS(1399), - [anon_sym_anyfault] = ACTIONS(1399), - [anon_sym_any] = ACTIONS(1399), - [anon_sym_DOLLARtypeof] = ACTIONS(1399), - [anon_sym_DOLLARtypefrom] = ACTIONS(1399), - [anon_sym_DOLLARevaltype] = ACTIONS(1399), - [anon_sym_DOLLARvatype] = ACTIONS(1399), - [sym_real_literal] = ACTIONS(1401), + [701] = { + [sym_line_comment] = STATE(701), + [sym_doc_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARendforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, - [721] = { - [sym_line_comment] = STATE(721), - [sym_doc_comment] = STATE(721), - [sym_block_comment] = STATE(721), - [sym_ident] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_BQUOTE] = ACTIONS(1425), - [sym_bytes_literal] = ACTIONS(1425), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1423), - [sym_at_ident] = ACTIONS(1425), - [sym_hash_ident] = ACTIONS(1425), - [sym_type_ident] = ACTIONS(1425), - [sym_ct_type_ident] = ACTIONS(1425), - [sym_const_ident] = ACTIONS(1423), - [sym_builtin] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_tlocal] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_var] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_defer] = ACTIONS(1423), - [anon_sym_assert] = ACTIONS(1423), - [anon_sym_nextcase] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_foreach] = ACTIONS(1423), - [anon_sym_foreach_r] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_int] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1423), - [anon_sym_DOLLARassert] = ACTIONS(1423), - [anon_sym_DOLLARerror] = ACTIONS(1423), - [anon_sym_DOLLARecho] = ACTIONS(1423), - [anon_sym_DOLLARif] = ACTIONS(1423), - [anon_sym_DOLLARswitch] = ACTIONS(1423), - [anon_sym_DOLLARfor] = ACTIONS(1423), - [anon_sym_DOLLARforeach] = ACTIONS(1423), - [anon_sym_DOLLARendforeach] = ACTIONS(1423), - [anon_sym_DOLLARalignof] = ACTIONS(1423), - [anon_sym_DOLLARextnameof] = ACTIONS(1423), - [anon_sym_DOLLARnameof] = ACTIONS(1423), - [anon_sym_DOLLARoffsetof] = ACTIONS(1423), - [anon_sym_DOLLARqnameof] = ACTIONS(1423), - [anon_sym_DOLLARvaconst] = ACTIONS(1423), - [anon_sym_DOLLARvaarg] = ACTIONS(1423), - [anon_sym_DOLLARvaref] = ACTIONS(1423), - [anon_sym_DOLLARvaexpr] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_null] = ACTIONS(1423), - [anon_sym_DOLLARvacount] = ACTIONS(1423), - [anon_sym_DOLLAReval] = ACTIONS(1423), - [anon_sym_DOLLARis_const] = ACTIONS(1423), - [anon_sym_DOLLARsizeof] = ACTIONS(1423), - [anon_sym_DOLLARstringify] = ACTIONS(1423), - [anon_sym_DOLLARappend] = ACTIONS(1423), - [anon_sym_DOLLARconcat] = ACTIONS(1423), - [anon_sym_DOLLARdefined] = ACTIONS(1423), - [anon_sym_DOLLARembed] = ACTIONS(1423), - [anon_sym_DOLLARand] = ACTIONS(1423), - [anon_sym_DOLLARor] = ACTIONS(1423), - [anon_sym_DOLLARfeature] = ACTIONS(1423), - [anon_sym_DOLLARassignable] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_typeid] = ACTIONS(1423), - [anon_sym_LBRACE_PIPE] = ACTIONS(1425), - [anon_sym_void] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_ichar] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [anon_sym_ushort] = ACTIONS(1423), - [anon_sym_uint] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_ulong] = ACTIONS(1423), - [anon_sym_int128] = ACTIONS(1423), - [anon_sym_uint128] = ACTIONS(1423), - [anon_sym_float] = ACTIONS(1423), - [anon_sym_double] = ACTIONS(1423), - [anon_sym_float16] = ACTIONS(1423), - [anon_sym_bfloat16] = ACTIONS(1423), - [anon_sym_float128] = ACTIONS(1423), - [anon_sym_iptr] = ACTIONS(1423), - [anon_sym_uptr] = ACTIONS(1423), - [anon_sym_isz] = ACTIONS(1423), - [anon_sym_usz] = ACTIONS(1423), - [anon_sym_anyfault] = ACTIONS(1423), - [anon_sym_any] = ACTIONS(1423), - [anon_sym_DOLLARtypeof] = ACTIONS(1423), - [anon_sym_DOLLARtypefrom] = ACTIONS(1423), - [anon_sym_DOLLARevaltype] = ACTIONS(1423), - [anon_sym_DOLLARvatype] = ACTIONS(1423), - [sym_real_literal] = ACTIONS(1425), + [702] = { + [sym_line_comment] = STATE(702), + [sym_doc_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARendforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, - [722] = { - [sym_line_comment] = STATE(722), - [sym_doc_comment] = STATE(722), - [sym_block_comment] = STATE(722), - [sym_ident] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_BQUOTE] = ACTIONS(1381), - [sym_bytes_literal] = ACTIONS(1381), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1379), - [sym_at_ident] = ACTIONS(1381), - [sym_hash_ident] = ACTIONS(1381), - [sym_type_ident] = ACTIONS(1381), - [sym_ct_type_ident] = ACTIONS(1381), - [sym_const_ident] = ACTIONS(1379), - [sym_builtin] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_tlocal] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_fn] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_var] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_defer] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_nextcase] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_foreach] = ACTIONS(1379), - [anon_sym_foreach_r] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_int] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym_DOLLARassert] = ACTIONS(1379), - [anon_sym_DOLLARerror] = ACTIONS(1379), - [anon_sym_DOLLARecho] = ACTIONS(1379), - [anon_sym_DOLLARif] = ACTIONS(1379), - [anon_sym_DOLLARswitch] = ACTIONS(1379), - [anon_sym_DOLLARfor] = ACTIONS(1379), - [anon_sym_DOLLARforeach] = ACTIONS(1379), - [anon_sym_DOLLARendforeach] = ACTIONS(1379), - [anon_sym_DOLLARalignof] = ACTIONS(1379), - [anon_sym_DOLLARextnameof] = ACTIONS(1379), - [anon_sym_DOLLARnameof] = ACTIONS(1379), - [anon_sym_DOLLARoffsetof] = ACTIONS(1379), - [anon_sym_DOLLARqnameof] = ACTIONS(1379), - [anon_sym_DOLLARvaconst] = ACTIONS(1379), - [anon_sym_DOLLARvaarg] = ACTIONS(1379), - [anon_sym_DOLLARvaref] = ACTIONS(1379), - [anon_sym_DOLLARvaexpr] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1379), - [anon_sym_false] = ACTIONS(1379), - [anon_sym_null] = ACTIONS(1379), - [anon_sym_DOLLARvacount] = ACTIONS(1379), - [anon_sym_DOLLAReval] = ACTIONS(1379), - [anon_sym_DOLLARis_const] = ACTIONS(1379), - [anon_sym_DOLLARsizeof] = ACTIONS(1379), - [anon_sym_DOLLARstringify] = ACTIONS(1379), - [anon_sym_DOLLARappend] = ACTIONS(1379), - [anon_sym_DOLLARconcat] = ACTIONS(1379), - [anon_sym_DOLLARdefined] = ACTIONS(1379), - [anon_sym_DOLLARembed] = ACTIONS(1379), - [anon_sym_DOLLARand] = ACTIONS(1379), - [anon_sym_DOLLARor] = ACTIONS(1379), - [anon_sym_DOLLARfeature] = ACTIONS(1379), - [anon_sym_DOLLARassignable] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_typeid] = ACTIONS(1379), - [anon_sym_LBRACE_PIPE] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1379), - [anon_sym_bool] = ACTIONS(1379), - [anon_sym_char] = ACTIONS(1379), - [anon_sym_ichar] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_ushort] = ACTIONS(1379), - [anon_sym_uint] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_ulong] = ACTIONS(1379), - [anon_sym_int128] = ACTIONS(1379), - [anon_sym_uint128] = ACTIONS(1379), - [anon_sym_float] = ACTIONS(1379), - [anon_sym_double] = ACTIONS(1379), - [anon_sym_float16] = ACTIONS(1379), - [anon_sym_bfloat16] = ACTIONS(1379), - [anon_sym_float128] = ACTIONS(1379), - [anon_sym_iptr] = ACTIONS(1379), - [anon_sym_uptr] = ACTIONS(1379), - [anon_sym_isz] = ACTIONS(1379), - [anon_sym_usz] = ACTIONS(1379), - [anon_sym_anyfault] = ACTIONS(1379), - [anon_sym_any] = ACTIONS(1379), - [anon_sym_DOLLARtypeof] = ACTIONS(1379), - [anon_sym_DOLLARtypefrom] = ACTIONS(1379), - [anon_sym_DOLLARevaltype] = ACTIONS(1379), - [anon_sym_DOLLARvatype] = ACTIONS(1379), - [sym_real_literal] = ACTIONS(1381), + [703] = { + [sym_line_comment] = STATE(703), + [sym_doc_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARendforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, - [723] = { - [sym_line_comment] = STATE(723), - [sym_doc_comment] = STATE(723), - [sym_block_comment] = STATE(723), - [sym_ident] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1619), - [anon_sym_SQUOTE] = ACTIONS(1619), - [anon_sym_DQUOTE] = ACTIONS(1619), - [anon_sym_BQUOTE] = ACTIONS(1619), - [sym_bytes_literal] = ACTIONS(1619), + [704] = { + [sym_line_comment] = STATE(704), + [sym_doc_comment] = STATE(704), + [sym_block_comment] = STATE(704), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1617), - [sym_at_ident] = ACTIONS(1619), - [sym_hash_ident] = ACTIONS(1619), - [sym_type_ident] = ACTIONS(1619), - [sym_ct_type_ident] = ACTIONS(1619), - [sym_const_ident] = ACTIONS(1617), - [sym_builtin] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_tlocal] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_var] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_defer] = ACTIONS(1617), - [anon_sym_assert] = ACTIONS(1617), - [anon_sym_nextcase] = ACTIONS(1617), - [anon_sym_switch] = ACTIONS(1617), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_foreach] = ACTIONS(1617), - [anon_sym_foreach_r] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_do] = ACTIONS(1617), - [anon_sym_int] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_asm] = ACTIONS(1617), - [anon_sym_DOLLARassert] = ACTIONS(1617), - [anon_sym_DOLLARerror] = ACTIONS(1617), - [anon_sym_DOLLARecho] = ACTIONS(1617), - [anon_sym_DOLLARif] = ACTIONS(1617), - [anon_sym_DOLLARendif] = ACTIONS(1617), - [anon_sym_DOLLARswitch] = ACTIONS(1617), - [anon_sym_DOLLARfor] = ACTIONS(1617), - [anon_sym_DOLLARforeach] = ACTIONS(1617), - [anon_sym_DOLLARalignof] = ACTIONS(1617), - [anon_sym_DOLLARextnameof] = ACTIONS(1617), - [anon_sym_DOLLARnameof] = ACTIONS(1617), - [anon_sym_DOLLARoffsetof] = ACTIONS(1617), - [anon_sym_DOLLARqnameof] = ACTIONS(1617), - [anon_sym_DOLLARvaconst] = ACTIONS(1617), - [anon_sym_DOLLARvaarg] = ACTIONS(1617), - [anon_sym_DOLLARvaref] = ACTIONS(1617), - [anon_sym_DOLLARvaexpr] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1617), - [anon_sym_false] = ACTIONS(1617), - [anon_sym_null] = ACTIONS(1617), - [anon_sym_DOLLARvacount] = ACTIONS(1617), - [anon_sym_DOLLAReval] = ACTIONS(1617), - [anon_sym_DOLLARis_const] = ACTIONS(1617), - [anon_sym_DOLLARsizeof] = ACTIONS(1617), - [anon_sym_DOLLARstringify] = ACTIONS(1617), - [anon_sym_DOLLARappend] = ACTIONS(1617), - [anon_sym_DOLLARconcat] = ACTIONS(1617), - [anon_sym_DOLLARdefined] = ACTIONS(1617), - [anon_sym_DOLLARembed] = ACTIONS(1617), - [anon_sym_DOLLARand] = ACTIONS(1617), - [anon_sym_DOLLARor] = ACTIONS(1617), - [anon_sym_DOLLARfeature] = ACTIONS(1617), - [anon_sym_DOLLARassignable] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_TILDE] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1619), - [anon_sym_DASH_DASH] = ACTIONS(1619), - [anon_sym_typeid] = ACTIONS(1617), - [anon_sym_LBRACE_PIPE] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_char] = ACTIONS(1617), - [anon_sym_ichar] = ACTIONS(1617), - [anon_sym_short] = ACTIONS(1617), - [anon_sym_ushort] = ACTIONS(1617), - [anon_sym_uint] = ACTIONS(1617), - [anon_sym_long] = ACTIONS(1617), - [anon_sym_ulong] = ACTIONS(1617), - [anon_sym_int128] = ACTIONS(1617), - [anon_sym_uint128] = ACTIONS(1617), - [anon_sym_float] = ACTIONS(1617), - [anon_sym_double] = ACTIONS(1617), - [anon_sym_float16] = ACTIONS(1617), - [anon_sym_bfloat16] = ACTIONS(1617), - [anon_sym_float128] = ACTIONS(1617), - [anon_sym_iptr] = ACTIONS(1617), - [anon_sym_uptr] = ACTIONS(1617), - [anon_sym_isz] = ACTIONS(1617), - [anon_sym_usz] = ACTIONS(1617), - [anon_sym_anyfault] = ACTIONS(1617), - [anon_sym_any] = ACTIONS(1617), - [anon_sym_DOLLARtypeof] = ACTIONS(1617), - [anon_sym_DOLLARtypefrom] = ACTIONS(1617), - [anon_sym_DOLLARevaltype] = ACTIONS(1617), - [anon_sym_DOLLARvatype] = ACTIONS(1617), - [sym_real_literal] = ACTIONS(1619), - }, - [724] = { - [sym_line_comment] = STATE(724), - [sym_doc_comment] = STATE(724), - [sym_block_comment] = STATE(724), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARendif] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARappend] = ACTIONS(1499), - [anon_sym_DOLLARconcat] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), - }, - [725] = { - [sym_line_comment] = STATE(725), - [sym_doc_comment] = STATE(725), - [sym_block_comment] = STATE(725), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARendforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARendforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, - [726] = { - [sym_line_comment] = STATE(726), - [sym_doc_comment] = STATE(726), - [sym_block_comment] = STATE(726), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARendforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), + [705] = { + [sym_line_comment] = STATE(705), + [sym_doc_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARendforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), }, - [727] = { - [sym_line_comment] = STATE(727), - [sym_doc_comment] = STATE(727), - [sym_block_comment] = STATE(727), - [sym_ident] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_BQUOTE] = ACTIONS(1457), - [sym_bytes_literal] = ACTIONS(1457), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1455), - [sym_at_ident] = ACTIONS(1457), - [sym_hash_ident] = ACTIONS(1457), - [sym_type_ident] = ACTIONS(1457), - [sym_ct_type_ident] = ACTIONS(1457), - [sym_const_ident] = ACTIONS(1455), - [sym_builtin] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_tlocal] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_var] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_defer] = ACTIONS(1455), - [anon_sym_assert] = ACTIONS(1455), - [anon_sym_nextcase] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_foreach] = ACTIONS(1455), - [anon_sym_foreach_r] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_int] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1455), - [anon_sym_DOLLARassert] = ACTIONS(1455), - [anon_sym_DOLLARerror] = ACTIONS(1455), - [anon_sym_DOLLARecho] = ACTIONS(1455), - [anon_sym_DOLLARif] = ACTIONS(1455), - [anon_sym_DOLLARswitch] = ACTIONS(1455), - [anon_sym_DOLLARfor] = ACTIONS(1455), - [anon_sym_DOLLARforeach] = ACTIONS(1455), - [anon_sym_DOLLARendforeach] = ACTIONS(1455), - [anon_sym_DOLLARalignof] = ACTIONS(1455), - [anon_sym_DOLLARextnameof] = ACTIONS(1455), - [anon_sym_DOLLARnameof] = ACTIONS(1455), - [anon_sym_DOLLARoffsetof] = ACTIONS(1455), - [anon_sym_DOLLARqnameof] = ACTIONS(1455), - [anon_sym_DOLLARvaconst] = ACTIONS(1455), - [anon_sym_DOLLARvaarg] = ACTIONS(1455), - [anon_sym_DOLLARvaref] = ACTIONS(1455), - [anon_sym_DOLLARvaexpr] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_DOLLARvacount] = ACTIONS(1455), - [anon_sym_DOLLAReval] = ACTIONS(1455), - [anon_sym_DOLLARis_const] = ACTIONS(1455), - [anon_sym_DOLLARsizeof] = ACTIONS(1455), - [anon_sym_DOLLARstringify] = ACTIONS(1455), - [anon_sym_DOLLARappend] = ACTIONS(1455), - [anon_sym_DOLLARconcat] = ACTIONS(1455), - [anon_sym_DOLLARdefined] = ACTIONS(1455), - [anon_sym_DOLLARembed] = ACTIONS(1455), - [anon_sym_DOLLARand] = ACTIONS(1455), - [anon_sym_DOLLARor] = ACTIONS(1455), - [anon_sym_DOLLARfeature] = ACTIONS(1455), - [anon_sym_DOLLARassignable] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_typeid] = ACTIONS(1455), - [anon_sym_LBRACE_PIPE] = ACTIONS(1457), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_ichar] = ACTIONS(1455), - [anon_sym_short] = ACTIONS(1455), - [anon_sym_ushort] = ACTIONS(1455), - [anon_sym_uint] = ACTIONS(1455), - [anon_sym_long] = ACTIONS(1455), - [anon_sym_ulong] = ACTIONS(1455), - [anon_sym_int128] = ACTIONS(1455), - [anon_sym_uint128] = ACTIONS(1455), - [anon_sym_float] = ACTIONS(1455), - [anon_sym_double] = ACTIONS(1455), - [anon_sym_float16] = ACTIONS(1455), - [anon_sym_bfloat16] = ACTIONS(1455), - [anon_sym_float128] = ACTIONS(1455), - [anon_sym_iptr] = ACTIONS(1455), - [anon_sym_uptr] = ACTIONS(1455), - [anon_sym_isz] = ACTIONS(1455), - [anon_sym_usz] = ACTIONS(1455), - [anon_sym_anyfault] = ACTIONS(1455), - [anon_sym_any] = ACTIONS(1455), - [anon_sym_DOLLARtypeof] = ACTIONS(1455), - [anon_sym_DOLLARtypefrom] = ACTIONS(1455), - [anon_sym_DOLLARevaltype] = ACTIONS(1455), - [anon_sym_DOLLARvatype] = ACTIONS(1455), - [sym_real_literal] = ACTIONS(1457), + [706] = { + [sym_line_comment] = STATE(706), + [sym_doc_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARendforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, - [728] = { - [sym_line_comment] = STATE(728), - [sym_doc_comment] = STATE(728), - [sym_block_comment] = STATE(728), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARendforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARappend] = ACTIONS(1483), - [anon_sym_DOLLARconcat] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), + [707] = { + [sym_line_comment] = STATE(707), + [sym_doc_comment] = STATE(707), + [sym_block_comment] = STATE(707), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARendforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), }, - [729] = { - [sym_line_comment] = STATE(729), - [sym_doc_comment] = STATE(729), - [sym_block_comment] = STATE(729), - [sym_ident] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_bytes_literal] = ACTIONS(1539), + [708] = { + [sym_line_comment] = STATE(708), + [sym_doc_comment] = STATE(708), + [sym_block_comment] = STATE(708), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1537), - [sym_at_ident] = ACTIONS(1539), - [sym_hash_ident] = ACTIONS(1539), - [sym_type_ident] = ACTIONS(1539), - [sym_ct_type_ident] = ACTIONS(1539), - [sym_const_ident] = ACTIONS(1537), - [sym_builtin] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_tlocal] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_defer] = ACTIONS(1537), - [anon_sym_assert] = ACTIONS(1537), - [anon_sym_nextcase] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_foreach] = ACTIONS(1537), - [anon_sym_foreach_r] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_int] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym_DOLLARassert] = ACTIONS(1537), - [anon_sym_DOLLARerror] = ACTIONS(1537), - [anon_sym_DOLLARecho] = ACTIONS(1537), - [anon_sym_DOLLARif] = ACTIONS(1537), - [anon_sym_DOLLARswitch] = ACTIONS(1537), - [anon_sym_DOLLARfor] = ACTIONS(1537), - [anon_sym_DOLLARforeach] = ACTIONS(1537), - [anon_sym_DOLLARendforeach] = ACTIONS(1537), - [anon_sym_DOLLARalignof] = ACTIONS(1537), - [anon_sym_DOLLARextnameof] = ACTIONS(1537), - [anon_sym_DOLLARnameof] = ACTIONS(1537), - [anon_sym_DOLLARoffsetof] = ACTIONS(1537), - [anon_sym_DOLLARqnameof] = ACTIONS(1537), - [anon_sym_DOLLARvaconst] = ACTIONS(1537), - [anon_sym_DOLLARvaarg] = ACTIONS(1537), - [anon_sym_DOLLARvaref] = ACTIONS(1537), - [anon_sym_DOLLARvaexpr] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [anon_sym_DOLLARvacount] = ACTIONS(1537), - [anon_sym_DOLLAReval] = ACTIONS(1537), - [anon_sym_DOLLARis_const] = ACTIONS(1537), - [anon_sym_DOLLARsizeof] = ACTIONS(1537), - [anon_sym_DOLLARstringify] = ACTIONS(1537), - [anon_sym_DOLLARappend] = ACTIONS(1537), - [anon_sym_DOLLARconcat] = ACTIONS(1537), - [anon_sym_DOLLARdefined] = ACTIONS(1537), - [anon_sym_DOLLARembed] = ACTIONS(1537), - [anon_sym_DOLLARand] = ACTIONS(1537), - [anon_sym_DOLLARor] = ACTIONS(1537), - [anon_sym_DOLLARfeature] = ACTIONS(1537), - [anon_sym_DOLLARassignable] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_typeid] = ACTIONS(1537), - [anon_sym_LBRACE_PIPE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_ichar] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [anon_sym_ushort] = ACTIONS(1537), - [anon_sym_uint] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_ulong] = ACTIONS(1537), - [anon_sym_int128] = ACTIONS(1537), - [anon_sym_uint128] = ACTIONS(1537), - [anon_sym_float] = ACTIONS(1537), - [anon_sym_double] = ACTIONS(1537), - [anon_sym_float16] = ACTIONS(1537), - [anon_sym_bfloat16] = ACTIONS(1537), - [anon_sym_float128] = ACTIONS(1537), - [anon_sym_iptr] = ACTIONS(1537), - [anon_sym_uptr] = ACTIONS(1537), - [anon_sym_isz] = ACTIONS(1537), - [anon_sym_usz] = ACTIONS(1537), - [anon_sym_anyfault] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_DOLLARtypeof] = ACTIONS(1537), - [anon_sym_DOLLARtypefrom] = ACTIONS(1537), - [anon_sym_DOLLARevaltype] = ACTIONS(1537), - [anon_sym_DOLLARvatype] = ACTIONS(1537), - [sym_real_literal] = ACTIONS(1539), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARendforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, - [730] = { - [sym_line_comment] = STATE(730), - [sym_doc_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [709] = { + [sym_line_comment] = STATE(709), + [sym_doc_comment] = STATE(709), + [sym_block_comment] = STATE(709), [sym_ident] = ACTIONS(1549), [sym_integer_literal] = ACTIONS(1551), [anon_sym_SQUOTE] = ACTIONS(1551), @@ -109714,585 +107214,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1549), [sym_real_literal] = ACTIONS(1551), }, - [731] = { - [sym_line_comment] = STATE(731), - [sym_doc_comment] = STATE(731), - [sym_block_comment] = STATE(731), - [sym_ident] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_bytes_literal] = ACTIONS(1429), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1427), - [sym_at_ident] = ACTIONS(1429), - [sym_hash_ident] = ACTIONS(1429), - [sym_type_ident] = ACTIONS(1429), - [sym_ct_type_ident] = ACTIONS(1429), - [sym_const_ident] = ACTIONS(1427), - [sym_builtin] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_tlocal] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_var] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_defer] = ACTIONS(1427), - [anon_sym_assert] = ACTIONS(1427), - [anon_sym_nextcase] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_foreach] = ACTIONS(1427), - [anon_sym_foreach_r] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_int] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_asm] = ACTIONS(1427), - [anon_sym_DOLLARassert] = ACTIONS(1427), - [anon_sym_DOLLARerror] = ACTIONS(1427), - [anon_sym_DOLLARecho] = ACTIONS(1427), - [anon_sym_DOLLARif] = ACTIONS(1427), - [anon_sym_DOLLARendif] = ACTIONS(1427), - [anon_sym_DOLLARswitch] = ACTIONS(1427), - [anon_sym_DOLLARfor] = ACTIONS(1427), - [anon_sym_DOLLARforeach] = ACTIONS(1427), - [anon_sym_DOLLARalignof] = ACTIONS(1427), - [anon_sym_DOLLARextnameof] = ACTIONS(1427), - [anon_sym_DOLLARnameof] = ACTIONS(1427), - [anon_sym_DOLLARoffsetof] = ACTIONS(1427), - [anon_sym_DOLLARqnameof] = ACTIONS(1427), - [anon_sym_DOLLARvaconst] = ACTIONS(1427), - [anon_sym_DOLLARvaarg] = ACTIONS(1427), - [anon_sym_DOLLARvaref] = ACTIONS(1427), - [anon_sym_DOLLARvaexpr] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1427), - [anon_sym_DOLLARvacount] = ACTIONS(1427), - [anon_sym_DOLLAReval] = ACTIONS(1427), - [anon_sym_DOLLARis_const] = ACTIONS(1427), - [anon_sym_DOLLARsizeof] = ACTIONS(1427), - [anon_sym_DOLLARstringify] = ACTIONS(1427), - [anon_sym_DOLLARappend] = ACTIONS(1427), - [anon_sym_DOLLARconcat] = ACTIONS(1427), - [anon_sym_DOLLARdefined] = ACTIONS(1427), - [anon_sym_DOLLARembed] = ACTIONS(1427), - [anon_sym_DOLLARand] = ACTIONS(1427), - [anon_sym_DOLLARor] = ACTIONS(1427), - [anon_sym_DOLLARfeature] = ACTIONS(1427), - [anon_sym_DOLLARassignable] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_typeid] = ACTIONS(1427), - [anon_sym_LBRACE_PIPE] = ACTIONS(1429), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_bool] = ACTIONS(1427), - [anon_sym_char] = ACTIONS(1427), - [anon_sym_ichar] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [anon_sym_ushort] = ACTIONS(1427), - [anon_sym_uint] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_ulong] = ACTIONS(1427), - [anon_sym_int128] = ACTIONS(1427), - [anon_sym_uint128] = ACTIONS(1427), - [anon_sym_float] = ACTIONS(1427), - [anon_sym_double] = ACTIONS(1427), - [anon_sym_float16] = ACTIONS(1427), - [anon_sym_bfloat16] = ACTIONS(1427), - [anon_sym_float128] = ACTIONS(1427), - [anon_sym_iptr] = ACTIONS(1427), - [anon_sym_uptr] = ACTIONS(1427), - [anon_sym_isz] = ACTIONS(1427), - [anon_sym_usz] = ACTIONS(1427), - [anon_sym_anyfault] = ACTIONS(1427), - [anon_sym_any] = ACTIONS(1427), - [anon_sym_DOLLARtypeof] = ACTIONS(1427), - [anon_sym_DOLLARtypefrom] = ACTIONS(1427), - [anon_sym_DOLLARevaltype] = ACTIONS(1427), - [anon_sym_DOLLARvatype] = ACTIONS(1427), - [sym_real_literal] = ACTIONS(1429), - }, - [732] = { - [sym_line_comment] = STATE(732), - [sym_doc_comment] = STATE(732), - [sym_block_comment] = STATE(732), - [sym_ident] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [anon_sym_BQUOTE] = ACTIONS(1449), - [sym_bytes_literal] = ACTIONS(1449), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1447), - [sym_at_ident] = ACTIONS(1449), - [sym_hash_ident] = ACTIONS(1449), - [sym_type_ident] = ACTIONS(1449), - [sym_ct_type_ident] = ACTIONS(1449), - [sym_const_ident] = ACTIONS(1447), - [sym_builtin] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_tlocal] = ACTIONS(1447), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_var] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_defer] = ACTIONS(1447), - [anon_sym_assert] = ACTIONS(1447), - [anon_sym_nextcase] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_foreach] = ACTIONS(1447), - [anon_sym_foreach_r] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_int] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_asm] = ACTIONS(1447), - [anon_sym_DOLLARassert] = ACTIONS(1447), - [anon_sym_DOLLARerror] = ACTIONS(1447), - [anon_sym_DOLLARecho] = ACTIONS(1447), - [anon_sym_DOLLARif] = ACTIONS(1447), - [anon_sym_DOLLARendif] = ACTIONS(1447), - [anon_sym_DOLLARswitch] = ACTIONS(1447), - [anon_sym_DOLLARfor] = ACTIONS(1447), - [anon_sym_DOLLARforeach] = ACTIONS(1447), - [anon_sym_DOLLARalignof] = ACTIONS(1447), - [anon_sym_DOLLARextnameof] = ACTIONS(1447), - [anon_sym_DOLLARnameof] = ACTIONS(1447), - [anon_sym_DOLLARoffsetof] = ACTIONS(1447), - [anon_sym_DOLLARqnameof] = ACTIONS(1447), - [anon_sym_DOLLARvaconst] = ACTIONS(1447), - [anon_sym_DOLLARvaarg] = ACTIONS(1447), - [anon_sym_DOLLARvaref] = ACTIONS(1447), - [anon_sym_DOLLARvaexpr] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1447), - [anon_sym_false] = ACTIONS(1447), - [anon_sym_null] = ACTIONS(1447), - [anon_sym_DOLLARvacount] = ACTIONS(1447), - [anon_sym_DOLLAReval] = ACTIONS(1447), - [anon_sym_DOLLARis_const] = ACTIONS(1447), - [anon_sym_DOLLARsizeof] = ACTIONS(1447), - [anon_sym_DOLLARstringify] = ACTIONS(1447), - [anon_sym_DOLLARappend] = ACTIONS(1447), - [anon_sym_DOLLARconcat] = ACTIONS(1447), - [anon_sym_DOLLARdefined] = ACTIONS(1447), - [anon_sym_DOLLARembed] = ACTIONS(1447), - [anon_sym_DOLLARand] = ACTIONS(1447), - [anon_sym_DOLLARor] = ACTIONS(1447), - [anon_sym_DOLLARfeature] = ACTIONS(1447), - [anon_sym_DOLLARassignable] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_typeid] = ACTIONS(1447), - [anon_sym_LBRACE_PIPE] = ACTIONS(1449), - [anon_sym_void] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_ichar] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [anon_sym_ushort] = ACTIONS(1447), - [anon_sym_uint] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_ulong] = ACTIONS(1447), - [anon_sym_int128] = ACTIONS(1447), - [anon_sym_uint128] = ACTIONS(1447), - [anon_sym_float] = ACTIONS(1447), - [anon_sym_double] = ACTIONS(1447), - [anon_sym_float16] = ACTIONS(1447), - [anon_sym_bfloat16] = ACTIONS(1447), - [anon_sym_float128] = ACTIONS(1447), - [anon_sym_iptr] = ACTIONS(1447), - [anon_sym_uptr] = ACTIONS(1447), - [anon_sym_isz] = ACTIONS(1447), - [anon_sym_usz] = ACTIONS(1447), - [anon_sym_anyfault] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_DOLLARtypeof] = ACTIONS(1447), - [anon_sym_DOLLARtypefrom] = ACTIONS(1447), - [anon_sym_DOLLARevaltype] = ACTIONS(1447), - [anon_sym_DOLLARvatype] = ACTIONS(1447), - [sym_real_literal] = ACTIONS(1449), - }, - [733] = { - [sym_line_comment] = STATE(733), - [sym_doc_comment] = STATE(733), - [sym_block_comment] = STATE(733), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARendif] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARappend] = ACTIONS(1479), - [anon_sym_DOLLARconcat] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), - }, - [734] = { - [sym_line_comment] = STATE(734), - [sym_doc_comment] = STATE(734), - [sym_block_comment] = STATE(734), - [sym_ident] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_bytes_literal] = ACTIONS(1659), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1657), - [sym_at_ident] = ACTIONS(1659), - [sym_hash_ident] = ACTIONS(1659), - [sym_type_ident] = ACTIONS(1659), - [sym_ct_type_ident] = ACTIONS(1659), - [sym_const_ident] = ACTIONS(1657), - [sym_builtin] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_tlocal] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_var] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_assert] = ACTIONS(1657), - [anon_sym_nextcase] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_foreach] = ACTIONS(1657), - [anon_sym_foreach_r] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1657), - [anon_sym_DOLLARassert] = ACTIONS(1657), - [anon_sym_DOLLARerror] = ACTIONS(1657), - [anon_sym_DOLLARecho] = ACTIONS(1657), - [anon_sym_DOLLARif] = ACTIONS(1657), - [anon_sym_DOLLARendif] = ACTIONS(1657), - [anon_sym_DOLLARswitch] = ACTIONS(1657), - [anon_sym_DOLLARfor] = ACTIONS(1657), - [anon_sym_DOLLARforeach] = ACTIONS(1657), - [anon_sym_DOLLARalignof] = ACTIONS(1657), - [anon_sym_DOLLARextnameof] = ACTIONS(1657), - [anon_sym_DOLLARnameof] = ACTIONS(1657), - [anon_sym_DOLLARoffsetof] = ACTIONS(1657), - [anon_sym_DOLLARqnameof] = ACTIONS(1657), - [anon_sym_DOLLARvaconst] = ACTIONS(1657), - [anon_sym_DOLLARvaarg] = ACTIONS(1657), - [anon_sym_DOLLARvaref] = ACTIONS(1657), - [anon_sym_DOLLARvaexpr] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_DOLLARvacount] = ACTIONS(1657), - [anon_sym_DOLLAReval] = ACTIONS(1657), - [anon_sym_DOLLARis_const] = ACTIONS(1657), - [anon_sym_DOLLARsizeof] = ACTIONS(1657), - [anon_sym_DOLLARstringify] = ACTIONS(1657), - [anon_sym_DOLLARappend] = ACTIONS(1657), - [anon_sym_DOLLARconcat] = ACTIONS(1657), - [anon_sym_DOLLARdefined] = ACTIONS(1657), - [anon_sym_DOLLARembed] = ACTIONS(1657), - [anon_sym_DOLLARand] = ACTIONS(1657), - [anon_sym_DOLLARor] = ACTIONS(1657), - [anon_sym_DOLLARfeature] = ACTIONS(1657), - [anon_sym_DOLLARassignable] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_typeid] = ACTIONS(1657), - [anon_sym_LBRACE_PIPE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_ichar] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [anon_sym_ushort] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_ulong] = ACTIONS(1657), - [anon_sym_int128] = ACTIONS(1657), - [anon_sym_uint128] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_double] = ACTIONS(1657), - [anon_sym_float16] = ACTIONS(1657), - [anon_sym_bfloat16] = ACTIONS(1657), - [anon_sym_float128] = ACTIONS(1657), - [anon_sym_iptr] = ACTIONS(1657), - [anon_sym_uptr] = ACTIONS(1657), - [anon_sym_isz] = ACTIONS(1657), - [anon_sym_usz] = ACTIONS(1657), - [anon_sym_anyfault] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_DOLLARtypeof] = ACTIONS(1657), - [anon_sym_DOLLARtypefrom] = ACTIONS(1657), - [anon_sym_DOLLARevaltype] = ACTIONS(1657), - [anon_sym_DOLLARvatype] = ACTIONS(1657), - [sym_real_literal] = ACTIONS(1659), + [710] = { + [sym_line_comment] = STATE(710), + [sym_doc_comment] = STATE(710), + [sym_block_comment] = STATE(710), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARendforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, - [735] = { - [sym_line_comment] = STATE(735), - [sym_doc_comment] = STATE(735), - [sym_block_comment] = STATE(735), - [sym_ident] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1555), - [anon_sym_SQUOTE] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [anon_sym_BQUOTE] = ACTIONS(1555), - [sym_bytes_literal] = ACTIONS(1555), + [711] = { + [sym_line_comment] = STATE(711), + [sym_doc_comment] = STATE(711), + [sym_block_comment] = STATE(711), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1553), - [sym_at_ident] = ACTIONS(1555), - [sym_hash_ident] = ACTIONS(1555), - [sym_type_ident] = ACTIONS(1555), - [sym_ct_type_ident] = ACTIONS(1555), - [sym_const_ident] = ACTIONS(1553), - [sym_builtin] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_tlocal] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_var] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_defer] = ACTIONS(1553), - [anon_sym_assert] = ACTIONS(1553), - [anon_sym_nextcase] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_foreach] = ACTIONS(1553), - [anon_sym_foreach_r] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_int] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_asm] = ACTIONS(1553), - [anon_sym_DOLLARassert] = ACTIONS(1553), - [anon_sym_DOLLARerror] = ACTIONS(1553), - [anon_sym_DOLLARecho] = ACTIONS(1553), - [anon_sym_DOLLARif] = ACTIONS(1553), - [anon_sym_DOLLARendif] = ACTIONS(1553), - [anon_sym_DOLLARswitch] = ACTIONS(1553), - [anon_sym_DOLLARfor] = ACTIONS(1553), - [anon_sym_DOLLARforeach] = ACTIONS(1553), - [anon_sym_DOLLARalignof] = ACTIONS(1553), - [anon_sym_DOLLARextnameof] = ACTIONS(1553), - [anon_sym_DOLLARnameof] = ACTIONS(1553), - [anon_sym_DOLLARoffsetof] = ACTIONS(1553), - [anon_sym_DOLLARqnameof] = ACTIONS(1553), - [anon_sym_DOLLARvaconst] = ACTIONS(1553), - [anon_sym_DOLLARvaarg] = ACTIONS(1553), - [anon_sym_DOLLARvaref] = ACTIONS(1553), - [anon_sym_DOLLARvaexpr] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [anon_sym_null] = ACTIONS(1553), - [anon_sym_DOLLARvacount] = ACTIONS(1553), - [anon_sym_DOLLAReval] = ACTIONS(1553), - [anon_sym_DOLLARis_const] = ACTIONS(1553), - [anon_sym_DOLLARsizeof] = ACTIONS(1553), - [anon_sym_DOLLARstringify] = ACTIONS(1553), - [anon_sym_DOLLARappend] = ACTIONS(1553), - [anon_sym_DOLLARconcat] = ACTIONS(1553), - [anon_sym_DOLLARdefined] = ACTIONS(1553), - [anon_sym_DOLLARembed] = ACTIONS(1553), - [anon_sym_DOLLARand] = ACTIONS(1553), - [anon_sym_DOLLARor] = ACTIONS(1553), - [anon_sym_DOLLARfeature] = ACTIONS(1553), - [anon_sym_DOLLARassignable] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1555), - [anon_sym_typeid] = ACTIONS(1553), - [anon_sym_LBRACE_PIPE] = ACTIONS(1555), - [anon_sym_void] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [anon_sym_ichar] = ACTIONS(1553), - [anon_sym_short] = ACTIONS(1553), - [anon_sym_ushort] = ACTIONS(1553), - [anon_sym_uint] = ACTIONS(1553), - [anon_sym_long] = ACTIONS(1553), - [anon_sym_ulong] = ACTIONS(1553), - [anon_sym_int128] = ACTIONS(1553), - [anon_sym_uint128] = ACTIONS(1553), - [anon_sym_float] = ACTIONS(1553), - [anon_sym_double] = ACTIONS(1553), - [anon_sym_float16] = ACTIONS(1553), - [anon_sym_bfloat16] = ACTIONS(1553), - [anon_sym_float128] = ACTIONS(1553), - [anon_sym_iptr] = ACTIONS(1553), - [anon_sym_uptr] = ACTIONS(1553), - [anon_sym_isz] = ACTIONS(1553), - [anon_sym_usz] = ACTIONS(1553), - [anon_sym_anyfault] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_DOLLARtypeof] = ACTIONS(1553), - [anon_sym_DOLLARtypefrom] = ACTIONS(1553), - [anon_sym_DOLLARevaltype] = ACTIONS(1553), - [anon_sym_DOLLARvatype] = ACTIONS(1553), - [sym_real_literal] = ACTIONS(1555), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARendforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, - [736] = { - [sym_line_comment] = STATE(736), - [sym_doc_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [712] = { + [sym_line_comment] = STATE(712), + [sym_doc_comment] = STATE(712), + [sym_block_comment] = STATE(712), [sym_ident] = ACTIONS(1565), [sym_integer_literal] = ACTIONS(1567), [anon_sym_SQUOTE] = ACTIONS(1567), @@ -110341,10 +107496,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1565), [anon_sym_DOLLARecho] = ACTIONS(1565), [anon_sym_DOLLARif] = ACTIONS(1565), - [anon_sym_DOLLARendif] = ACTIONS(1565), [anon_sym_DOLLARswitch] = ACTIONS(1565), [anon_sym_DOLLARfor] = ACTIONS(1565), [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARendforeach] = ACTIONS(1565), [anon_sym_DOLLARalignof] = ACTIONS(1565), [anon_sym_DOLLARextnameof] = ACTIONS(1565), [anon_sym_DOLLARnameof] = ACTIONS(1565), @@ -110404,585 +107559,815 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1565), [sym_real_literal] = ACTIONS(1567), }, - [737] = { - [sym_line_comment] = STATE(737), - [sym_doc_comment] = STATE(737), - [sym_block_comment] = STATE(737), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARendif] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARappend] = ACTIONS(1463), - [anon_sym_DOLLARconcat] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), + [713] = { + [sym_line_comment] = STATE(713), + [sym_doc_comment] = STATE(713), + [sym_block_comment] = STATE(713), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARendforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, - [738] = { - [sym_line_comment] = STATE(738), - [sym_doc_comment] = STATE(738), - [sym_block_comment] = STATE(738), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARendif] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARappend] = ACTIONS(1491), - [anon_sym_DOLLARconcat] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), + [714] = { + [sym_line_comment] = STATE(714), + [sym_doc_comment] = STATE(714), + [sym_block_comment] = STATE(714), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARendforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, - [739] = { - [sym_line_comment] = STATE(739), - [sym_doc_comment] = STATE(739), - [sym_block_comment] = STATE(739), - [sym_ident] = ACTIONS(1189), - [sym_integer_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [anon_sym_BQUOTE] = ACTIONS(1191), - [sym_bytes_literal] = ACTIONS(1191), + [715] = { + [sym_line_comment] = STATE(715), + [sym_doc_comment] = STATE(715), + [sym_block_comment] = STATE(715), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1189), - [sym_at_ident] = ACTIONS(1191), - [sym_hash_ident] = ACTIONS(1191), - [sym_type_ident] = ACTIONS(1191), - [sym_ct_type_ident] = ACTIONS(1191), - [sym_const_ident] = ACTIONS(1189), - [sym_builtin] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_tlocal] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym_fn] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_defer] = ACTIONS(1189), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_nextcase] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_foreach] = ACTIONS(1189), - [anon_sym_foreach_r] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_int] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym_DOLLARassert] = ACTIONS(1189), - [anon_sym_DOLLARerror] = ACTIONS(1189), - [anon_sym_DOLLARecho] = ACTIONS(1189), - [anon_sym_DOLLARif] = ACTIONS(1189), - [anon_sym_DOLLARswitch] = ACTIONS(1189), - [anon_sym_DOLLARfor] = ACTIONS(1189), - [anon_sym_DOLLARforeach] = ACTIONS(1189), - [anon_sym_DOLLARendforeach] = ACTIONS(1189), - [anon_sym_DOLLARalignof] = ACTIONS(1189), - [anon_sym_DOLLARextnameof] = ACTIONS(1189), - [anon_sym_DOLLARnameof] = ACTIONS(1189), - [anon_sym_DOLLARoffsetof] = ACTIONS(1189), - [anon_sym_DOLLARqnameof] = ACTIONS(1189), - [anon_sym_DOLLARvaconst] = ACTIONS(1189), - [anon_sym_DOLLARvaarg] = ACTIONS(1189), - [anon_sym_DOLLARvaref] = ACTIONS(1189), - [anon_sym_DOLLARvaexpr] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_DOLLARvacount] = ACTIONS(1189), - [anon_sym_DOLLAReval] = ACTIONS(1189), - [anon_sym_DOLLARis_const] = ACTIONS(1189), - [anon_sym_DOLLARsizeof] = ACTIONS(1189), - [anon_sym_DOLLARstringify] = ACTIONS(1189), - [anon_sym_DOLLARappend] = ACTIONS(1189), - [anon_sym_DOLLARconcat] = ACTIONS(1189), - [anon_sym_DOLLARdefined] = ACTIONS(1189), - [anon_sym_DOLLARembed] = ACTIONS(1189), - [anon_sym_DOLLARand] = ACTIONS(1189), - [anon_sym_DOLLARor] = ACTIONS(1189), - [anon_sym_DOLLARfeature] = ACTIONS(1189), - [anon_sym_DOLLARassignable] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_typeid] = ACTIONS(1189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1191), - [anon_sym_void] = ACTIONS(1189), - [anon_sym_bool] = ACTIONS(1189), - [anon_sym_char] = ACTIONS(1189), - [anon_sym_ichar] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_ushort] = ACTIONS(1189), - [anon_sym_uint] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_ulong] = ACTIONS(1189), - [anon_sym_int128] = ACTIONS(1189), - [anon_sym_uint128] = ACTIONS(1189), - [anon_sym_float] = ACTIONS(1189), - [anon_sym_double] = ACTIONS(1189), - [anon_sym_float16] = ACTIONS(1189), - [anon_sym_bfloat16] = ACTIONS(1189), - [anon_sym_float128] = ACTIONS(1189), - [anon_sym_iptr] = ACTIONS(1189), - [anon_sym_uptr] = ACTIONS(1189), - [anon_sym_isz] = ACTIONS(1189), - [anon_sym_usz] = ACTIONS(1189), - [anon_sym_anyfault] = ACTIONS(1189), - [anon_sym_any] = ACTIONS(1189), - [anon_sym_DOLLARtypeof] = ACTIONS(1189), - [anon_sym_DOLLARtypefrom] = ACTIONS(1189), - [anon_sym_DOLLARevaltype] = ACTIONS(1189), - [anon_sym_DOLLARvatype] = ACTIONS(1189), - [sym_real_literal] = ACTIONS(1191), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARendforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, - [740] = { - [sym_line_comment] = STATE(740), - [sym_doc_comment] = STATE(740), - [sym_block_comment] = STATE(740), - [sym_ident] = ACTIONS(1613), - [sym_integer_literal] = ACTIONS(1615), - [anon_sym_SQUOTE] = ACTIONS(1615), - [anon_sym_DQUOTE] = ACTIONS(1615), - [anon_sym_BQUOTE] = ACTIONS(1615), - [sym_bytes_literal] = ACTIONS(1615), + [716] = { + [sym_line_comment] = STATE(716), + [sym_doc_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [sym_ident] = ACTIONS(1701), + [sym_integer_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_BQUOTE] = ACTIONS(1703), + [sym_bytes_literal] = ACTIONS(1703), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1701), + [sym_at_ident] = ACTIONS(1703), + [sym_hash_ident] = ACTIONS(1703), + [sym_type_ident] = ACTIONS(1703), + [sym_ct_type_ident] = ACTIONS(1703), + [sym_const_ident] = ACTIONS(1701), + [sym_builtin] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1701), + [anon_sym_tlocal] = ACTIONS(1701), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_fn] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [anon_sym_var] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_defer] = ACTIONS(1701), + [anon_sym_assert] = ACTIONS(1701), + [anon_sym_nextcase] = ACTIONS(1701), + [anon_sym_switch] = ACTIONS(1701), + [anon_sym_AMP_AMP] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_foreach] = ACTIONS(1701), + [anon_sym_foreach_r] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_int] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_asm] = ACTIONS(1701), + [anon_sym_DOLLARassert] = ACTIONS(1701), + [anon_sym_DOLLARerror] = ACTIONS(1701), + [anon_sym_DOLLARecho] = ACTIONS(1701), + [anon_sym_DOLLARif] = ACTIONS(1701), + [anon_sym_DOLLARswitch] = ACTIONS(1701), + [anon_sym_DOLLARfor] = ACTIONS(1701), + [anon_sym_DOLLARforeach] = ACTIONS(1701), + [anon_sym_DOLLARendforeach] = ACTIONS(1701), + [anon_sym_DOLLARalignof] = ACTIONS(1701), + [anon_sym_DOLLARextnameof] = ACTIONS(1701), + [anon_sym_DOLLARnameof] = ACTIONS(1701), + [anon_sym_DOLLARoffsetof] = ACTIONS(1701), + [anon_sym_DOLLARqnameof] = ACTIONS(1701), + [anon_sym_DOLLARvaconst] = ACTIONS(1701), + [anon_sym_DOLLARvaarg] = ACTIONS(1701), + [anon_sym_DOLLARvaref] = ACTIONS(1701), + [anon_sym_DOLLARvaexpr] = ACTIONS(1701), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_null] = ACTIONS(1701), + [anon_sym_DOLLARvacount] = ACTIONS(1701), + [anon_sym_DOLLAReval] = ACTIONS(1701), + [anon_sym_DOLLARis_const] = ACTIONS(1701), + [anon_sym_DOLLARsizeof] = ACTIONS(1701), + [anon_sym_DOLLARstringify] = ACTIONS(1701), + [anon_sym_DOLLARappend] = ACTIONS(1701), + [anon_sym_DOLLARconcat] = ACTIONS(1701), + [anon_sym_DOLLARdefined] = ACTIONS(1701), + [anon_sym_DOLLARembed] = ACTIONS(1701), + [anon_sym_DOLLARand] = ACTIONS(1701), + [anon_sym_DOLLARor] = ACTIONS(1701), + [anon_sym_DOLLARfeature] = ACTIONS(1701), + [anon_sym_DOLLARassignable] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_TILDE] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_typeid] = ACTIONS(1701), + [anon_sym_LBRACE_PIPE] = ACTIONS(1703), + [anon_sym_void] = ACTIONS(1701), + [anon_sym_bool] = ACTIONS(1701), + [anon_sym_char] = ACTIONS(1701), + [anon_sym_ichar] = ACTIONS(1701), + [anon_sym_short] = ACTIONS(1701), + [anon_sym_ushort] = ACTIONS(1701), + [anon_sym_uint] = ACTIONS(1701), + [anon_sym_long] = ACTIONS(1701), + [anon_sym_ulong] = ACTIONS(1701), + [anon_sym_int128] = ACTIONS(1701), + [anon_sym_uint128] = ACTIONS(1701), + [anon_sym_float] = ACTIONS(1701), + [anon_sym_double] = ACTIONS(1701), + [anon_sym_float16] = ACTIONS(1701), + [anon_sym_bfloat16] = ACTIONS(1701), + [anon_sym_float128] = ACTIONS(1701), + [anon_sym_iptr] = ACTIONS(1701), + [anon_sym_uptr] = ACTIONS(1701), + [anon_sym_isz] = ACTIONS(1701), + [anon_sym_usz] = ACTIONS(1701), + [anon_sym_anyfault] = ACTIONS(1701), + [anon_sym_any] = ACTIONS(1701), + [anon_sym_DOLLARtypeof] = ACTIONS(1701), + [anon_sym_DOLLARtypefrom] = ACTIONS(1701), + [anon_sym_DOLLARevaltype] = ACTIONS(1701), + [anon_sym_DOLLARvatype] = ACTIONS(1701), + [sym_real_literal] = ACTIONS(1703), + }, + [717] = { + [sym_line_comment] = STATE(717), + [sym_doc_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1613), - [sym_at_ident] = ACTIONS(1615), - [sym_hash_ident] = ACTIONS(1615), - [sym_type_ident] = ACTIONS(1615), - [sym_ct_type_ident] = ACTIONS(1615), - [sym_const_ident] = ACTIONS(1613), - [sym_builtin] = ACTIONS(1615), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_static] = ACTIONS(1613), - [anon_sym_tlocal] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1615), - [anon_sym_fn] = ACTIONS(1613), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1613), - [anon_sym_var] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_defer] = ACTIONS(1613), - [anon_sym_assert] = ACTIONS(1613), - [anon_sym_nextcase] = ACTIONS(1613), - [anon_sym_switch] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_foreach] = ACTIONS(1613), - [anon_sym_foreach_r] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_do] = ACTIONS(1613), - [anon_sym_int] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_asm] = ACTIONS(1613), - [anon_sym_DOLLARassert] = ACTIONS(1613), - [anon_sym_DOLLARerror] = ACTIONS(1613), - [anon_sym_DOLLARecho] = ACTIONS(1613), - [anon_sym_DOLLARif] = ACTIONS(1613), - [anon_sym_DOLLARswitch] = ACTIONS(1613), - [anon_sym_DOLLARfor] = ACTIONS(1613), - [anon_sym_DOLLARforeach] = ACTIONS(1613), - [anon_sym_DOLLARendforeach] = ACTIONS(1613), - [anon_sym_DOLLARalignof] = ACTIONS(1613), - [anon_sym_DOLLARextnameof] = ACTIONS(1613), - [anon_sym_DOLLARnameof] = ACTIONS(1613), - [anon_sym_DOLLARoffsetof] = ACTIONS(1613), - [anon_sym_DOLLARqnameof] = ACTIONS(1613), - [anon_sym_DOLLARvaconst] = ACTIONS(1613), - [anon_sym_DOLLARvaarg] = ACTIONS(1613), - [anon_sym_DOLLARvaref] = ACTIONS(1613), - [anon_sym_DOLLARvaexpr] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_null] = ACTIONS(1613), - [anon_sym_DOLLARvacount] = ACTIONS(1613), - [anon_sym_DOLLAReval] = ACTIONS(1613), - [anon_sym_DOLLARis_const] = ACTIONS(1613), - [anon_sym_DOLLARsizeof] = ACTIONS(1613), - [anon_sym_DOLLARstringify] = ACTIONS(1613), - [anon_sym_DOLLARappend] = ACTIONS(1613), - [anon_sym_DOLLARconcat] = ACTIONS(1613), - [anon_sym_DOLLARdefined] = ACTIONS(1613), - [anon_sym_DOLLARembed] = ACTIONS(1613), - [anon_sym_DOLLARand] = ACTIONS(1613), - [anon_sym_DOLLARor] = ACTIONS(1613), - [anon_sym_DOLLARfeature] = ACTIONS(1613), - [anon_sym_DOLLARassignable] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1615), - [anon_sym_TILDE] = ACTIONS(1615), - [anon_sym_PLUS_PLUS] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1615), - [anon_sym_typeid] = ACTIONS(1613), - [anon_sym_LBRACE_PIPE] = ACTIONS(1615), - [anon_sym_void] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_char] = ACTIONS(1613), - [anon_sym_ichar] = ACTIONS(1613), - [anon_sym_short] = ACTIONS(1613), - [anon_sym_ushort] = ACTIONS(1613), - [anon_sym_uint] = ACTIONS(1613), - [anon_sym_long] = ACTIONS(1613), - [anon_sym_ulong] = ACTIONS(1613), - [anon_sym_int128] = ACTIONS(1613), - [anon_sym_uint128] = ACTIONS(1613), - [anon_sym_float] = ACTIONS(1613), - [anon_sym_double] = ACTIONS(1613), - [anon_sym_float16] = ACTIONS(1613), - [anon_sym_bfloat16] = ACTIONS(1613), - [anon_sym_float128] = ACTIONS(1613), - [anon_sym_iptr] = ACTIONS(1613), - [anon_sym_uptr] = ACTIONS(1613), - [anon_sym_isz] = ACTIONS(1613), - [anon_sym_usz] = ACTIONS(1613), - [anon_sym_anyfault] = ACTIONS(1613), - [anon_sym_any] = ACTIONS(1613), - [anon_sym_DOLLARtypeof] = ACTIONS(1613), - [anon_sym_DOLLARtypefrom] = ACTIONS(1613), - [anon_sym_DOLLARevaltype] = ACTIONS(1613), - [anon_sym_DOLLARvatype] = ACTIONS(1613), - [sym_real_literal] = ACTIONS(1615), - }, - [741] = { - [sym_line_comment] = STATE(741), - [sym_doc_comment] = STATE(741), - [sym_block_comment] = STATE(741), - [sym_ident] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_BQUOTE] = ACTIONS(1643), - [sym_bytes_literal] = ACTIONS(1643), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARendforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), + }, + [718] = { + [sym_line_comment] = STATE(718), + [sym_doc_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1641), - [sym_at_ident] = ACTIONS(1643), - [sym_hash_ident] = ACTIONS(1643), - [sym_type_ident] = ACTIONS(1643), - [sym_ct_type_ident] = ACTIONS(1643), - [sym_const_ident] = ACTIONS(1641), - [sym_builtin] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_tlocal] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_fn] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_var] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_defer] = ACTIONS(1641), - [anon_sym_assert] = ACTIONS(1641), - [anon_sym_nextcase] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_foreach] = ACTIONS(1641), - [anon_sym_foreach_r] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_int] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_asm] = ACTIONS(1641), - [anon_sym_DOLLARassert] = ACTIONS(1641), - [anon_sym_DOLLARerror] = ACTIONS(1641), - [anon_sym_DOLLARecho] = ACTIONS(1641), - [anon_sym_DOLLARif] = ACTIONS(1641), - [anon_sym_DOLLARswitch] = ACTIONS(1641), - [anon_sym_DOLLARfor] = ACTIONS(1641), - [anon_sym_DOLLARforeach] = ACTIONS(1641), - [anon_sym_DOLLARendforeach] = ACTIONS(1641), - [anon_sym_DOLLARalignof] = ACTIONS(1641), - [anon_sym_DOLLARextnameof] = ACTIONS(1641), - [anon_sym_DOLLARnameof] = ACTIONS(1641), - [anon_sym_DOLLARoffsetof] = ACTIONS(1641), - [anon_sym_DOLLARqnameof] = ACTIONS(1641), - [anon_sym_DOLLARvaconst] = ACTIONS(1641), - [anon_sym_DOLLARvaarg] = ACTIONS(1641), - [anon_sym_DOLLARvaref] = ACTIONS(1641), - [anon_sym_DOLLARvaexpr] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [anon_sym_DOLLARvacount] = ACTIONS(1641), - [anon_sym_DOLLAReval] = ACTIONS(1641), - [anon_sym_DOLLARis_const] = ACTIONS(1641), - [anon_sym_DOLLARsizeof] = ACTIONS(1641), - [anon_sym_DOLLARstringify] = ACTIONS(1641), - [anon_sym_DOLLARappend] = ACTIONS(1641), - [anon_sym_DOLLARconcat] = ACTIONS(1641), - [anon_sym_DOLLARdefined] = ACTIONS(1641), - [anon_sym_DOLLARembed] = ACTIONS(1641), - [anon_sym_DOLLARand] = ACTIONS(1641), - [anon_sym_DOLLARor] = ACTIONS(1641), - [anon_sym_DOLLARfeature] = ACTIONS(1641), - [anon_sym_DOLLARassignable] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_typeid] = ACTIONS(1641), - [anon_sym_LBRACE_PIPE] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_char] = ACTIONS(1641), - [anon_sym_ichar] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [anon_sym_ushort] = ACTIONS(1641), - [anon_sym_uint] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_ulong] = ACTIONS(1641), - [anon_sym_int128] = ACTIONS(1641), - [anon_sym_uint128] = ACTIONS(1641), - [anon_sym_float] = ACTIONS(1641), - [anon_sym_double] = ACTIONS(1641), - [anon_sym_float16] = ACTIONS(1641), - [anon_sym_bfloat16] = ACTIONS(1641), - [anon_sym_float128] = ACTIONS(1641), - [anon_sym_iptr] = ACTIONS(1641), - [anon_sym_uptr] = ACTIONS(1641), - [anon_sym_isz] = ACTIONS(1641), - [anon_sym_usz] = ACTIONS(1641), - [anon_sym_anyfault] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_DOLLARtypeof] = ACTIONS(1641), - [anon_sym_DOLLARtypefrom] = ACTIONS(1641), - [anon_sym_DOLLARevaltype] = ACTIONS(1641), - [anon_sym_DOLLARvatype] = ACTIONS(1641), - [sym_real_literal] = ACTIONS(1643), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARendforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, - [742] = { - [sym_line_comment] = STATE(742), - [sym_doc_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [719] = { + [sym_line_comment] = STATE(719), + [sym_doc_comment] = STATE(719), + [sym_block_comment] = STATE(719), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARendif] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), + }, + [720] = { + [sym_line_comment] = STATE(720), + [sym_doc_comment] = STATE(720), + [sym_block_comment] = STATE(720), [sym_ident] = ACTIONS(1529), [sym_integer_literal] = ACTIONS(1531), [anon_sym_SQUOTE] = ACTIONS(1531), @@ -111031,10 +108416,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1529), [anon_sym_DOLLARecho] = ACTIONS(1529), [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARendif] = ACTIONS(1529), [anon_sym_DOLLARswitch] = ACTIONS(1529), [anon_sym_DOLLARfor] = ACTIONS(1529), [anon_sym_DOLLARforeach] = ACTIONS(1529), - [anon_sym_DOLLARendforeach] = ACTIONS(1529), [anon_sym_DOLLARalignof] = ACTIONS(1529), [anon_sym_DOLLARextnameof] = ACTIONS(1529), [anon_sym_DOLLARnameof] = ACTIONS(1529), @@ -111094,585 +108479,470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1529), [sym_real_literal] = ACTIONS(1531), }, - [743] = { - [sym_line_comment] = STATE(743), - [sym_doc_comment] = STATE(743), - [sym_block_comment] = STATE(743), - [sym_ident] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_bytes_literal] = ACTIONS(1595), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1593), - [sym_at_ident] = ACTIONS(1595), - [sym_hash_ident] = ACTIONS(1595), - [sym_type_ident] = ACTIONS(1595), - [sym_ct_type_ident] = ACTIONS(1595), - [sym_const_ident] = ACTIONS(1593), - [sym_builtin] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_tlocal] = ACTIONS(1593), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_fn] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_var] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_defer] = ACTIONS(1593), - [anon_sym_assert] = ACTIONS(1593), - [anon_sym_nextcase] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_foreach] = ACTIONS(1593), - [anon_sym_foreach_r] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_int] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_asm] = ACTIONS(1593), - [anon_sym_DOLLARassert] = ACTIONS(1593), - [anon_sym_DOLLARerror] = ACTIONS(1593), - [anon_sym_DOLLARecho] = ACTIONS(1593), - [anon_sym_DOLLARif] = ACTIONS(1593), - [anon_sym_DOLLARendif] = ACTIONS(1593), - [anon_sym_DOLLARswitch] = ACTIONS(1593), - [anon_sym_DOLLARfor] = ACTIONS(1593), - [anon_sym_DOLLARforeach] = ACTIONS(1593), - [anon_sym_DOLLARalignof] = ACTIONS(1593), - [anon_sym_DOLLARextnameof] = ACTIONS(1593), - [anon_sym_DOLLARnameof] = ACTIONS(1593), - [anon_sym_DOLLARoffsetof] = ACTIONS(1593), - [anon_sym_DOLLARqnameof] = ACTIONS(1593), - [anon_sym_DOLLARvaconst] = ACTIONS(1593), - [anon_sym_DOLLARvaarg] = ACTIONS(1593), - [anon_sym_DOLLARvaref] = ACTIONS(1593), - [anon_sym_DOLLARvaexpr] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(1593), - [anon_sym_false] = ACTIONS(1593), - [anon_sym_null] = ACTIONS(1593), - [anon_sym_DOLLARvacount] = ACTIONS(1593), - [anon_sym_DOLLAReval] = ACTIONS(1593), - [anon_sym_DOLLARis_const] = ACTIONS(1593), - [anon_sym_DOLLARsizeof] = ACTIONS(1593), - [anon_sym_DOLLARstringify] = ACTIONS(1593), - [anon_sym_DOLLARappend] = ACTIONS(1593), - [anon_sym_DOLLARconcat] = ACTIONS(1593), - [anon_sym_DOLLARdefined] = ACTIONS(1593), - [anon_sym_DOLLARembed] = ACTIONS(1593), - [anon_sym_DOLLARand] = ACTIONS(1593), - [anon_sym_DOLLARor] = ACTIONS(1593), - [anon_sym_DOLLARfeature] = ACTIONS(1593), - [anon_sym_DOLLARassignable] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_typeid] = ACTIONS(1593), - [anon_sym_LBRACE_PIPE] = ACTIONS(1595), - [anon_sym_void] = ACTIONS(1593), - [anon_sym_bool] = ACTIONS(1593), - [anon_sym_char] = ACTIONS(1593), - [anon_sym_ichar] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [anon_sym_ushort] = ACTIONS(1593), - [anon_sym_uint] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_ulong] = ACTIONS(1593), - [anon_sym_int128] = ACTIONS(1593), - [anon_sym_uint128] = ACTIONS(1593), - [anon_sym_float] = ACTIONS(1593), - [anon_sym_double] = ACTIONS(1593), - [anon_sym_float16] = ACTIONS(1593), - [anon_sym_bfloat16] = ACTIONS(1593), - [anon_sym_float128] = ACTIONS(1593), - [anon_sym_iptr] = ACTIONS(1593), - [anon_sym_uptr] = ACTIONS(1593), - [anon_sym_isz] = ACTIONS(1593), - [anon_sym_usz] = ACTIONS(1593), - [anon_sym_anyfault] = ACTIONS(1593), - [anon_sym_any] = ACTIONS(1593), - [anon_sym_DOLLARtypeof] = ACTIONS(1593), - [anon_sym_DOLLARtypefrom] = ACTIONS(1593), - [anon_sym_DOLLARevaltype] = ACTIONS(1593), - [anon_sym_DOLLARvatype] = ACTIONS(1593), - [sym_real_literal] = ACTIONS(1595), - }, - [744] = { - [sym_line_comment] = STATE(744), - [sym_doc_comment] = STATE(744), - [sym_block_comment] = STATE(744), - [sym_ident] = ACTIONS(1597), - [sym_integer_literal] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [anon_sym_BQUOTE] = ACTIONS(1599), - [sym_bytes_literal] = ACTIONS(1599), + [721] = { + [sym_line_comment] = STATE(721), + [sym_doc_comment] = STATE(721), + [sym_block_comment] = STATE(721), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1597), - [sym_at_ident] = ACTIONS(1599), - [sym_hash_ident] = ACTIONS(1599), - [sym_type_ident] = ACTIONS(1599), - [sym_ct_type_ident] = ACTIONS(1599), - [sym_const_ident] = ACTIONS(1597), - [sym_builtin] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_tlocal] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_fn] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_defer] = ACTIONS(1597), - [anon_sym_assert] = ACTIONS(1597), - [anon_sym_nextcase] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_foreach] = ACTIONS(1597), - [anon_sym_foreach_r] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_int] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_asm] = ACTIONS(1597), - [anon_sym_DOLLARassert] = ACTIONS(1597), - [anon_sym_DOLLARerror] = ACTIONS(1597), - [anon_sym_DOLLARecho] = ACTIONS(1597), - [anon_sym_DOLLARif] = ACTIONS(1597), - [anon_sym_DOLLARendif] = ACTIONS(1597), - [anon_sym_DOLLARswitch] = ACTIONS(1597), - [anon_sym_DOLLARfor] = ACTIONS(1597), - [anon_sym_DOLLARforeach] = ACTIONS(1597), - [anon_sym_DOLLARalignof] = ACTIONS(1597), - [anon_sym_DOLLARextnameof] = ACTIONS(1597), - [anon_sym_DOLLARnameof] = ACTIONS(1597), - [anon_sym_DOLLARoffsetof] = ACTIONS(1597), - [anon_sym_DOLLARqnameof] = ACTIONS(1597), - [anon_sym_DOLLARvaconst] = ACTIONS(1597), - [anon_sym_DOLLARvaarg] = ACTIONS(1597), - [anon_sym_DOLLARvaref] = ACTIONS(1597), - [anon_sym_DOLLARvaexpr] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_DOLLARvacount] = ACTIONS(1597), - [anon_sym_DOLLAReval] = ACTIONS(1597), - [anon_sym_DOLLARis_const] = ACTIONS(1597), - [anon_sym_DOLLARsizeof] = ACTIONS(1597), - [anon_sym_DOLLARstringify] = ACTIONS(1597), - [anon_sym_DOLLARappend] = ACTIONS(1597), - [anon_sym_DOLLARconcat] = ACTIONS(1597), - [anon_sym_DOLLARdefined] = ACTIONS(1597), - [anon_sym_DOLLARembed] = ACTIONS(1597), - [anon_sym_DOLLARand] = ACTIONS(1597), - [anon_sym_DOLLARor] = ACTIONS(1597), - [anon_sym_DOLLARfeature] = ACTIONS(1597), - [anon_sym_DOLLARassignable] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_typeid] = ACTIONS(1597), - [anon_sym_LBRACE_PIPE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_bool] = ACTIONS(1597), - [anon_sym_char] = ACTIONS(1597), - [anon_sym_ichar] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [anon_sym_ushort] = ACTIONS(1597), - [anon_sym_uint] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_ulong] = ACTIONS(1597), - [anon_sym_int128] = ACTIONS(1597), - [anon_sym_uint128] = ACTIONS(1597), - [anon_sym_float] = ACTIONS(1597), - [anon_sym_double] = ACTIONS(1597), - [anon_sym_float16] = ACTIONS(1597), - [anon_sym_bfloat16] = ACTIONS(1597), - [anon_sym_float128] = ACTIONS(1597), - [anon_sym_iptr] = ACTIONS(1597), - [anon_sym_uptr] = ACTIONS(1597), - [anon_sym_isz] = ACTIONS(1597), - [anon_sym_usz] = ACTIONS(1597), - [anon_sym_anyfault] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_DOLLARtypeof] = ACTIONS(1597), - [anon_sym_DOLLARtypefrom] = ACTIONS(1597), - [anon_sym_DOLLARevaltype] = ACTIONS(1597), - [anon_sym_DOLLARvatype] = ACTIONS(1597), - [sym_real_literal] = ACTIONS(1599), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARendforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [745] = { - [sym_line_comment] = STATE(745), - [sym_doc_comment] = STATE(745), - [sym_block_comment] = STATE(745), - [sym_ident] = ACTIONS(1601), - [sym_integer_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [anon_sym_BQUOTE] = ACTIONS(1603), - [sym_bytes_literal] = ACTIONS(1603), + [722] = { + [sym_line_comment] = STATE(722), + [sym_doc_comment] = STATE(722), + [sym_block_comment] = STATE(722), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1601), - [sym_at_ident] = ACTIONS(1603), - [sym_hash_ident] = ACTIONS(1603), - [sym_type_ident] = ACTIONS(1603), - [sym_ct_type_ident] = ACTIONS(1603), - [sym_const_ident] = ACTIONS(1601), - [sym_builtin] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_tlocal] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_fn] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_var] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_defer] = ACTIONS(1601), - [anon_sym_assert] = ACTIONS(1601), - [anon_sym_nextcase] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_AMP_AMP] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_foreach] = ACTIONS(1601), - [anon_sym_foreach_r] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_int] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_asm] = ACTIONS(1601), - [anon_sym_DOLLARassert] = ACTIONS(1601), - [anon_sym_DOLLARerror] = ACTIONS(1601), - [anon_sym_DOLLARecho] = ACTIONS(1601), - [anon_sym_DOLLARif] = ACTIONS(1601), - [anon_sym_DOLLARendif] = ACTIONS(1601), - [anon_sym_DOLLARswitch] = ACTIONS(1601), - [anon_sym_DOLLARfor] = ACTIONS(1601), - [anon_sym_DOLLARforeach] = ACTIONS(1601), - [anon_sym_DOLLARalignof] = ACTIONS(1601), - [anon_sym_DOLLARextnameof] = ACTIONS(1601), - [anon_sym_DOLLARnameof] = ACTIONS(1601), - [anon_sym_DOLLARoffsetof] = ACTIONS(1601), - [anon_sym_DOLLARqnameof] = ACTIONS(1601), - [anon_sym_DOLLARvaconst] = ACTIONS(1601), - [anon_sym_DOLLARvaarg] = ACTIONS(1601), - [anon_sym_DOLLARvaref] = ACTIONS(1601), - [anon_sym_DOLLARvaexpr] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(1601), - [anon_sym_false] = ACTIONS(1601), - [anon_sym_null] = ACTIONS(1601), - [anon_sym_DOLLARvacount] = ACTIONS(1601), - [anon_sym_DOLLAReval] = ACTIONS(1601), - [anon_sym_DOLLARis_const] = ACTIONS(1601), - [anon_sym_DOLLARsizeof] = ACTIONS(1601), - [anon_sym_DOLLARstringify] = ACTIONS(1601), - [anon_sym_DOLLARappend] = ACTIONS(1601), - [anon_sym_DOLLARconcat] = ACTIONS(1601), - [anon_sym_DOLLARdefined] = ACTIONS(1601), - [anon_sym_DOLLARembed] = ACTIONS(1601), - [anon_sym_DOLLARand] = ACTIONS(1601), - [anon_sym_DOLLARor] = ACTIONS(1601), - [anon_sym_DOLLARfeature] = ACTIONS(1601), - [anon_sym_DOLLARassignable] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_typeid] = ACTIONS(1601), - [anon_sym_LBRACE_PIPE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_char] = ACTIONS(1601), - [anon_sym_ichar] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [anon_sym_ushort] = ACTIONS(1601), - [anon_sym_uint] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_ulong] = ACTIONS(1601), - [anon_sym_int128] = ACTIONS(1601), - [anon_sym_uint128] = ACTIONS(1601), - [anon_sym_float] = ACTIONS(1601), - [anon_sym_double] = ACTIONS(1601), - [anon_sym_float16] = ACTIONS(1601), - [anon_sym_bfloat16] = ACTIONS(1601), - [anon_sym_float128] = ACTIONS(1601), - [anon_sym_iptr] = ACTIONS(1601), - [anon_sym_uptr] = ACTIONS(1601), - [anon_sym_isz] = ACTIONS(1601), - [anon_sym_usz] = ACTIONS(1601), - [anon_sym_anyfault] = ACTIONS(1601), - [anon_sym_any] = ACTIONS(1601), - [anon_sym_DOLLARtypeof] = ACTIONS(1601), - [anon_sym_DOLLARtypefrom] = ACTIONS(1601), - [anon_sym_DOLLARevaltype] = ACTIONS(1601), - [anon_sym_DOLLARvatype] = ACTIONS(1601), - [sym_real_literal] = ACTIONS(1603), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARendforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [746] = { - [sym_line_comment] = STATE(746), - [sym_doc_comment] = STATE(746), - [sym_block_comment] = STATE(746), - [sym_ident] = ACTIONS(1605), - [sym_integer_literal] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [anon_sym_BQUOTE] = ACTIONS(1607), - [sym_bytes_literal] = ACTIONS(1607), + [723] = { + [sym_line_comment] = STATE(723), + [sym_doc_comment] = STATE(723), + [sym_block_comment] = STATE(723), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1605), - [sym_at_ident] = ACTIONS(1607), - [sym_hash_ident] = ACTIONS(1607), - [sym_type_ident] = ACTIONS(1607), - [sym_ct_type_ident] = ACTIONS(1607), - [sym_const_ident] = ACTIONS(1605), - [sym_builtin] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_tlocal] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_fn] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_var] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_defer] = ACTIONS(1605), - [anon_sym_assert] = ACTIONS(1605), - [anon_sym_nextcase] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1607), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_foreach] = ACTIONS(1605), - [anon_sym_foreach_r] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_int] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_asm] = ACTIONS(1605), - [anon_sym_DOLLARassert] = ACTIONS(1605), - [anon_sym_DOLLARerror] = ACTIONS(1605), - [anon_sym_DOLLARecho] = ACTIONS(1605), - [anon_sym_DOLLARif] = ACTIONS(1605), - [anon_sym_DOLLARendif] = ACTIONS(1605), - [anon_sym_DOLLARswitch] = ACTIONS(1605), - [anon_sym_DOLLARfor] = ACTIONS(1605), - [anon_sym_DOLLARforeach] = ACTIONS(1605), - [anon_sym_DOLLARalignof] = ACTIONS(1605), - [anon_sym_DOLLARextnameof] = ACTIONS(1605), - [anon_sym_DOLLARnameof] = ACTIONS(1605), - [anon_sym_DOLLARoffsetof] = ACTIONS(1605), - [anon_sym_DOLLARqnameof] = ACTIONS(1605), - [anon_sym_DOLLARvaconst] = ACTIONS(1605), - [anon_sym_DOLLARvaarg] = ACTIONS(1605), - [anon_sym_DOLLARvaref] = ACTIONS(1605), - [anon_sym_DOLLARvaexpr] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1605), - [anon_sym_false] = ACTIONS(1605), - [anon_sym_null] = ACTIONS(1605), - [anon_sym_DOLLARvacount] = ACTIONS(1605), - [anon_sym_DOLLAReval] = ACTIONS(1605), - [anon_sym_DOLLARis_const] = ACTIONS(1605), - [anon_sym_DOLLARsizeof] = ACTIONS(1605), - [anon_sym_DOLLARstringify] = ACTIONS(1605), - [anon_sym_DOLLARappend] = ACTIONS(1605), - [anon_sym_DOLLARconcat] = ACTIONS(1605), - [anon_sym_DOLLARdefined] = ACTIONS(1605), - [anon_sym_DOLLARembed] = ACTIONS(1605), - [anon_sym_DOLLARand] = ACTIONS(1605), - [anon_sym_DOLLARor] = ACTIONS(1605), - [anon_sym_DOLLARfeature] = ACTIONS(1605), - [anon_sym_DOLLARassignable] = ACTIONS(1605), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_typeid] = ACTIONS(1605), - [anon_sym_LBRACE_PIPE] = ACTIONS(1607), - [anon_sym_void] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_char] = ACTIONS(1605), - [anon_sym_ichar] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [anon_sym_ushort] = ACTIONS(1605), - [anon_sym_uint] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_ulong] = ACTIONS(1605), - [anon_sym_int128] = ACTIONS(1605), - [anon_sym_uint128] = ACTIONS(1605), - [anon_sym_float] = ACTIONS(1605), - [anon_sym_double] = ACTIONS(1605), - [anon_sym_float16] = ACTIONS(1605), - [anon_sym_bfloat16] = ACTIONS(1605), - [anon_sym_float128] = ACTIONS(1605), - [anon_sym_iptr] = ACTIONS(1605), - [anon_sym_uptr] = ACTIONS(1605), - [anon_sym_isz] = ACTIONS(1605), - [anon_sym_usz] = ACTIONS(1605), - [anon_sym_anyfault] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1605), - [anon_sym_DOLLARtypeof] = ACTIONS(1605), - [anon_sym_DOLLARtypefrom] = ACTIONS(1605), - [anon_sym_DOLLARevaltype] = ACTIONS(1605), - [anon_sym_DOLLARvatype] = ACTIONS(1605), - [sym_real_literal] = ACTIONS(1607), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARendforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, - [747] = { - [sym_line_comment] = STATE(747), - [sym_doc_comment] = STATE(747), - [sym_block_comment] = STATE(747), - [sym_ident] = ACTIONS(1609), - [sym_integer_literal] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [anon_sym_BQUOTE] = ACTIONS(1611), - [sym_bytes_literal] = ACTIONS(1611), + [724] = { + [sym_line_comment] = STATE(724), + [sym_doc_comment] = STATE(724), + [sym_block_comment] = STATE(724), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1609), - [sym_at_ident] = ACTIONS(1611), - [sym_hash_ident] = ACTIONS(1611), - [sym_type_ident] = ACTIONS(1611), - [sym_ct_type_ident] = ACTIONS(1611), - [sym_const_ident] = ACTIONS(1609), - [sym_builtin] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_tlocal] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_fn] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_var] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_defer] = ACTIONS(1609), - [anon_sym_assert] = ACTIONS(1609), - [anon_sym_nextcase] = ACTIONS(1609), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_AMP_AMP] = ACTIONS(1611), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_foreach] = ACTIONS(1609), - [anon_sym_foreach_r] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_do] = ACTIONS(1609), - [anon_sym_int] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_asm] = ACTIONS(1609), - [anon_sym_DOLLARassert] = ACTIONS(1609), - [anon_sym_DOLLARerror] = ACTIONS(1609), - [anon_sym_DOLLARecho] = ACTIONS(1609), - [anon_sym_DOLLARif] = ACTIONS(1609), - [anon_sym_DOLLARendif] = ACTIONS(1609), - [anon_sym_DOLLARswitch] = ACTIONS(1609), - [anon_sym_DOLLARfor] = ACTIONS(1609), - [anon_sym_DOLLARforeach] = ACTIONS(1609), - [anon_sym_DOLLARalignof] = ACTIONS(1609), - [anon_sym_DOLLARextnameof] = ACTIONS(1609), - [anon_sym_DOLLARnameof] = ACTIONS(1609), - [anon_sym_DOLLARoffsetof] = ACTIONS(1609), - [anon_sym_DOLLARqnameof] = ACTIONS(1609), - [anon_sym_DOLLARvaconst] = ACTIONS(1609), - [anon_sym_DOLLARvaarg] = ACTIONS(1609), - [anon_sym_DOLLARvaref] = ACTIONS(1609), - [anon_sym_DOLLARvaexpr] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(1609), - [anon_sym_false] = ACTIONS(1609), - [anon_sym_null] = ACTIONS(1609), - [anon_sym_DOLLARvacount] = ACTIONS(1609), - [anon_sym_DOLLAReval] = ACTIONS(1609), - [anon_sym_DOLLARis_const] = ACTIONS(1609), - [anon_sym_DOLLARsizeof] = ACTIONS(1609), - [anon_sym_DOLLARstringify] = ACTIONS(1609), - [anon_sym_DOLLARappend] = ACTIONS(1609), - [anon_sym_DOLLARconcat] = ACTIONS(1609), - [anon_sym_DOLLARdefined] = ACTIONS(1609), - [anon_sym_DOLLARembed] = ACTIONS(1609), - [anon_sym_DOLLARand] = ACTIONS(1609), - [anon_sym_DOLLARor] = ACTIONS(1609), - [anon_sym_DOLLARfeature] = ACTIONS(1609), - [anon_sym_DOLLARassignable] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_typeid] = ACTIONS(1609), - [anon_sym_LBRACE_PIPE] = ACTIONS(1611), - [anon_sym_void] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_ichar] = ACTIONS(1609), - [anon_sym_short] = ACTIONS(1609), - [anon_sym_ushort] = ACTIONS(1609), - [anon_sym_uint] = ACTIONS(1609), - [anon_sym_long] = ACTIONS(1609), - [anon_sym_ulong] = ACTIONS(1609), - [anon_sym_int128] = ACTIONS(1609), - [anon_sym_uint128] = ACTIONS(1609), - [anon_sym_float] = ACTIONS(1609), - [anon_sym_double] = ACTIONS(1609), - [anon_sym_float16] = ACTIONS(1609), - [anon_sym_bfloat16] = ACTIONS(1609), - [anon_sym_float128] = ACTIONS(1609), - [anon_sym_iptr] = ACTIONS(1609), - [anon_sym_uptr] = ACTIONS(1609), - [anon_sym_isz] = ACTIONS(1609), - [anon_sym_usz] = ACTIONS(1609), - [anon_sym_anyfault] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1609), - [anon_sym_DOLLARtypeof] = ACTIONS(1609), - [anon_sym_DOLLARtypefrom] = ACTIONS(1609), - [anon_sym_DOLLARevaltype] = ACTIONS(1609), - [anon_sym_DOLLARvatype] = ACTIONS(1609), - [sym_real_literal] = ACTIONS(1611), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARendforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, - [748] = { - [sym_line_comment] = STATE(748), - [sym_doc_comment] = STATE(748), - [sym_block_comment] = STATE(748), + [725] = { + [sym_line_comment] = STATE(725), + [sym_doc_comment] = STATE(725), + [sym_block_comment] = STATE(725), [sym_ident] = ACTIONS(1625), [sym_integer_literal] = ACTIONS(1627), [anon_sym_SQUOTE] = ACTIONS(1627), @@ -111721,10 +108991,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1625), [anon_sym_DOLLARecho] = ACTIONS(1625), [anon_sym_DOLLARif] = ACTIONS(1625), - [anon_sym_DOLLARendif] = ACTIONS(1625), [anon_sym_DOLLARswitch] = ACTIONS(1625), [anon_sym_DOLLARfor] = ACTIONS(1625), [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARendforeach] = ACTIONS(1625), [anon_sym_DOLLARalignof] = ACTIONS(1625), [anon_sym_DOLLARextnameof] = ACTIONS(1625), [anon_sym_DOLLARnameof] = ACTIONS(1625), @@ -111784,355 +109054,930 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1625), [sym_real_literal] = ACTIONS(1627), }, - [749] = { - [sym_line_comment] = STATE(749), - [sym_doc_comment] = STATE(749), - [sym_block_comment] = STATE(749), - [sym_ident] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1651), - [sym_bytes_literal] = ACTIONS(1651), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1649), - [sym_at_ident] = ACTIONS(1651), - [sym_hash_ident] = ACTIONS(1651), - [sym_type_ident] = ACTIONS(1651), - [sym_ct_type_ident] = ACTIONS(1651), - [sym_const_ident] = ACTIONS(1649), - [sym_builtin] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_tlocal] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_var] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_nextcase] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_foreach] = ACTIONS(1649), - [anon_sym_foreach_r] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_DOLLARassert] = ACTIONS(1649), - [anon_sym_DOLLARerror] = ACTIONS(1649), - [anon_sym_DOLLARecho] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_DOLLARendif] = ACTIONS(1649), - [anon_sym_DOLLARswitch] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_DOLLARforeach] = ACTIONS(1649), - [anon_sym_DOLLARalignof] = ACTIONS(1649), - [anon_sym_DOLLARextnameof] = ACTIONS(1649), - [anon_sym_DOLLARnameof] = ACTIONS(1649), - [anon_sym_DOLLARoffsetof] = ACTIONS(1649), - [anon_sym_DOLLARqnameof] = ACTIONS(1649), - [anon_sym_DOLLARvaconst] = ACTIONS(1649), - [anon_sym_DOLLARvaarg] = ACTIONS(1649), - [anon_sym_DOLLARvaref] = ACTIONS(1649), - [anon_sym_DOLLARvaexpr] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [anon_sym_DOLLARvacount] = ACTIONS(1649), - [anon_sym_DOLLAReval] = ACTIONS(1649), - [anon_sym_DOLLARis_const] = ACTIONS(1649), - [anon_sym_DOLLARsizeof] = ACTIONS(1649), - [anon_sym_DOLLARstringify] = ACTIONS(1649), - [anon_sym_DOLLARappend] = ACTIONS(1649), - [anon_sym_DOLLARconcat] = ACTIONS(1649), - [anon_sym_DOLLARdefined] = ACTIONS(1649), - [anon_sym_DOLLARembed] = ACTIONS(1649), - [anon_sym_DOLLARand] = ACTIONS(1649), - [anon_sym_DOLLARor] = ACTIONS(1649), - [anon_sym_DOLLARfeature] = ACTIONS(1649), - [anon_sym_DOLLARassignable] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_typeid] = ACTIONS(1649), - [anon_sym_LBRACE_PIPE] = ACTIONS(1651), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_ichar] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [anon_sym_ushort] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_ulong] = ACTIONS(1649), - [anon_sym_int128] = ACTIONS(1649), - [anon_sym_uint128] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_double] = ACTIONS(1649), - [anon_sym_float16] = ACTIONS(1649), - [anon_sym_bfloat16] = ACTIONS(1649), - [anon_sym_float128] = ACTIONS(1649), - [anon_sym_iptr] = ACTIONS(1649), - [anon_sym_uptr] = ACTIONS(1649), - [anon_sym_isz] = ACTIONS(1649), - [anon_sym_usz] = ACTIONS(1649), - [anon_sym_anyfault] = ACTIONS(1649), - [anon_sym_any] = ACTIONS(1649), - [anon_sym_DOLLARtypeof] = ACTIONS(1649), - [anon_sym_DOLLARtypefrom] = ACTIONS(1649), - [anon_sym_DOLLARevaltype] = ACTIONS(1649), - [anon_sym_DOLLARvatype] = ACTIONS(1649), - [sym_real_literal] = ACTIONS(1651), + [726] = { + [sym_line_comment] = STATE(726), + [sym_doc_comment] = STATE(726), + [sym_block_comment] = STATE(726), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARendforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, - [750] = { - [sym_line_comment] = STATE(750), - [sym_doc_comment] = STATE(750), - [sym_block_comment] = STATE(750), - [sym_ident] = ACTIONS(1403), - [sym_integer_literal] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1405), - [anon_sym_BQUOTE] = ACTIONS(1405), - [sym_bytes_literal] = ACTIONS(1405), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1403), - [sym_at_ident] = ACTIONS(1405), - [sym_hash_ident] = ACTIONS(1405), - [sym_type_ident] = ACTIONS(1405), - [sym_ct_type_ident] = ACTIONS(1405), - [sym_const_ident] = ACTIONS(1403), - [sym_builtin] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_tlocal] = ACTIONS(1403), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_var] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_defer] = ACTIONS(1403), - [anon_sym_assert] = ACTIONS(1403), - [anon_sym_nextcase] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_foreach] = ACTIONS(1403), - [anon_sym_foreach_r] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_int] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_asm] = ACTIONS(1403), - [anon_sym_DOLLARassert] = ACTIONS(1403), - [anon_sym_DOLLARerror] = ACTIONS(1403), - [anon_sym_DOLLARecho] = ACTIONS(1403), - [anon_sym_DOLLARif] = ACTIONS(1403), - [anon_sym_DOLLARendif] = ACTIONS(1403), - [anon_sym_DOLLARswitch] = ACTIONS(1403), - [anon_sym_DOLLARfor] = ACTIONS(1403), - [anon_sym_DOLLARforeach] = ACTIONS(1403), - [anon_sym_DOLLARalignof] = ACTIONS(1403), - [anon_sym_DOLLARextnameof] = ACTIONS(1403), - [anon_sym_DOLLARnameof] = ACTIONS(1403), - [anon_sym_DOLLARoffsetof] = ACTIONS(1403), - [anon_sym_DOLLARqnameof] = ACTIONS(1403), - [anon_sym_DOLLARvaconst] = ACTIONS(1403), - [anon_sym_DOLLARvaarg] = ACTIONS(1403), - [anon_sym_DOLLARvaref] = ACTIONS(1403), - [anon_sym_DOLLARvaexpr] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1403), - [anon_sym_false] = ACTIONS(1403), - [anon_sym_null] = ACTIONS(1403), - [anon_sym_DOLLARvacount] = ACTIONS(1403), - [anon_sym_DOLLAReval] = ACTIONS(1403), - [anon_sym_DOLLARis_const] = ACTIONS(1403), - [anon_sym_DOLLARsizeof] = ACTIONS(1403), - [anon_sym_DOLLARstringify] = ACTIONS(1403), - [anon_sym_DOLLARappend] = ACTIONS(1403), - [anon_sym_DOLLARconcat] = ACTIONS(1403), - [anon_sym_DOLLARdefined] = ACTIONS(1403), - [anon_sym_DOLLARembed] = ACTIONS(1403), - [anon_sym_DOLLARand] = ACTIONS(1403), - [anon_sym_DOLLARor] = ACTIONS(1403), - [anon_sym_DOLLARfeature] = ACTIONS(1403), - [anon_sym_DOLLARassignable] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1405), - [anon_sym_TILDE] = ACTIONS(1405), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1405), - [anon_sym_typeid] = ACTIONS(1403), - [anon_sym_LBRACE_PIPE] = ACTIONS(1405), - [anon_sym_void] = ACTIONS(1403), - [anon_sym_bool] = ACTIONS(1403), - [anon_sym_char] = ACTIONS(1403), - [anon_sym_ichar] = ACTIONS(1403), - [anon_sym_short] = ACTIONS(1403), - [anon_sym_ushort] = ACTIONS(1403), - [anon_sym_uint] = ACTIONS(1403), - [anon_sym_long] = ACTIONS(1403), - [anon_sym_ulong] = ACTIONS(1403), - [anon_sym_int128] = ACTIONS(1403), - [anon_sym_uint128] = ACTIONS(1403), - [anon_sym_float] = ACTIONS(1403), - [anon_sym_double] = ACTIONS(1403), - [anon_sym_float16] = ACTIONS(1403), - [anon_sym_bfloat16] = ACTIONS(1403), - [anon_sym_float128] = ACTIONS(1403), - [anon_sym_iptr] = ACTIONS(1403), - [anon_sym_uptr] = ACTIONS(1403), - [anon_sym_isz] = ACTIONS(1403), - [anon_sym_usz] = ACTIONS(1403), - [anon_sym_anyfault] = ACTIONS(1403), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_DOLLARtypeof] = ACTIONS(1403), - [anon_sym_DOLLARtypefrom] = ACTIONS(1403), - [anon_sym_DOLLARevaltype] = ACTIONS(1403), - [anon_sym_DOLLARvatype] = ACTIONS(1403), - [sym_real_literal] = ACTIONS(1405), + [727] = { + [sym_line_comment] = STATE(727), + [sym_doc_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARendif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), + }, + [728] = { + [sym_line_comment] = STATE(728), + [sym_doc_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARendif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), + }, + [729] = { + [sym_line_comment] = STATE(729), + [sym_doc_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARendif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), + }, + [730] = { + [sym_line_comment] = STATE(730), + [sym_doc_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARendif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), + }, + [731] = { + [sym_line_comment] = STATE(731), + [sym_doc_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARendif] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), + }, + [732] = { + [sym_line_comment] = STATE(732), + [sym_doc_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARendif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, - [751] = { - [sym_line_comment] = STATE(751), - [sym_doc_comment] = STATE(751), - [sym_block_comment] = STATE(751), - [sym_ident] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [anon_sym_BQUOTE] = ACTIONS(1527), - [sym_bytes_literal] = ACTIONS(1527), + [733] = { + [sym_line_comment] = STATE(733), + [sym_doc_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1525), - [sym_at_ident] = ACTIONS(1527), - [sym_hash_ident] = ACTIONS(1527), - [sym_type_ident] = ACTIONS(1527), - [sym_ct_type_ident] = ACTIONS(1527), - [sym_const_ident] = ACTIONS(1525), - [sym_builtin] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_tlocal] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_fn] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_var] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_defer] = ACTIONS(1525), - [anon_sym_assert] = ACTIONS(1525), - [anon_sym_nextcase] = ACTIONS(1525), - [anon_sym_switch] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_foreach] = ACTIONS(1525), - [anon_sym_foreach_r] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_int] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym_DOLLARassert] = ACTIONS(1525), - [anon_sym_DOLLARerror] = ACTIONS(1525), - [anon_sym_DOLLARecho] = ACTIONS(1525), - [anon_sym_DOLLARif] = ACTIONS(1525), - [anon_sym_DOLLARendif] = ACTIONS(1525), - [anon_sym_DOLLARswitch] = ACTIONS(1525), - [anon_sym_DOLLARfor] = ACTIONS(1525), - [anon_sym_DOLLARforeach] = ACTIONS(1525), - [anon_sym_DOLLARalignof] = ACTIONS(1525), - [anon_sym_DOLLARextnameof] = ACTIONS(1525), - [anon_sym_DOLLARnameof] = ACTIONS(1525), - [anon_sym_DOLLARoffsetof] = ACTIONS(1525), - [anon_sym_DOLLARqnameof] = ACTIONS(1525), - [anon_sym_DOLLARvaconst] = ACTIONS(1525), - [anon_sym_DOLLARvaarg] = ACTIONS(1525), - [anon_sym_DOLLARvaref] = ACTIONS(1525), - [anon_sym_DOLLARvaexpr] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1525), - [anon_sym_false] = ACTIONS(1525), - [anon_sym_null] = ACTIONS(1525), - [anon_sym_DOLLARvacount] = ACTIONS(1525), - [anon_sym_DOLLAReval] = ACTIONS(1525), - [anon_sym_DOLLARis_const] = ACTIONS(1525), - [anon_sym_DOLLARsizeof] = ACTIONS(1525), - [anon_sym_DOLLARstringify] = ACTIONS(1525), - [anon_sym_DOLLARappend] = ACTIONS(1525), - [anon_sym_DOLLARconcat] = ACTIONS(1525), - [anon_sym_DOLLARdefined] = ACTIONS(1525), - [anon_sym_DOLLARembed] = ACTIONS(1525), - [anon_sym_DOLLARand] = ACTIONS(1525), - [anon_sym_DOLLARor] = ACTIONS(1525), - [anon_sym_DOLLARfeature] = ACTIONS(1525), - [anon_sym_DOLLARassignable] = ACTIONS(1525), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_typeid] = ACTIONS(1525), - [anon_sym_LBRACE_PIPE] = ACTIONS(1527), - [anon_sym_void] = ACTIONS(1525), - [anon_sym_bool] = ACTIONS(1525), - [anon_sym_char] = ACTIONS(1525), - [anon_sym_ichar] = ACTIONS(1525), - [anon_sym_short] = ACTIONS(1525), - [anon_sym_ushort] = ACTIONS(1525), - [anon_sym_uint] = ACTIONS(1525), - [anon_sym_long] = ACTIONS(1525), - [anon_sym_ulong] = ACTIONS(1525), - [anon_sym_int128] = ACTIONS(1525), - [anon_sym_uint128] = ACTIONS(1525), - [anon_sym_float] = ACTIONS(1525), - [anon_sym_double] = ACTIONS(1525), - [anon_sym_float16] = ACTIONS(1525), - [anon_sym_bfloat16] = ACTIONS(1525), - [anon_sym_float128] = ACTIONS(1525), - [anon_sym_iptr] = ACTIONS(1525), - [anon_sym_uptr] = ACTIONS(1525), - [anon_sym_isz] = ACTIONS(1525), - [anon_sym_usz] = ACTIONS(1525), - [anon_sym_anyfault] = ACTIONS(1525), - [anon_sym_any] = ACTIONS(1525), - [anon_sym_DOLLARtypeof] = ACTIONS(1525), - [anon_sym_DOLLARtypefrom] = ACTIONS(1525), - [anon_sym_DOLLARevaltype] = ACTIONS(1525), - [anon_sym_DOLLARvatype] = ACTIONS(1525), - [sym_real_literal] = ACTIONS(1527), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARendif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, - [752] = { - [sym_line_comment] = STATE(752), - [sym_doc_comment] = STATE(752), - [sym_block_comment] = STATE(752), + [734] = { + [sym_line_comment] = STATE(734), + [sym_doc_comment] = STATE(734), + [sym_block_comment] = STATE(734), [sym_ident] = ACTIONS(1589), [sym_integer_literal] = ACTIONS(1591), [anon_sym_SQUOTE] = ACTIONS(1591), @@ -112244,125 +110089,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1589), [sym_real_literal] = ACTIONS(1591), }, - [753] = { - [sym_line_comment] = STATE(753), - [sym_doc_comment] = STATE(753), - [sym_block_comment] = STATE(753), - [sym_ident] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1365), - [sym_bytes_literal] = ACTIONS(1365), + [735] = { + [sym_line_comment] = STATE(735), + [sym_doc_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARendforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), + }, + [736] = { + [sym_line_comment] = STATE(736), + [sym_doc_comment] = STATE(736), + [sym_block_comment] = STATE(736), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARendforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), + }, + [737] = { + [sym_line_comment] = STATE(737), + [sym_doc_comment] = STATE(737), + [sym_block_comment] = STATE(737), + [sym_ident] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_bytes_literal] = ACTIONS(1643), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1363), - [sym_at_ident] = ACTIONS(1365), - [sym_hash_ident] = ACTIONS(1365), - [sym_type_ident] = ACTIONS(1365), - [sym_ct_type_ident] = ACTIONS(1365), - [sym_const_ident] = ACTIONS(1363), - [sym_builtin] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_tlocal] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_var] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_defer] = ACTIONS(1363), - [anon_sym_assert] = ACTIONS(1363), - [anon_sym_nextcase] = ACTIONS(1363), - [anon_sym_switch] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_foreach] = ACTIONS(1363), - [anon_sym_foreach_r] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_do] = ACTIONS(1363), - [anon_sym_int] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_asm] = ACTIONS(1363), - [anon_sym_DOLLARassert] = ACTIONS(1363), - [anon_sym_DOLLARerror] = ACTIONS(1363), - [anon_sym_DOLLARecho] = ACTIONS(1363), - [anon_sym_DOLLARif] = ACTIONS(1363), - [anon_sym_DOLLARendif] = ACTIONS(1363), - [anon_sym_DOLLARswitch] = ACTIONS(1363), - [anon_sym_DOLLARfor] = ACTIONS(1363), - [anon_sym_DOLLARforeach] = ACTIONS(1363), - [anon_sym_DOLLARalignof] = ACTIONS(1363), - [anon_sym_DOLLARextnameof] = ACTIONS(1363), - [anon_sym_DOLLARnameof] = ACTIONS(1363), - [anon_sym_DOLLARoffsetof] = ACTIONS(1363), - [anon_sym_DOLLARqnameof] = ACTIONS(1363), - [anon_sym_DOLLARvaconst] = ACTIONS(1363), - [anon_sym_DOLLARvaarg] = ACTIONS(1363), - [anon_sym_DOLLARvaref] = ACTIONS(1363), - [anon_sym_DOLLARvaexpr] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_null] = ACTIONS(1363), - [anon_sym_DOLLARvacount] = ACTIONS(1363), - [anon_sym_DOLLAReval] = ACTIONS(1363), - [anon_sym_DOLLARis_const] = ACTIONS(1363), - [anon_sym_DOLLARsizeof] = ACTIONS(1363), - [anon_sym_DOLLARstringify] = ACTIONS(1363), - [anon_sym_DOLLARappend] = ACTIONS(1363), - [anon_sym_DOLLARconcat] = ACTIONS(1363), - [anon_sym_DOLLARdefined] = ACTIONS(1363), - [anon_sym_DOLLARembed] = ACTIONS(1363), - [anon_sym_DOLLARand] = ACTIONS(1363), - [anon_sym_DOLLARor] = ACTIONS(1363), - [anon_sym_DOLLARfeature] = ACTIONS(1363), - [anon_sym_DOLLARassignable] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_typeid] = ACTIONS(1363), - [anon_sym_LBRACE_PIPE] = ACTIONS(1365), - [anon_sym_void] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_ichar] = ACTIONS(1363), - [anon_sym_short] = ACTIONS(1363), - [anon_sym_ushort] = ACTIONS(1363), - [anon_sym_uint] = ACTIONS(1363), - [anon_sym_long] = ACTIONS(1363), - [anon_sym_ulong] = ACTIONS(1363), - [anon_sym_int128] = ACTIONS(1363), - [anon_sym_uint128] = ACTIONS(1363), - [anon_sym_float] = ACTIONS(1363), - [anon_sym_double] = ACTIONS(1363), - [anon_sym_float16] = ACTIONS(1363), - [anon_sym_bfloat16] = ACTIONS(1363), - [anon_sym_float128] = ACTIONS(1363), - [anon_sym_iptr] = ACTIONS(1363), - [anon_sym_uptr] = ACTIONS(1363), - [anon_sym_isz] = ACTIONS(1363), - [anon_sym_usz] = ACTIONS(1363), - [anon_sym_anyfault] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1363), - [anon_sym_DOLLARtypeof] = ACTIONS(1363), - [anon_sym_DOLLARtypefrom] = ACTIONS(1363), - [anon_sym_DOLLARevaltype] = ACTIONS(1363), - [anon_sym_DOLLARvatype] = ACTIONS(1363), - [sym_real_literal] = ACTIONS(1365), + [sym_ct_ident] = ACTIONS(1641), + [sym_at_ident] = ACTIONS(1643), + [sym_hash_ident] = ACTIONS(1643), + [sym_type_ident] = ACTIONS(1643), + [sym_ct_type_ident] = ACTIONS(1643), + [sym_const_ident] = ACTIONS(1641), + [sym_builtin] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_tlocal] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_var] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_defer] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_nextcase] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_foreach] = ACTIONS(1641), + [anon_sym_foreach_r] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym_DOLLARassert] = ACTIONS(1641), + [anon_sym_DOLLARerror] = ACTIONS(1641), + [anon_sym_DOLLARecho] = ACTIONS(1641), + [anon_sym_DOLLARif] = ACTIONS(1641), + [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARfor] = ACTIONS(1641), + [anon_sym_DOLLARforeach] = ACTIONS(1641), + [anon_sym_DOLLARendforeach] = ACTIONS(1641), + [anon_sym_DOLLARalignof] = ACTIONS(1641), + [anon_sym_DOLLARextnameof] = ACTIONS(1641), + [anon_sym_DOLLARnameof] = ACTIONS(1641), + [anon_sym_DOLLARoffsetof] = ACTIONS(1641), + [anon_sym_DOLLARqnameof] = ACTIONS(1641), + [anon_sym_DOLLARvaconst] = ACTIONS(1641), + [anon_sym_DOLLARvaarg] = ACTIONS(1641), + [anon_sym_DOLLARvaref] = ACTIONS(1641), + [anon_sym_DOLLARvaexpr] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_DOLLARvacount] = ACTIONS(1641), + [anon_sym_DOLLAReval] = ACTIONS(1641), + [anon_sym_DOLLARis_const] = ACTIONS(1641), + [anon_sym_DOLLARsizeof] = ACTIONS(1641), + [anon_sym_DOLLARstringify] = ACTIONS(1641), + [anon_sym_DOLLARappend] = ACTIONS(1641), + [anon_sym_DOLLARconcat] = ACTIONS(1641), + [anon_sym_DOLLARdefined] = ACTIONS(1641), + [anon_sym_DOLLARembed] = ACTIONS(1641), + [anon_sym_DOLLARand] = ACTIONS(1641), + [anon_sym_DOLLARor] = ACTIONS(1641), + [anon_sym_DOLLARfeature] = ACTIONS(1641), + [anon_sym_DOLLARassignable] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_typeid] = ACTIONS(1641), + [anon_sym_LBRACE_PIPE] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_ichar] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_ushort] = ACTIONS(1641), + [anon_sym_uint] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_ulong] = ACTIONS(1641), + [anon_sym_int128] = ACTIONS(1641), + [anon_sym_uint128] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_float16] = ACTIONS(1641), + [anon_sym_bfloat16] = ACTIONS(1641), + [anon_sym_float128] = ACTIONS(1641), + [anon_sym_iptr] = ACTIONS(1641), + [anon_sym_uptr] = ACTIONS(1641), + [anon_sym_isz] = ACTIONS(1641), + [anon_sym_usz] = ACTIONS(1641), + [anon_sym_anyfault] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_DOLLARtypeof] = ACTIONS(1641), + [anon_sym_DOLLARtypefrom] = ACTIONS(1641), + [anon_sym_DOLLARevaltype] = ACTIONS(1641), + [anon_sym_DOLLARvatype] = ACTIONS(1641), + [sym_real_literal] = ACTIONS(1643), }, - [754] = { - [sym_line_comment] = STATE(754), - [sym_doc_comment] = STATE(754), - [sym_block_comment] = STATE(754), + [738] = { + [sym_line_comment] = STATE(738), + [sym_doc_comment] = STATE(738), + [sym_block_comment] = STATE(738), [sym_ident] = ACTIONS(1645), [sym_integer_literal] = ACTIONS(1647), [anon_sym_SQUOTE] = ACTIONS(1647), @@ -112411,10 +110486,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1645), [anon_sym_DOLLARecho] = ACTIONS(1645), [anon_sym_DOLLARif] = ACTIONS(1645), - [anon_sym_DOLLARendif] = ACTIONS(1645), [anon_sym_DOLLARswitch] = ACTIONS(1645), [anon_sym_DOLLARfor] = ACTIONS(1645), [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARendforeach] = ACTIONS(1645), [anon_sym_DOLLARalignof] = ACTIONS(1645), [anon_sym_DOLLARextnameof] = ACTIONS(1645), [anon_sym_DOLLARnameof] = ACTIONS(1645), @@ -112448,1186 +110523,496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1647), [anon_sym_void] = ACTIONS(1645), [anon_sym_bool] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [anon_sym_ichar] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [anon_sym_ushort] = ACTIONS(1645), - [anon_sym_uint] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_ulong] = ACTIONS(1645), - [anon_sym_int128] = ACTIONS(1645), - [anon_sym_uint128] = ACTIONS(1645), - [anon_sym_float] = ACTIONS(1645), - [anon_sym_double] = ACTIONS(1645), - [anon_sym_float16] = ACTIONS(1645), - [anon_sym_bfloat16] = ACTIONS(1645), - [anon_sym_float128] = ACTIONS(1645), - [anon_sym_iptr] = ACTIONS(1645), - [anon_sym_uptr] = ACTIONS(1645), - [anon_sym_isz] = ACTIONS(1645), - [anon_sym_usz] = ACTIONS(1645), - [anon_sym_anyfault] = ACTIONS(1645), - [anon_sym_any] = ACTIONS(1645), - [anon_sym_DOLLARtypeof] = ACTIONS(1645), - [anon_sym_DOLLARtypefrom] = ACTIONS(1645), - [anon_sym_DOLLARevaltype] = ACTIONS(1645), - [anon_sym_DOLLARvatype] = ACTIONS(1645), - [sym_real_literal] = ACTIONS(1647), - }, - [755] = { - [sym_line_comment] = STATE(755), - [sym_doc_comment] = STATE(755), - [sym_block_comment] = STATE(755), - [sym_ident] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_bytes_literal] = ACTIONS(1571), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1569), - [sym_at_ident] = ACTIONS(1571), - [sym_hash_ident] = ACTIONS(1571), - [sym_type_ident] = ACTIONS(1571), - [sym_ct_type_ident] = ACTIONS(1571), - [sym_const_ident] = ACTIONS(1569), - [sym_builtin] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_tlocal] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_fn] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_var] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_defer] = ACTIONS(1569), - [anon_sym_assert] = ACTIONS(1569), - [anon_sym_nextcase] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_AMP_AMP] = ACTIONS(1571), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_foreach] = ACTIONS(1569), - [anon_sym_foreach_r] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_int] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_asm] = ACTIONS(1569), - [anon_sym_DOLLARassert] = ACTIONS(1569), - [anon_sym_DOLLARerror] = ACTIONS(1569), - [anon_sym_DOLLARecho] = ACTIONS(1569), - [anon_sym_DOLLARif] = ACTIONS(1569), - [anon_sym_DOLLARendif] = ACTIONS(1569), - [anon_sym_DOLLARswitch] = ACTIONS(1569), - [anon_sym_DOLLARfor] = ACTIONS(1569), - [anon_sym_DOLLARforeach] = ACTIONS(1569), - [anon_sym_DOLLARalignof] = ACTIONS(1569), - [anon_sym_DOLLARextnameof] = ACTIONS(1569), - [anon_sym_DOLLARnameof] = ACTIONS(1569), - [anon_sym_DOLLARoffsetof] = ACTIONS(1569), - [anon_sym_DOLLARqnameof] = ACTIONS(1569), - [anon_sym_DOLLARvaconst] = ACTIONS(1569), - [anon_sym_DOLLARvaarg] = ACTIONS(1569), - [anon_sym_DOLLARvaref] = ACTIONS(1569), - [anon_sym_DOLLARvaexpr] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [anon_sym_null] = ACTIONS(1569), - [anon_sym_DOLLARvacount] = ACTIONS(1569), - [anon_sym_DOLLAReval] = ACTIONS(1569), - [anon_sym_DOLLARis_const] = ACTIONS(1569), - [anon_sym_DOLLARsizeof] = ACTIONS(1569), - [anon_sym_DOLLARstringify] = ACTIONS(1569), - [anon_sym_DOLLARappend] = ACTIONS(1569), - [anon_sym_DOLLARconcat] = ACTIONS(1569), - [anon_sym_DOLLARdefined] = ACTIONS(1569), - [anon_sym_DOLLARembed] = ACTIONS(1569), - [anon_sym_DOLLARand] = ACTIONS(1569), - [anon_sym_DOLLARor] = ACTIONS(1569), - [anon_sym_DOLLARfeature] = ACTIONS(1569), - [anon_sym_DOLLARassignable] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_typeid] = ACTIONS(1569), - [anon_sym_LBRACE_PIPE] = ACTIONS(1571), - [anon_sym_void] = ACTIONS(1569), - [anon_sym_bool] = ACTIONS(1569), - [anon_sym_char] = ACTIONS(1569), - [anon_sym_ichar] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [anon_sym_ushort] = ACTIONS(1569), - [anon_sym_uint] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_ulong] = ACTIONS(1569), - [anon_sym_int128] = ACTIONS(1569), - [anon_sym_uint128] = ACTIONS(1569), - [anon_sym_float] = ACTIONS(1569), - [anon_sym_double] = ACTIONS(1569), - [anon_sym_float16] = ACTIONS(1569), - [anon_sym_bfloat16] = ACTIONS(1569), - [anon_sym_float128] = ACTIONS(1569), - [anon_sym_iptr] = ACTIONS(1569), - [anon_sym_uptr] = ACTIONS(1569), - [anon_sym_isz] = ACTIONS(1569), - [anon_sym_usz] = ACTIONS(1569), - [anon_sym_anyfault] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_DOLLARtypeof] = ACTIONS(1569), - [anon_sym_DOLLARtypefrom] = ACTIONS(1569), - [anon_sym_DOLLARevaltype] = ACTIONS(1569), - [anon_sym_DOLLARvatype] = ACTIONS(1569), - [sym_real_literal] = ACTIONS(1571), - }, - [756] = { - [sym_line_comment] = STATE(756), - [sym_doc_comment] = STATE(756), - [sym_block_comment] = STATE(756), - [sym_ident] = ACTIONS(1629), - [sym_integer_literal] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [anon_sym_BQUOTE] = ACTIONS(1631), - [sym_bytes_literal] = ACTIONS(1631), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1629), - [sym_at_ident] = ACTIONS(1631), - [sym_hash_ident] = ACTIONS(1631), - [sym_type_ident] = ACTIONS(1631), - [sym_ct_type_ident] = ACTIONS(1631), - [sym_const_ident] = ACTIONS(1629), - [sym_builtin] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_tlocal] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_fn] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_var] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_defer] = ACTIONS(1629), - [anon_sym_assert] = ACTIONS(1629), - [anon_sym_nextcase] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1631), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_foreach] = ACTIONS(1629), - [anon_sym_foreach_r] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_int] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_asm] = ACTIONS(1629), - [anon_sym_DOLLARassert] = ACTIONS(1629), - [anon_sym_DOLLARerror] = ACTIONS(1629), - [anon_sym_DOLLARecho] = ACTIONS(1629), - [anon_sym_DOLLARif] = ACTIONS(1629), - [anon_sym_DOLLARendif] = ACTIONS(1629), - [anon_sym_DOLLARswitch] = ACTIONS(1629), - [anon_sym_DOLLARfor] = ACTIONS(1629), - [anon_sym_DOLLARforeach] = ACTIONS(1629), - [anon_sym_DOLLARalignof] = ACTIONS(1629), - [anon_sym_DOLLARextnameof] = ACTIONS(1629), - [anon_sym_DOLLARnameof] = ACTIONS(1629), - [anon_sym_DOLLARoffsetof] = ACTIONS(1629), - [anon_sym_DOLLARqnameof] = ACTIONS(1629), - [anon_sym_DOLLARvaconst] = ACTIONS(1629), - [anon_sym_DOLLARvaarg] = ACTIONS(1629), - [anon_sym_DOLLARvaref] = ACTIONS(1629), - [anon_sym_DOLLARvaexpr] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_null] = ACTIONS(1629), - [anon_sym_DOLLARvacount] = ACTIONS(1629), - [anon_sym_DOLLAReval] = ACTIONS(1629), - [anon_sym_DOLLARis_const] = ACTIONS(1629), - [anon_sym_DOLLARsizeof] = ACTIONS(1629), - [anon_sym_DOLLARstringify] = ACTIONS(1629), - [anon_sym_DOLLARappend] = ACTIONS(1629), - [anon_sym_DOLLARconcat] = ACTIONS(1629), - [anon_sym_DOLLARdefined] = ACTIONS(1629), - [anon_sym_DOLLARembed] = ACTIONS(1629), - [anon_sym_DOLLARand] = ACTIONS(1629), - [anon_sym_DOLLARor] = ACTIONS(1629), - [anon_sym_DOLLARfeature] = ACTIONS(1629), - [anon_sym_DOLLARassignable] = ACTIONS(1629), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_typeid] = ACTIONS(1629), - [anon_sym_LBRACE_PIPE] = ACTIONS(1631), - [anon_sym_void] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_char] = ACTIONS(1629), - [anon_sym_ichar] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [anon_sym_ushort] = ACTIONS(1629), - [anon_sym_uint] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_ulong] = ACTIONS(1629), - [anon_sym_int128] = ACTIONS(1629), - [anon_sym_uint128] = ACTIONS(1629), - [anon_sym_float] = ACTIONS(1629), - [anon_sym_double] = ACTIONS(1629), - [anon_sym_float16] = ACTIONS(1629), - [anon_sym_bfloat16] = ACTIONS(1629), - [anon_sym_float128] = ACTIONS(1629), - [anon_sym_iptr] = ACTIONS(1629), - [anon_sym_uptr] = ACTIONS(1629), - [anon_sym_isz] = ACTIONS(1629), - [anon_sym_usz] = ACTIONS(1629), - [anon_sym_anyfault] = ACTIONS(1629), - [anon_sym_any] = ACTIONS(1629), - [anon_sym_DOLLARtypeof] = ACTIONS(1629), - [anon_sym_DOLLARtypefrom] = ACTIONS(1629), - [anon_sym_DOLLARevaltype] = ACTIONS(1629), - [anon_sym_DOLLARvatype] = ACTIONS(1629), - [sym_real_literal] = ACTIONS(1631), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), }, - [757] = { - [sym_line_comment] = STATE(757), - [sym_doc_comment] = STATE(757), - [sym_block_comment] = STATE(757), - [sym_ident] = ACTIONS(1633), - [sym_integer_literal] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_BQUOTE] = ACTIONS(1635), - [sym_bytes_literal] = ACTIONS(1635), + [739] = { + [sym_line_comment] = STATE(739), + [sym_doc_comment] = STATE(739), + [sym_block_comment] = STATE(739), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1633), - [sym_at_ident] = ACTIONS(1635), - [sym_hash_ident] = ACTIONS(1635), - [sym_type_ident] = ACTIONS(1635), - [sym_ct_type_ident] = ACTIONS(1635), - [sym_const_ident] = ACTIONS(1633), - [sym_builtin] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_tlocal] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_fn] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_var] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_defer] = ACTIONS(1633), - [anon_sym_assert] = ACTIONS(1633), - [anon_sym_nextcase] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_AMP_AMP] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_foreach] = ACTIONS(1633), - [anon_sym_foreach_r] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_int] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1633), - [anon_sym_DOLLARassert] = ACTIONS(1633), - [anon_sym_DOLLARerror] = ACTIONS(1633), - [anon_sym_DOLLARecho] = ACTIONS(1633), - [anon_sym_DOLLARif] = ACTIONS(1633), - [anon_sym_DOLLARendif] = ACTIONS(1633), - [anon_sym_DOLLARswitch] = ACTIONS(1633), - [anon_sym_DOLLARfor] = ACTIONS(1633), - [anon_sym_DOLLARforeach] = ACTIONS(1633), - [anon_sym_DOLLARalignof] = ACTIONS(1633), - [anon_sym_DOLLARextnameof] = ACTIONS(1633), - [anon_sym_DOLLARnameof] = ACTIONS(1633), - [anon_sym_DOLLARoffsetof] = ACTIONS(1633), - [anon_sym_DOLLARqnameof] = ACTIONS(1633), - [anon_sym_DOLLARvaconst] = ACTIONS(1633), - [anon_sym_DOLLARvaarg] = ACTIONS(1633), - [anon_sym_DOLLARvaref] = ACTIONS(1633), - [anon_sym_DOLLARvaexpr] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(1633), - [anon_sym_false] = ACTIONS(1633), - [anon_sym_null] = ACTIONS(1633), - [anon_sym_DOLLARvacount] = ACTIONS(1633), - [anon_sym_DOLLAReval] = ACTIONS(1633), - [anon_sym_DOLLARis_const] = ACTIONS(1633), - [anon_sym_DOLLARsizeof] = ACTIONS(1633), - [anon_sym_DOLLARstringify] = ACTIONS(1633), - [anon_sym_DOLLARappend] = ACTIONS(1633), - [anon_sym_DOLLARconcat] = ACTIONS(1633), - [anon_sym_DOLLARdefined] = ACTIONS(1633), - [anon_sym_DOLLARembed] = ACTIONS(1633), - [anon_sym_DOLLARand] = ACTIONS(1633), - [anon_sym_DOLLARor] = ACTIONS(1633), - [anon_sym_DOLLARfeature] = ACTIONS(1633), - [anon_sym_DOLLARassignable] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_typeid] = ACTIONS(1633), - [anon_sym_LBRACE_PIPE] = ACTIONS(1635), - [anon_sym_void] = ACTIONS(1633), - [anon_sym_bool] = ACTIONS(1633), - [anon_sym_char] = ACTIONS(1633), - [anon_sym_ichar] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [anon_sym_ushort] = ACTIONS(1633), - [anon_sym_uint] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_ulong] = ACTIONS(1633), - [anon_sym_int128] = ACTIONS(1633), - [anon_sym_uint128] = ACTIONS(1633), - [anon_sym_float] = ACTIONS(1633), - [anon_sym_double] = ACTIONS(1633), - [anon_sym_float16] = ACTIONS(1633), - [anon_sym_bfloat16] = ACTIONS(1633), - [anon_sym_float128] = ACTIONS(1633), - [anon_sym_iptr] = ACTIONS(1633), - [anon_sym_uptr] = ACTIONS(1633), - [anon_sym_isz] = ACTIONS(1633), - [anon_sym_usz] = ACTIONS(1633), - [anon_sym_anyfault] = ACTIONS(1633), - [anon_sym_any] = ACTIONS(1633), - [anon_sym_DOLLARtypeof] = ACTIONS(1633), - [anon_sym_DOLLARtypefrom] = ACTIONS(1633), - [anon_sym_DOLLARevaltype] = ACTIONS(1633), - [anon_sym_DOLLARvatype] = ACTIONS(1633), - [sym_real_literal] = ACTIONS(1635), - }, - [758] = { - [sym_line_comment] = STATE(758), - [sym_doc_comment] = STATE(758), - [sym_block_comment] = STATE(758), - [sym_ident] = ACTIONS(1387), - [sym_integer_literal] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [anon_sym_BQUOTE] = ACTIONS(1389), - [sym_bytes_literal] = ACTIONS(1389), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1387), - [sym_at_ident] = ACTIONS(1389), - [sym_hash_ident] = ACTIONS(1389), - [sym_type_ident] = ACTIONS(1389), - [sym_ct_type_ident] = ACTIONS(1389), - [sym_const_ident] = ACTIONS(1387), - [sym_builtin] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_tlocal] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_fn] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_var] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_defer] = ACTIONS(1387), - [anon_sym_assert] = ACTIONS(1387), - [anon_sym_nextcase] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_AMP_AMP] = ACTIONS(1389), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_foreach] = ACTIONS(1387), - [anon_sym_foreach_r] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_int] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_asm] = ACTIONS(1387), - [anon_sym_DOLLARassert] = ACTIONS(1387), - [anon_sym_DOLLARerror] = ACTIONS(1387), - [anon_sym_DOLLARecho] = ACTIONS(1387), - [anon_sym_DOLLARif] = ACTIONS(1387), - [anon_sym_DOLLARendif] = ACTIONS(1387), - [anon_sym_DOLLARswitch] = ACTIONS(1387), - [anon_sym_DOLLARfor] = ACTIONS(1387), - [anon_sym_DOLLARforeach] = ACTIONS(1387), - [anon_sym_DOLLARalignof] = ACTIONS(1387), - [anon_sym_DOLLARextnameof] = ACTIONS(1387), - [anon_sym_DOLLARnameof] = ACTIONS(1387), - [anon_sym_DOLLARoffsetof] = ACTIONS(1387), - [anon_sym_DOLLARqnameof] = ACTIONS(1387), - [anon_sym_DOLLARvaconst] = ACTIONS(1387), - [anon_sym_DOLLARvaarg] = ACTIONS(1387), - [anon_sym_DOLLARvaref] = ACTIONS(1387), - [anon_sym_DOLLARvaexpr] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_null] = ACTIONS(1387), - [anon_sym_DOLLARvacount] = ACTIONS(1387), - [anon_sym_DOLLAReval] = ACTIONS(1387), - [anon_sym_DOLLARis_const] = ACTIONS(1387), - [anon_sym_DOLLARsizeof] = ACTIONS(1387), - [anon_sym_DOLLARstringify] = ACTIONS(1387), - [anon_sym_DOLLARappend] = ACTIONS(1387), - [anon_sym_DOLLARconcat] = ACTIONS(1387), - [anon_sym_DOLLARdefined] = ACTIONS(1387), - [anon_sym_DOLLARembed] = ACTIONS(1387), - [anon_sym_DOLLARand] = ACTIONS(1387), - [anon_sym_DOLLARor] = ACTIONS(1387), - [anon_sym_DOLLARfeature] = ACTIONS(1387), - [anon_sym_DOLLARassignable] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_typeid] = ACTIONS(1387), - [anon_sym_LBRACE_PIPE] = ACTIONS(1389), - [anon_sym_void] = ACTIONS(1387), - [anon_sym_bool] = ACTIONS(1387), - [anon_sym_char] = ACTIONS(1387), - [anon_sym_ichar] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [anon_sym_ushort] = ACTIONS(1387), - [anon_sym_uint] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_ulong] = ACTIONS(1387), - [anon_sym_int128] = ACTIONS(1387), - [anon_sym_uint128] = ACTIONS(1387), - [anon_sym_float] = ACTIONS(1387), - [anon_sym_double] = ACTIONS(1387), - [anon_sym_float16] = ACTIONS(1387), - [anon_sym_bfloat16] = ACTIONS(1387), - [anon_sym_float128] = ACTIONS(1387), - [anon_sym_iptr] = ACTIONS(1387), - [anon_sym_uptr] = ACTIONS(1387), - [anon_sym_isz] = ACTIONS(1387), - [anon_sym_usz] = ACTIONS(1387), - [anon_sym_anyfault] = ACTIONS(1387), - [anon_sym_any] = ACTIONS(1387), - [anon_sym_DOLLARtypeof] = ACTIONS(1387), - [anon_sym_DOLLARtypefrom] = ACTIONS(1387), - [anon_sym_DOLLARevaltype] = ACTIONS(1387), - [anon_sym_DOLLARvatype] = ACTIONS(1387), - [sym_real_literal] = ACTIONS(1389), - }, - [759] = { - [sym_line_comment] = STATE(759), - [sym_doc_comment] = STATE(759), - [sym_block_comment] = STATE(759), - [sym_ident] = ACTIONS(1391), - [sym_integer_literal] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [anon_sym_BQUOTE] = ACTIONS(1393), - [sym_bytes_literal] = ACTIONS(1393), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1391), - [sym_at_ident] = ACTIONS(1393), - [sym_hash_ident] = ACTIONS(1393), - [sym_type_ident] = ACTIONS(1393), - [sym_ct_type_ident] = ACTIONS(1393), - [sym_const_ident] = ACTIONS(1391), - [sym_builtin] = ACTIONS(1393), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_tlocal] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_var] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_defer] = ACTIONS(1391), - [anon_sym_assert] = ACTIONS(1391), - [anon_sym_nextcase] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_foreach] = ACTIONS(1391), - [anon_sym_foreach_r] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_int] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_asm] = ACTIONS(1391), - [anon_sym_DOLLARassert] = ACTIONS(1391), - [anon_sym_DOLLARerror] = ACTIONS(1391), - [anon_sym_DOLLARecho] = ACTIONS(1391), - [anon_sym_DOLLARif] = ACTIONS(1391), - [anon_sym_DOLLARendif] = ACTIONS(1391), - [anon_sym_DOLLARswitch] = ACTIONS(1391), - [anon_sym_DOLLARfor] = ACTIONS(1391), - [anon_sym_DOLLARforeach] = ACTIONS(1391), - [anon_sym_DOLLARalignof] = ACTIONS(1391), - [anon_sym_DOLLARextnameof] = ACTIONS(1391), - [anon_sym_DOLLARnameof] = ACTIONS(1391), - [anon_sym_DOLLARoffsetof] = ACTIONS(1391), - [anon_sym_DOLLARqnameof] = ACTIONS(1391), - [anon_sym_DOLLARvaconst] = ACTIONS(1391), - [anon_sym_DOLLARvaarg] = ACTIONS(1391), - [anon_sym_DOLLARvaref] = ACTIONS(1391), - [anon_sym_DOLLARvaexpr] = ACTIONS(1391), - [anon_sym_true] = ACTIONS(1391), - [anon_sym_false] = ACTIONS(1391), - [anon_sym_null] = ACTIONS(1391), - [anon_sym_DOLLARvacount] = ACTIONS(1391), - [anon_sym_DOLLAReval] = ACTIONS(1391), - [anon_sym_DOLLARis_const] = ACTIONS(1391), - [anon_sym_DOLLARsizeof] = ACTIONS(1391), - [anon_sym_DOLLARstringify] = ACTIONS(1391), - [anon_sym_DOLLARappend] = ACTIONS(1391), - [anon_sym_DOLLARconcat] = ACTIONS(1391), - [anon_sym_DOLLARdefined] = ACTIONS(1391), - [anon_sym_DOLLARembed] = ACTIONS(1391), - [anon_sym_DOLLARand] = ACTIONS(1391), - [anon_sym_DOLLARor] = ACTIONS(1391), - [anon_sym_DOLLARfeature] = ACTIONS(1391), - [anon_sym_DOLLARassignable] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_typeid] = ACTIONS(1391), - [anon_sym_LBRACE_PIPE] = ACTIONS(1393), - [anon_sym_void] = ACTIONS(1391), - [anon_sym_bool] = ACTIONS(1391), - [anon_sym_char] = ACTIONS(1391), - [anon_sym_ichar] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [anon_sym_ushort] = ACTIONS(1391), - [anon_sym_uint] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_ulong] = ACTIONS(1391), - [anon_sym_int128] = ACTIONS(1391), - [anon_sym_uint128] = ACTIONS(1391), - [anon_sym_float] = ACTIONS(1391), - [anon_sym_double] = ACTIONS(1391), - [anon_sym_float16] = ACTIONS(1391), - [anon_sym_bfloat16] = ACTIONS(1391), - [anon_sym_float128] = ACTIONS(1391), - [anon_sym_iptr] = ACTIONS(1391), - [anon_sym_uptr] = ACTIONS(1391), - [anon_sym_isz] = ACTIONS(1391), - [anon_sym_usz] = ACTIONS(1391), - [anon_sym_anyfault] = ACTIONS(1391), - [anon_sym_any] = ACTIONS(1391), - [anon_sym_DOLLARtypeof] = ACTIONS(1391), - [anon_sym_DOLLARtypefrom] = ACTIONS(1391), - [anon_sym_DOLLARevaltype] = ACTIONS(1391), - [anon_sym_DOLLARvatype] = ACTIONS(1391), - [sym_real_literal] = ACTIONS(1393), - }, - [760] = { - [sym_line_comment] = STATE(760), - [sym_doc_comment] = STATE(760), - [sym_block_comment] = STATE(760), - [sym_ident] = ACTIONS(1395), - [sym_integer_literal] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [anon_sym_BQUOTE] = ACTIONS(1397), - [sym_bytes_literal] = ACTIONS(1397), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1395), - [sym_at_ident] = ACTIONS(1397), - [sym_hash_ident] = ACTIONS(1397), - [sym_type_ident] = ACTIONS(1397), - [sym_ct_type_ident] = ACTIONS(1397), - [sym_const_ident] = ACTIONS(1395), - [sym_builtin] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_tlocal] = ACTIONS(1395), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_var] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_defer] = ACTIONS(1395), - [anon_sym_assert] = ACTIONS(1395), - [anon_sym_nextcase] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_AMP_AMP] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_foreach] = ACTIONS(1395), - [anon_sym_foreach_r] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_int] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_asm] = ACTIONS(1395), - [anon_sym_DOLLARassert] = ACTIONS(1395), - [anon_sym_DOLLARerror] = ACTIONS(1395), - [anon_sym_DOLLARecho] = ACTIONS(1395), - [anon_sym_DOLLARif] = ACTIONS(1395), - [anon_sym_DOLLARendif] = ACTIONS(1395), - [anon_sym_DOLLARswitch] = ACTIONS(1395), - [anon_sym_DOLLARfor] = ACTIONS(1395), - [anon_sym_DOLLARforeach] = ACTIONS(1395), - [anon_sym_DOLLARalignof] = ACTIONS(1395), - [anon_sym_DOLLARextnameof] = ACTIONS(1395), - [anon_sym_DOLLARnameof] = ACTIONS(1395), - [anon_sym_DOLLARoffsetof] = ACTIONS(1395), - [anon_sym_DOLLARqnameof] = ACTIONS(1395), - [anon_sym_DOLLARvaconst] = ACTIONS(1395), - [anon_sym_DOLLARvaarg] = ACTIONS(1395), - [anon_sym_DOLLARvaref] = ACTIONS(1395), - [anon_sym_DOLLARvaexpr] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1395), - [anon_sym_false] = ACTIONS(1395), - [anon_sym_null] = ACTIONS(1395), - [anon_sym_DOLLARvacount] = ACTIONS(1395), - [anon_sym_DOLLAReval] = ACTIONS(1395), - [anon_sym_DOLLARis_const] = ACTIONS(1395), - [anon_sym_DOLLARsizeof] = ACTIONS(1395), - [anon_sym_DOLLARstringify] = ACTIONS(1395), - [anon_sym_DOLLARappend] = ACTIONS(1395), - [anon_sym_DOLLARconcat] = ACTIONS(1395), - [anon_sym_DOLLARdefined] = ACTIONS(1395), - [anon_sym_DOLLARembed] = ACTIONS(1395), - [anon_sym_DOLLARand] = ACTIONS(1395), - [anon_sym_DOLLARor] = ACTIONS(1395), - [anon_sym_DOLLARfeature] = ACTIONS(1395), - [anon_sym_DOLLARassignable] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_typeid] = ACTIONS(1395), - [anon_sym_LBRACE_PIPE] = ACTIONS(1397), - [anon_sym_void] = ACTIONS(1395), - [anon_sym_bool] = ACTIONS(1395), - [anon_sym_char] = ACTIONS(1395), - [anon_sym_ichar] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [anon_sym_ushort] = ACTIONS(1395), - [anon_sym_uint] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_ulong] = ACTIONS(1395), - [anon_sym_int128] = ACTIONS(1395), - [anon_sym_uint128] = ACTIONS(1395), - [anon_sym_float] = ACTIONS(1395), - [anon_sym_double] = ACTIONS(1395), - [anon_sym_float16] = ACTIONS(1395), - [anon_sym_bfloat16] = ACTIONS(1395), - [anon_sym_float128] = ACTIONS(1395), - [anon_sym_iptr] = ACTIONS(1395), - [anon_sym_uptr] = ACTIONS(1395), - [anon_sym_isz] = ACTIONS(1395), - [anon_sym_usz] = ACTIONS(1395), - [anon_sym_anyfault] = ACTIONS(1395), - [anon_sym_any] = ACTIONS(1395), - [anon_sym_DOLLARtypeof] = ACTIONS(1395), - [anon_sym_DOLLARtypefrom] = ACTIONS(1395), - [anon_sym_DOLLARevaltype] = ACTIONS(1395), - [anon_sym_DOLLARvatype] = ACTIONS(1395), - [sym_real_literal] = ACTIONS(1397), - }, - [761] = { - [sym_line_comment] = STATE(761), - [sym_doc_comment] = STATE(761), - [sym_block_comment] = STATE(761), - [sym_ident] = ACTIONS(1407), - [sym_integer_literal] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_DQUOTE] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1409), - [sym_bytes_literal] = ACTIONS(1409), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1407), - [sym_at_ident] = ACTIONS(1409), - [sym_hash_ident] = ACTIONS(1409), - [sym_type_ident] = ACTIONS(1409), - [sym_ct_type_ident] = ACTIONS(1409), - [sym_const_ident] = ACTIONS(1407), - [sym_builtin] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_tlocal] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1407), - [anon_sym_var] = ACTIONS(1407), - [anon_sym_return] = ACTIONS(1407), - [anon_sym_continue] = ACTIONS(1407), - [anon_sym_break] = ACTIONS(1407), - [anon_sym_defer] = ACTIONS(1407), - [anon_sym_assert] = ACTIONS(1407), - [anon_sym_nextcase] = ACTIONS(1407), - [anon_sym_switch] = ACTIONS(1407), - [anon_sym_AMP_AMP] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1407), - [anon_sym_for] = ACTIONS(1407), - [anon_sym_foreach] = ACTIONS(1407), - [anon_sym_foreach_r] = ACTIONS(1407), - [anon_sym_while] = ACTIONS(1407), - [anon_sym_do] = ACTIONS(1407), - [anon_sym_int] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_asm] = ACTIONS(1407), - [anon_sym_DOLLARassert] = ACTIONS(1407), - [anon_sym_DOLLARerror] = ACTIONS(1407), - [anon_sym_DOLLARecho] = ACTIONS(1407), - [anon_sym_DOLLARif] = ACTIONS(1407), - [anon_sym_DOLLARendif] = ACTIONS(1407), - [anon_sym_DOLLARswitch] = ACTIONS(1407), - [anon_sym_DOLLARfor] = ACTIONS(1407), - [anon_sym_DOLLARforeach] = ACTIONS(1407), - [anon_sym_DOLLARalignof] = ACTIONS(1407), - [anon_sym_DOLLARextnameof] = ACTIONS(1407), - [anon_sym_DOLLARnameof] = ACTIONS(1407), - [anon_sym_DOLLARoffsetof] = ACTIONS(1407), - [anon_sym_DOLLARqnameof] = ACTIONS(1407), - [anon_sym_DOLLARvaconst] = ACTIONS(1407), - [anon_sym_DOLLARvaarg] = ACTIONS(1407), - [anon_sym_DOLLARvaref] = ACTIONS(1407), - [anon_sym_DOLLARvaexpr] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1407), - [anon_sym_false] = ACTIONS(1407), - [anon_sym_null] = ACTIONS(1407), - [anon_sym_DOLLARvacount] = ACTIONS(1407), - [anon_sym_DOLLAReval] = ACTIONS(1407), - [anon_sym_DOLLARis_const] = ACTIONS(1407), - [anon_sym_DOLLARsizeof] = ACTIONS(1407), - [anon_sym_DOLLARstringify] = ACTIONS(1407), - [anon_sym_DOLLARappend] = ACTIONS(1407), - [anon_sym_DOLLARconcat] = ACTIONS(1407), - [anon_sym_DOLLARdefined] = ACTIONS(1407), - [anon_sym_DOLLARembed] = ACTIONS(1407), - [anon_sym_DOLLARand] = ACTIONS(1407), - [anon_sym_DOLLARor] = ACTIONS(1407), - [anon_sym_DOLLARfeature] = ACTIONS(1407), - [anon_sym_DOLLARassignable] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1409), - [anon_sym_typeid] = ACTIONS(1407), - [anon_sym_LBRACE_PIPE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1407), - [anon_sym_bool] = ACTIONS(1407), - [anon_sym_char] = ACTIONS(1407), - [anon_sym_ichar] = ACTIONS(1407), - [anon_sym_short] = ACTIONS(1407), - [anon_sym_ushort] = ACTIONS(1407), - [anon_sym_uint] = ACTIONS(1407), - [anon_sym_long] = ACTIONS(1407), - [anon_sym_ulong] = ACTIONS(1407), - [anon_sym_int128] = ACTIONS(1407), - [anon_sym_uint128] = ACTIONS(1407), - [anon_sym_float] = ACTIONS(1407), - [anon_sym_double] = ACTIONS(1407), - [anon_sym_float16] = ACTIONS(1407), - [anon_sym_bfloat16] = ACTIONS(1407), - [anon_sym_float128] = ACTIONS(1407), - [anon_sym_iptr] = ACTIONS(1407), - [anon_sym_uptr] = ACTIONS(1407), - [anon_sym_isz] = ACTIONS(1407), - [anon_sym_usz] = ACTIONS(1407), - [anon_sym_anyfault] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_DOLLARtypeof] = ACTIONS(1407), - [anon_sym_DOLLARtypefrom] = ACTIONS(1407), - [anon_sym_DOLLARevaltype] = ACTIONS(1407), - [anon_sym_DOLLARvatype] = ACTIONS(1407), - [sym_real_literal] = ACTIONS(1409), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARendif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, - [762] = { - [sym_line_comment] = STATE(762), - [sym_doc_comment] = STATE(762), - [sym_block_comment] = STATE(762), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARendif] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARappend] = ACTIONS(1475), - [anon_sym_DOLLARconcat] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), + [740] = { + [sym_line_comment] = STATE(740), + [sym_doc_comment] = STATE(740), + [sym_block_comment] = STATE(740), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARendif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, - [763] = { - [sym_line_comment] = STATE(763), - [sym_doc_comment] = STATE(763), - [sym_block_comment] = STATE(763), - [sym_ident] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [anon_sym_BQUOTE] = ACTIONS(1511), - [sym_bytes_literal] = ACTIONS(1511), + [741] = { + [sym_line_comment] = STATE(741), + [sym_doc_comment] = STATE(741), + [sym_block_comment] = STATE(741), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1509), - [sym_at_ident] = ACTIONS(1511), - [sym_hash_ident] = ACTIONS(1511), - [sym_type_ident] = ACTIONS(1511), - [sym_ct_type_ident] = ACTIONS(1511), - [sym_const_ident] = ACTIONS(1509), - [sym_builtin] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_tlocal] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_var] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_defer] = ACTIONS(1509), - [anon_sym_assert] = ACTIONS(1509), - [anon_sym_nextcase] = ACTIONS(1509), - [anon_sym_switch] = ACTIONS(1509), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_foreach] = ACTIONS(1509), - [anon_sym_foreach_r] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_do] = ACTIONS(1509), - [anon_sym_int] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_asm] = ACTIONS(1509), - [anon_sym_DOLLARassert] = ACTIONS(1509), - [anon_sym_DOLLARerror] = ACTIONS(1509), - [anon_sym_DOLLARecho] = ACTIONS(1509), - [anon_sym_DOLLARif] = ACTIONS(1509), - [anon_sym_DOLLARendif] = ACTIONS(1509), - [anon_sym_DOLLARswitch] = ACTIONS(1509), - [anon_sym_DOLLARfor] = ACTIONS(1509), - [anon_sym_DOLLARforeach] = ACTIONS(1509), - [anon_sym_DOLLARalignof] = ACTIONS(1509), - [anon_sym_DOLLARextnameof] = ACTIONS(1509), - [anon_sym_DOLLARnameof] = ACTIONS(1509), - [anon_sym_DOLLARoffsetof] = ACTIONS(1509), - [anon_sym_DOLLARqnameof] = ACTIONS(1509), - [anon_sym_DOLLARvaconst] = ACTIONS(1509), - [anon_sym_DOLLARvaarg] = ACTIONS(1509), - [anon_sym_DOLLARvaref] = ACTIONS(1509), - [anon_sym_DOLLARvaexpr] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [anon_sym_null] = ACTIONS(1509), - [anon_sym_DOLLARvacount] = ACTIONS(1509), - [anon_sym_DOLLAReval] = ACTIONS(1509), - [anon_sym_DOLLARis_const] = ACTIONS(1509), - [anon_sym_DOLLARsizeof] = ACTIONS(1509), - [anon_sym_DOLLARstringify] = ACTIONS(1509), - [anon_sym_DOLLARappend] = ACTIONS(1509), - [anon_sym_DOLLARconcat] = ACTIONS(1509), - [anon_sym_DOLLARdefined] = ACTIONS(1509), - [anon_sym_DOLLARembed] = ACTIONS(1509), - [anon_sym_DOLLARand] = ACTIONS(1509), - [anon_sym_DOLLARor] = ACTIONS(1509), - [anon_sym_DOLLARfeature] = ACTIONS(1509), - [anon_sym_DOLLARassignable] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_typeid] = ACTIONS(1509), - [anon_sym_LBRACE_PIPE] = ACTIONS(1511), - [anon_sym_void] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_ichar] = ACTIONS(1509), - [anon_sym_short] = ACTIONS(1509), - [anon_sym_ushort] = ACTIONS(1509), - [anon_sym_uint] = ACTIONS(1509), - [anon_sym_long] = ACTIONS(1509), - [anon_sym_ulong] = ACTIONS(1509), - [anon_sym_int128] = ACTIONS(1509), - [anon_sym_uint128] = ACTIONS(1509), - [anon_sym_float] = ACTIONS(1509), - [anon_sym_double] = ACTIONS(1509), - [anon_sym_float16] = ACTIONS(1509), - [anon_sym_bfloat16] = ACTIONS(1509), - [anon_sym_float128] = ACTIONS(1509), - [anon_sym_iptr] = ACTIONS(1509), - [anon_sym_uptr] = ACTIONS(1509), - [anon_sym_isz] = ACTIONS(1509), - [anon_sym_usz] = ACTIONS(1509), - [anon_sym_anyfault] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_DOLLARtypeof] = ACTIONS(1509), - [anon_sym_DOLLARtypefrom] = ACTIONS(1509), - [anon_sym_DOLLARevaltype] = ACTIONS(1509), - [anon_sym_DOLLARvatype] = ACTIONS(1509), - [sym_real_literal] = ACTIONS(1511), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARendif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, - [764] = { - [sym_line_comment] = STATE(764), - [sym_doc_comment] = STATE(764), - [sym_block_comment] = STATE(764), - [sym_ident] = ACTIONS(1517), - [sym_integer_literal] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [anon_sym_BQUOTE] = ACTIONS(1519), - [sym_bytes_literal] = ACTIONS(1519), + [742] = { + [sym_line_comment] = STATE(742), + [sym_doc_comment] = STATE(742), + [sym_block_comment] = STATE(742), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1517), - [sym_at_ident] = ACTIONS(1519), - [sym_hash_ident] = ACTIONS(1519), - [sym_type_ident] = ACTIONS(1519), - [sym_ct_type_ident] = ACTIONS(1519), - [sym_const_ident] = ACTIONS(1517), - [sym_builtin] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_tlocal] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_var] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_defer] = ACTIONS(1517), - [anon_sym_assert] = ACTIONS(1517), - [anon_sym_nextcase] = ACTIONS(1517), - [anon_sym_switch] = ACTIONS(1517), - [anon_sym_AMP_AMP] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_foreach] = ACTIONS(1517), - [anon_sym_foreach_r] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_int] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_asm] = ACTIONS(1517), - [anon_sym_DOLLARassert] = ACTIONS(1517), - [anon_sym_DOLLARerror] = ACTIONS(1517), - [anon_sym_DOLLARecho] = ACTIONS(1517), - [anon_sym_DOLLARif] = ACTIONS(1517), - [anon_sym_DOLLARendif] = ACTIONS(1517), - [anon_sym_DOLLARswitch] = ACTIONS(1517), - [anon_sym_DOLLARfor] = ACTIONS(1517), - [anon_sym_DOLLARforeach] = ACTIONS(1517), - [anon_sym_DOLLARalignof] = ACTIONS(1517), - [anon_sym_DOLLARextnameof] = ACTIONS(1517), - [anon_sym_DOLLARnameof] = ACTIONS(1517), - [anon_sym_DOLLARoffsetof] = ACTIONS(1517), - [anon_sym_DOLLARqnameof] = ACTIONS(1517), - [anon_sym_DOLLARvaconst] = ACTIONS(1517), - [anon_sym_DOLLARvaarg] = ACTIONS(1517), - [anon_sym_DOLLARvaref] = ACTIONS(1517), - [anon_sym_DOLLARvaexpr] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1517), - [anon_sym_false] = ACTIONS(1517), - [anon_sym_null] = ACTIONS(1517), - [anon_sym_DOLLARvacount] = ACTIONS(1517), - [anon_sym_DOLLAReval] = ACTIONS(1517), - [anon_sym_DOLLARis_const] = ACTIONS(1517), - [anon_sym_DOLLARsizeof] = ACTIONS(1517), - [anon_sym_DOLLARstringify] = ACTIONS(1517), - [anon_sym_DOLLARappend] = ACTIONS(1517), - [anon_sym_DOLLARconcat] = ACTIONS(1517), - [anon_sym_DOLLARdefined] = ACTIONS(1517), - [anon_sym_DOLLARembed] = ACTIONS(1517), - [anon_sym_DOLLARand] = ACTIONS(1517), - [anon_sym_DOLLARor] = ACTIONS(1517), - [anon_sym_DOLLARfeature] = ACTIONS(1517), - [anon_sym_DOLLARassignable] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_typeid] = ACTIONS(1517), - [anon_sym_LBRACE_PIPE] = ACTIONS(1519), - [anon_sym_void] = ACTIONS(1517), - [anon_sym_bool] = ACTIONS(1517), - [anon_sym_char] = ACTIONS(1517), - [anon_sym_ichar] = ACTIONS(1517), - [anon_sym_short] = ACTIONS(1517), - [anon_sym_ushort] = ACTIONS(1517), - [anon_sym_uint] = ACTIONS(1517), - [anon_sym_long] = ACTIONS(1517), - [anon_sym_ulong] = ACTIONS(1517), - [anon_sym_int128] = ACTIONS(1517), - [anon_sym_uint128] = ACTIONS(1517), - [anon_sym_float] = ACTIONS(1517), - [anon_sym_double] = ACTIONS(1517), - [anon_sym_float16] = ACTIONS(1517), - [anon_sym_bfloat16] = ACTIONS(1517), - [anon_sym_float128] = ACTIONS(1517), - [anon_sym_iptr] = ACTIONS(1517), - [anon_sym_uptr] = ACTIONS(1517), - [anon_sym_isz] = ACTIONS(1517), - [anon_sym_usz] = ACTIONS(1517), - [anon_sym_anyfault] = ACTIONS(1517), - [anon_sym_any] = ACTIONS(1517), - [anon_sym_DOLLARtypeof] = ACTIONS(1517), - [anon_sym_DOLLARtypefrom] = ACTIONS(1517), - [anon_sym_DOLLARevaltype] = ACTIONS(1517), - [anon_sym_DOLLARvatype] = ACTIONS(1517), - [sym_real_literal] = ACTIONS(1519), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARendif] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, - [765] = { - [sym_line_comment] = STATE(765), - [sym_doc_comment] = STATE(765), - [sym_block_comment] = STATE(765), + [743] = { + [sym_line_comment] = STATE(743), + [sym_doc_comment] = STATE(743), + [sym_block_comment] = STATE(743), [sym_ident] = ACTIONS(1577), [sym_integer_literal] = ACTIONS(1579), [anon_sym_SQUOTE] = ACTIONS(1579), @@ -113676,10 +111061,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1577), [anon_sym_DOLLARecho] = ACTIONS(1577), [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARendif] = ACTIONS(1577), [anon_sym_DOLLARswitch] = ACTIONS(1577), [anon_sym_DOLLARfor] = ACTIONS(1577), [anon_sym_DOLLARforeach] = ACTIONS(1577), - [anon_sym_DOLLARendforeach] = ACTIONS(1577), [anon_sym_DOLLARalignof] = ACTIONS(1577), [anon_sym_DOLLARextnameof] = ACTIONS(1577), [anon_sym_DOLLARnameof] = ACTIONS(1577), @@ -113739,700 +111124,2080 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1577), [sym_real_literal] = ACTIONS(1579), }, - [766] = { - [sym_line_comment] = STATE(766), - [sym_doc_comment] = STATE(766), - [sym_block_comment] = STATE(766), - [sym_ident] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_bytes_literal] = ACTIONS(1515), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1513), - [sym_at_ident] = ACTIONS(1515), - [sym_hash_ident] = ACTIONS(1515), - [sym_type_ident] = ACTIONS(1515), - [sym_ct_type_ident] = ACTIONS(1515), - [sym_const_ident] = ACTIONS(1513), - [sym_builtin] = ACTIONS(1515), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_tlocal] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_fn] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_var] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_defer] = ACTIONS(1513), - [anon_sym_assert] = ACTIONS(1513), - [anon_sym_nextcase] = ACTIONS(1513), - [anon_sym_switch] = ACTIONS(1513), - [anon_sym_AMP_AMP] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_foreach] = ACTIONS(1513), - [anon_sym_foreach_r] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_do] = ACTIONS(1513), - [anon_sym_int] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_asm] = ACTIONS(1513), - [anon_sym_DOLLARassert] = ACTIONS(1513), - [anon_sym_DOLLARerror] = ACTIONS(1513), - [anon_sym_DOLLARecho] = ACTIONS(1513), - [anon_sym_DOLLARif] = ACTIONS(1513), - [anon_sym_DOLLARswitch] = ACTIONS(1513), - [anon_sym_DOLLARfor] = ACTIONS(1513), - [anon_sym_DOLLARforeach] = ACTIONS(1513), - [anon_sym_DOLLARendforeach] = ACTIONS(1513), - [anon_sym_DOLLARalignof] = ACTIONS(1513), - [anon_sym_DOLLARextnameof] = ACTIONS(1513), - [anon_sym_DOLLARnameof] = ACTIONS(1513), - [anon_sym_DOLLARoffsetof] = ACTIONS(1513), - [anon_sym_DOLLARqnameof] = ACTIONS(1513), - [anon_sym_DOLLARvaconst] = ACTIONS(1513), - [anon_sym_DOLLARvaarg] = ACTIONS(1513), - [anon_sym_DOLLARvaref] = ACTIONS(1513), - [anon_sym_DOLLARvaexpr] = ACTIONS(1513), - [anon_sym_true] = ACTIONS(1513), - [anon_sym_false] = ACTIONS(1513), - [anon_sym_null] = ACTIONS(1513), - [anon_sym_DOLLARvacount] = ACTIONS(1513), - [anon_sym_DOLLAReval] = ACTIONS(1513), - [anon_sym_DOLLARis_const] = ACTIONS(1513), - [anon_sym_DOLLARsizeof] = ACTIONS(1513), - [anon_sym_DOLLARstringify] = ACTIONS(1513), - [anon_sym_DOLLARappend] = ACTIONS(1513), - [anon_sym_DOLLARconcat] = ACTIONS(1513), - [anon_sym_DOLLARdefined] = ACTIONS(1513), - [anon_sym_DOLLARembed] = ACTIONS(1513), - [anon_sym_DOLLARand] = ACTIONS(1513), - [anon_sym_DOLLARor] = ACTIONS(1513), - [anon_sym_DOLLARfeature] = ACTIONS(1513), - [anon_sym_DOLLARassignable] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_typeid] = ACTIONS(1513), - [anon_sym_LBRACE_PIPE] = ACTIONS(1515), - [anon_sym_void] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_ichar] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [anon_sym_ushort] = ACTIONS(1513), - [anon_sym_uint] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_ulong] = ACTIONS(1513), - [anon_sym_int128] = ACTIONS(1513), - [anon_sym_uint128] = ACTIONS(1513), - [anon_sym_float] = ACTIONS(1513), - [anon_sym_double] = ACTIONS(1513), - [anon_sym_float16] = ACTIONS(1513), - [anon_sym_bfloat16] = ACTIONS(1513), - [anon_sym_float128] = ACTIONS(1513), - [anon_sym_iptr] = ACTIONS(1513), - [anon_sym_uptr] = ACTIONS(1513), - [anon_sym_isz] = ACTIONS(1513), - [anon_sym_usz] = ACTIONS(1513), - [anon_sym_anyfault] = ACTIONS(1513), - [anon_sym_any] = ACTIONS(1513), - [anon_sym_DOLLARtypeof] = ACTIONS(1513), - [anon_sym_DOLLARtypefrom] = ACTIONS(1513), - [anon_sym_DOLLARevaltype] = ACTIONS(1513), - [anon_sym_DOLLARvatype] = ACTIONS(1513), - [sym_real_literal] = ACTIONS(1515), + [744] = { + [sym_line_comment] = STATE(744), + [sym_doc_comment] = STATE(744), + [sym_block_comment] = STATE(744), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARendif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), + }, + [745] = { + [sym_line_comment] = STATE(745), + [sym_doc_comment] = STATE(745), + [sym_block_comment] = STATE(745), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARendif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), + }, + [746] = { + [sym_line_comment] = STATE(746), + [sym_doc_comment] = STATE(746), + [sym_block_comment] = STATE(746), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARendif] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), }, - [767] = { - [sym_line_comment] = STATE(767), - [sym_doc_comment] = STATE(767), - [sym_block_comment] = STATE(767), - [sym_ident] = ACTIONS(1459), - [sym_integer_literal] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [anon_sym_BQUOTE] = ACTIONS(1461), - [sym_bytes_literal] = ACTIONS(1461), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1459), - [sym_at_ident] = ACTIONS(1461), - [sym_hash_ident] = ACTIONS(1461), - [sym_type_ident] = ACTIONS(1461), - [sym_ct_type_ident] = ACTIONS(1461), - [sym_const_ident] = ACTIONS(1459), - [sym_builtin] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_tlocal] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_var] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_defer] = ACTIONS(1459), - [anon_sym_assert] = ACTIONS(1459), - [anon_sym_nextcase] = ACTIONS(1459), - [anon_sym_switch] = ACTIONS(1459), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_foreach] = ACTIONS(1459), - [anon_sym_foreach_r] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_int] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_asm] = ACTIONS(1459), - [anon_sym_DOLLARassert] = ACTIONS(1459), - [anon_sym_DOLLARerror] = ACTIONS(1459), - [anon_sym_DOLLARecho] = ACTIONS(1459), - [anon_sym_DOLLARif] = ACTIONS(1459), - [anon_sym_DOLLARendif] = ACTIONS(1459), - [anon_sym_DOLLARswitch] = ACTIONS(1459), - [anon_sym_DOLLARfor] = ACTIONS(1459), - [anon_sym_DOLLARforeach] = ACTIONS(1459), - [anon_sym_DOLLARalignof] = ACTIONS(1459), - [anon_sym_DOLLARextnameof] = ACTIONS(1459), - [anon_sym_DOLLARnameof] = ACTIONS(1459), - [anon_sym_DOLLARoffsetof] = ACTIONS(1459), - [anon_sym_DOLLARqnameof] = ACTIONS(1459), - [anon_sym_DOLLARvaconst] = ACTIONS(1459), - [anon_sym_DOLLARvaarg] = ACTIONS(1459), - [anon_sym_DOLLARvaref] = ACTIONS(1459), - [anon_sym_DOLLARvaexpr] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [anon_sym_null] = ACTIONS(1459), - [anon_sym_DOLLARvacount] = ACTIONS(1459), - [anon_sym_DOLLAReval] = ACTIONS(1459), - [anon_sym_DOLLARis_const] = ACTIONS(1459), - [anon_sym_DOLLARsizeof] = ACTIONS(1459), - [anon_sym_DOLLARstringify] = ACTIONS(1459), - [anon_sym_DOLLARappend] = ACTIONS(1459), - [anon_sym_DOLLARconcat] = ACTIONS(1459), - [anon_sym_DOLLARdefined] = ACTIONS(1459), - [anon_sym_DOLLARembed] = ACTIONS(1459), - [anon_sym_DOLLARand] = ACTIONS(1459), - [anon_sym_DOLLARor] = ACTIONS(1459), - [anon_sym_DOLLARfeature] = ACTIONS(1459), - [anon_sym_DOLLARassignable] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1461), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_typeid] = ACTIONS(1459), - [anon_sym_LBRACE_PIPE] = ACTIONS(1461), - [anon_sym_void] = ACTIONS(1459), - [anon_sym_bool] = ACTIONS(1459), - [anon_sym_char] = ACTIONS(1459), - [anon_sym_ichar] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [anon_sym_ushort] = ACTIONS(1459), - [anon_sym_uint] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_ulong] = ACTIONS(1459), - [anon_sym_int128] = ACTIONS(1459), - [anon_sym_uint128] = ACTIONS(1459), - [anon_sym_float] = ACTIONS(1459), - [anon_sym_double] = ACTIONS(1459), - [anon_sym_float16] = ACTIONS(1459), - [anon_sym_bfloat16] = ACTIONS(1459), - [anon_sym_float128] = ACTIONS(1459), - [anon_sym_iptr] = ACTIONS(1459), - [anon_sym_uptr] = ACTIONS(1459), - [anon_sym_isz] = ACTIONS(1459), - [anon_sym_usz] = ACTIONS(1459), - [anon_sym_anyfault] = ACTIONS(1459), - [anon_sym_any] = ACTIONS(1459), - [anon_sym_DOLLARtypeof] = ACTIONS(1459), - [anon_sym_DOLLARtypefrom] = ACTIONS(1459), - [anon_sym_DOLLARevaltype] = ACTIONS(1459), - [anon_sym_DOLLARvatype] = ACTIONS(1459), - [sym_real_literal] = ACTIONS(1461), + [747] = { + [sym_line_comment] = STATE(747), + [sym_doc_comment] = STATE(747), + [sym_block_comment] = STATE(747), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARendif] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), }, - [768] = { - [sym_line_comment] = STATE(768), - [sym_doc_comment] = STATE(768), - [sym_block_comment] = STATE(768), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARendif] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARappend] = ACTIONS(1467), - [anon_sym_DOLLARconcat] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), + [748] = { + [sym_line_comment] = STATE(748), + [sym_doc_comment] = STATE(748), + [sym_block_comment] = STATE(748), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARendif] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), }, - [769] = { - [sym_line_comment] = STATE(769), - [sym_doc_comment] = STATE(769), - [sym_block_comment] = STATE(769), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARendif] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARappend] = ACTIONS(1471), - [anon_sym_DOLLARconcat] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), + [749] = { + [sym_line_comment] = STATE(749), + [sym_doc_comment] = STATE(749), + [sym_block_comment] = STATE(749), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARendif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, - [770] = { - [sym_line_comment] = STATE(770), - [sym_doc_comment] = STATE(770), - [sym_block_comment] = STATE(770), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARendif] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARappend] = ACTIONS(1495), - [anon_sym_DOLLARconcat] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), + [750] = { + [sym_line_comment] = STATE(750), + [sym_doc_comment] = STATE(750), + [sym_block_comment] = STATE(750), + [sym_ident] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [sym_bytes_literal] = ACTIONS(1391), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1389), + [sym_at_ident] = ACTIONS(1391), + [sym_hash_ident] = ACTIONS(1391), + [sym_type_ident] = ACTIONS(1391), + [sym_ct_type_ident] = ACTIONS(1391), + [sym_const_ident] = ACTIONS(1389), + [sym_builtin] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_tlocal] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_var] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_defer] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1389), + [anon_sym_nextcase] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_foreach] = ACTIONS(1389), + [anon_sym_foreach_r] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_int] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_DOLLARassert] = ACTIONS(1389), + [anon_sym_DOLLARerror] = ACTIONS(1389), + [anon_sym_DOLLARecho] = ACTIONS(1389), + [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARendif] = ACTIONS(1389), + [anon_sym_DOLLARswitch] = ACTIONS(1389), + [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARforeach] = ACTIONS(1389), + [anon_sym_DOLLARalignof] = ACTIONS(1389), + [anon_sym_DOLLARextnameof] = ACTIONS(1389), + [anon_sym_DOLLARnameof] = ACTIONS(1389), + [anon_sym_DOLLARoffsetof] = ACTIONS(1389), + [anon_sym_DOLLARqnameof] = ACTIONS(1389), + [anon_sym_DOLLARvaconst] = ACTIONS(1389), + [anon_sym_DOLLARvaarg] = ACTIONS(1389), + [anon_sym_DOLLARvaref] = ACTIONS(1389), + [anon_sym_DOLLARvaexpr] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_DOLLARvacount] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), + [anon_sym_DOLLARand] = ACTIONS(1389), + [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLARassignable] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_typeid] = ACTIONS(1389), + [anon_sym_LBRACE_PIPE] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_ichar] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_ushort] = ACTIONS(1389), + [anon_sym_uint] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_ulong] = ACTIONS(1389), + [anon_sym_int128] = ACTIONS(1389), + [anon_sym_uint128] = ACTIONS(1389), + [anon_sym_float] = ACTIONS(1389), + [anon_sym_double] = ACTIONS(1389), + [anon_sym_float16] = ACTIONS(1389), + [anon_sym_bfloat16] = ACTIONS(1389), + [anon_sym_float128] = ACTIONS(1389), + [anon_sym_iptr] = ACTIONS(1389), + [anon_sym_uptr] = ACTIONS(1389), + [anon_sym_isz] = ACTIONS(1389), + [anon_sym_usz] = ACTIONS(1389), + [anon_sym_anyfault] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_DOLLARtypeof] = ACTIONS(1389), + [anon_sym_DOLLARtypefrom] = ACTIONS(1389), + [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), + [sym_real_literal] = ACTIONS(1391), }, - [771] = { - [sym_line_comment] = STATE(771), - [sym_doc_comment] = STATE(771), - [sym_block_comment] = STATE(771), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARendif] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARappend] = ACTIONS(1503), - [anon_sym_DOLLARconcat] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), + [751] = { + [sym_line_comment] = STATE(751), + [sym_doc_comment] = STATE(751), + [sym_block_comment] = STATE(751), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARendif] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), }, - [772] = { - [sym_line_comment] = STATE(772), - [sym_doc_comment] = STATE(772), - [sym_block_comment] = STATE(772), + [752] = { + [sym_line_comment] = STATE(752), + [sym_doc_comment] = STATE(752), + [sym_block_comment] = STATE(752), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARendif] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), + }, + [753] = { + [sym_line_comment] = STATE(753), + [sym_doc_comment] = STATE(753), + [sym_block_comment] = STATE(753), + [sym_ident] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_BQUOTE] = ACTIONS(1403), + [sym_bytes_literal] = ACTIONS(1403), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1401), + [sym_at_ident] = ACTIONS(1403), + [sym_hash_ident] = ACTIONS(1403), + [sym_type_ident] = ACTIONS(1403), + [sym_ct_type_ident] = ACTIONS(1403), + [sym_const_ident] = ACTIONS(1401), + [sym_builtin] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_tlocal] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_var] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_defer] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1401), + [anon_sym_nextcase] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_foreach] = ACTIONS(1401), + [anon_sym_foreach_r] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_int] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_DOLLARassert] = ACTIONS(1401), + [anon_sym_DOLLARerror] = ACTIONS(1401), + [anon_sym_DOLLARecho] = ACTIONS(1401), + [anon_sym_DOLLARif] = ACTIONS(1401), + [anon_sym_DOLLARendif] = ACTIONS(1401), + [anon_sym_DOLLARswitch] = ACTIONS(1401), + [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARforeach] = ACTIONS(1401), + [anon_sym_DOLLARalignof] = ACTIONS(1401), + [anon_sym_DOLLARextnameof] = ACTIONS(1401), + [anon_sym_DOLLARnameof] = ACTIONS(1401), + [anon_sym_DOLLARoffsetof] = ACTIONS(1401), + [anon_sym_DOLLARqnameof] = ACTIONS(1401), + [anon_sym_DOLLARvaconst] = ACTIONS(1401), + [anon_sym_DOLLARvaarg] = ACTIONS(1401), + [anon_sym_DOLLARvaref] = ACTIONS(1401), + [anon_sym_DOLLARvaexpr] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1401), + [anon_sym_DOLLARvacount] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), + [anon_sym_DOLLARand] = ACTIONS(1401), + [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLARassignable] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), + [anon_sym_typeid] = ACTIONS(1401), + [anon_sym_LBRACE_PIPE] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_ichar] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), + }, + [754] = { + [sym_line_comment] = STATE(754), + [sym_doc_comment] = STATE(754), + [sym_block_comment] = STATE(754), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARendif] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), + }, + [755] = { + [sym_line_comment] = STATE(755), + [sym_doc_comment] = STATE(755), + [sym_block_comment] = STATE(755), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARendif] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), + }, + [756] = { + [sym_line_comment] = STATE(756), + [sym_doc_comment] = STATE(756), + [sym_block_comment] = STATE(756), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARendif] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), + }, + [757] = { + [sym_line_comment] = STATE(757), + [sym_doc_comment] = STATE(757), + [sym_block_comment] = STATE(757), + [sym_ident] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_bytes_literal] = ACTIONS(1419), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1417), + [sym_at_ident] = ACTIONS(1419), + [sym_hash_ident] = ACTIONS(1419), + [sym_type_ident] = ACTIONS(1419), + [sym_ct_type_ident] = ACTIONS(1419), + [sym_const_ident] = ACTIONS(1417), + [sym_builtin] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_tlocal] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_var] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_defer] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_nextcase] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_foreach] = ACTIONS(1417), + [anon_sym_foreach_r] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_DOLLARassert] = ACTIONS(1417), + [anon_sym_DOLLARerror] = ACTIONS(1417), + [anon_sym_DOLLARecho] = ACTIONS(1417), + [anon_sym_DOLLARif] = ACTIONS(1417), + [anon_sym_DOLLARendif] = ACTIONS(1417), + [anon_sym_DOLLARswitch] = ACTIONS(1417), + [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARforeach] = ACTIONS(1417), + [anon_sym_DOLLARalignof] = ACTIONS(1417), + [anon_sym_DOLLARextnameof] = ACTIONS(1417), + [anon_sym_DOLLARnameof] = ACTIONS(1417), + [anon_sym_DOLLARoffsetof] = ACTIONS(1417), + [anon_sym_DOLLARqnameof] = ACTIONS(1417), + [anon_sym_DOLLARvaconst] = ACTIONS(1417), + [anon_sym_DOLLARvaarg] = ACTIONS(1417), + [anon_sym_DOLLARvaref] = ACTIONS(1417), + [anon_sym_DOLLARvaexpr] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_DOLLARvacount] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), + [anon_sym_DOLLARand] = ACTIONS(1417), + [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLARassignable] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_typeid] = ACTIONS(1417), + [anon_sym_LBRACE_PIPE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_ichar] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_ushort] = ACTIONS(1417), + [anon_sym_uint] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_ulong] = ACTIONS(1417), + [anon_sym_int128] = ACTIONS(1417), + [anon_sym_uint128] = ACTIONS(1417), + [anon_sym_float] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_float16] = ACTIONS(1417), + [anon_sym_bfloat16] = ACTIONS(1417), + [anon_sym_float128] = ACTIONS(1417), + [anon_sym_iptr] = ACTIONS(1417), + [anon_sym_uptr] = ACTIONS(1417), + [anon_sym_isz] = ACTIONS(1417), + [anon_sym_usz] = ACTIONS(1417), + [anon_sym_anyfault] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_DOLLARtypeof] = ACTIONS(1417), + [anon_sym_DOLLARtypefrom] = ACTIONS(1417), + [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1419), + }, + [758] = { + [sym_line_comment] = STATE(758), + [sym_doc_comment] = STATE(758), + [sym_block_comment] = STATE(758), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARendif] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), + }, + [759] = { + [sym_line_comment] = STATE(759), + [sym_doc_comment] = STATE(759), + [sym_block_comment] = STATE(759), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARendif] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), + }, + [760] = { + [sym_line_comment] = STATE(760), + [sym_doc_comment] = STATE(760), + [sym_block_comment] = STATE(760), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARendif] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), + }, + [761] = { + [sym_line_comment] = STATE(761), + [sym_doc_comment] = STATE(761), + [sym_block_comment] = STATE(761), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARendforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), + }, + [762] = { + [sym_line_comment] = STATE(762), + [sym_doc_comment] = STATE(762), + [sym_block_comment] = STATE(762), [sym_ident] = ACTIONS(1521), [sym_integer_literal] = ACTIONS(1523), [anon_sym_SQUOTE] = ACTIONS(1523), @@ -114481,10 +113246,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1521), [anon_sym_DOLLARecho] = ACTIONS(1521), [anon_sym_DOLLARif] = ACTIONS(1521), - [anon_sym_DOLLARendif] = ACTIONS(1521), [anon_sym_DOLLARswitch] = ACTIONS(1521), [anon_sym_DOLLARfor] = ACTIONS(1521), [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARendforeach] = ACTIONS(1521), [anon_sym_DOLLARalignof] = ACTIONS(1521), [anon_sym_DOLLARextnameof] = ACTIONS(1521), [anon_sym_DOLLARnameof] = ACTIONS(1521), @@ -114544,125 +113309,1965 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1521), [sym_real_literal] = ACTIONS(1523), }, - [773] = { - [sym_line_comment] = STATE(773), - [sym_doc_comment] = STATE(773), - [sym_block_comment] = STATE(773), - [sym_ident] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_BQUOTE] = ACTIONS(1535), - [sym_bytes_literal] = ACTIONS(1535), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1533), - [sym_at_ident] = ACTIONS(1535), - [sym_hash_ident] = ACTIONS(1535), - [sym_type_ident] = ACTIONS(1535), - [sym_ct_type_ident] = ACTIONS(1535), - [sym_const_ident] = ACTIONS(1533), - [sym_builtin] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_tlocal] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_fn] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_var] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_defer] = ACTIONS(1533), - [anon_sym_assert] = ACTIONS(1533), - [anon_sym_nextcase] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_foreach] = ACTIONS(1533), - [anon_sym_foreach_r] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_int] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_asm] = ACTIONS(1533), - [anon_sym_DOLLARassert] = ACTIONS(1533), - [anon_sym_DOLLARerror] = ACTIONS(1533), - [anon_sym_DOLLARecho] = ACTIONS(1533), - [anon_sym_DOLLARif] = ACTIONS(1533), - [anon_sym_DOLLARendif] = ACTIONS(1533), - [anon_sym_DOLLARswitch] = ACTIONS(1533), - [anon_sym_DOLLARfor] = ACTIONS(1533), - [anon_sym_DOLLARforeach] = ACTIONS(1533), - [anon_sym_DOLLARalignof] = ACTIONS(1533), - [anon_sym_DOLLARextnameof] = ACTIONS(1533), - [anon_sym_DOLLARnameof] = ACTIONS(1533), - [anon_sym_DOLLARoffsetof] = ACTIONS(1533), - [anon_sym_DOLLARqnameof] = ACTIONS(1533), - [anon_sym_DOLLARvaconst] = ACTIONS(1533), - [anon_sym_DOLLARvaarg] = ACTIONS(1533), - [anon_sym_DOLLARvaref] = ACTIONS(1533), - [anon_sym_DOLLARvaexpr] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [anon_sym_null] = ACTIONS(1533), - [anon_sym_DOLLARvacount] = ACTIONS(1533), - [anon_sym_DOLLAReval] = ACTIONS(1533), - [anon_sym_DOLLARis_const] = ACTIONS(1533), - [anon_sym_DOLLARsizeof] = ACTIONS(1533), - [anon_sym_DOLLARstringify] = ACTIONS(1533), - [anon_sym_DOLLARappend] = ACTIONS(1533), - [anon_sym_DOLLARconcat] = ACTIONS(1533), - [anon_sym_DOLLARdefined] = ACTIONS(1533), - [anon_sym_DOLLARembed] = ACTIONS(1533), - [anon_sym_DOLLARand] = ACTIONS(1533), - [anon_sym_DOLLARor] = ACTIONS(1533), - [anon_sym_DOLLARfeature] = ACTIONS(1533), - [anon_sym_DOLLARassignable] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_typeid] = ACTIONS(1533), - [anon_sym_LBRACE_PIPE] = ACTIONS(1535), - [anon_sym_void] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_ichar] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [anon_sym_ushort] = ACTIONS(1533), - [anon_sym_uint] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_ulong] = ACTIONS(1533), - [anon_sym_int128] = ACTIONS(1533), - [anon_sym_uint128] = ACTIONS(1533), - [anon_sym_float] = ACTIONS(1533), - [anon_sym_double] = ACTIONS(1533), - [anon_sym_float16] = ACTIONS(1533), - [anon_sym_bfloat16] = ACTIONS(1533), - [anon_sym_float128] = ACTIONS(1533), - [anon_sym_iptr] = ACTIONS(1533), - [anon_sym_uptr] = ACTIONS(1533), - [anon_sym_isz] = ACTIONS(1533), - [anon_sym_usz] = ACTIONS(1533), - [anon_sym_anyfault] = ACTIONS(1533), - [anon_sym_any] = ACTIONS(1533), - [anon_sym_DOLLARtypeof] = ACTIONS(1533), - [anon_sym_DOLLARtypefrom] = ACTIONS(1533), - [anon_sym_DOLLARevaltype] = ACTIONS(1533), - [anon_sym_DOLLARvatype] = ACTIONS(1533), - [sym_real_literal] = ACTIONS(1535), + [763] = { + [sym_line_comment] = STATE(763), + [sym_doc_comment] = STATE(763), + [sym_block_comment] = STATE(763), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARendif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), + }, + [764] = { + [sym_line_comment] = STATE(764), + [sym_doc_comment] = STATE(764), + [sym_block_comment] = STATE(764), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARendif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), + }, + [765] = { + [sym_line_comment] = STATE(765), + [sym_doc_comment] = STATE(765), + [sym_block_comment] = STATE(765), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARendif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), + }, + [766] = { + [sym_line_comment] = STATE(766), + [sym_doc_comment] = STATE(766), + [sym_block_comment] = STATE(766), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARendif] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), + }, + [767] = { + [sym_line_comment] = STATE(767), + [sym_doc_comment] = STATE(767), + [sym_block_comment] = STATE(767), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARendif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), + }, + [768] = { + [sym_line_comment] = STATE(768), + [sym_doc_comment] = STATE(768), + [sym_block_comment] = STATE(768), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARendif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), + }, + [769] = { + [sym_line_comment] = STATE(769), + [sym_doc_comment] = STATE(769), + [sym_block_comment] = STATE(769), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARendif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), + }, + [770] = { + [sym_line_comment] = STATE(770), + [sym_doc_comment] = STATE(770), + [sym_block_comment] = STATE(770), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARendif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), + }, + [771] = { + [sym_line_comment] = STATE(771), + [sym_doc_comment] = STATE(771), + [sym_block_comment] = STATE(771), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARendif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), + }, + [772] = { + [sym_line_comment] = STATE(772), + [sym_doc_comment] = STATE(772), + [sym_block_comment] = STATE(772), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARendif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), + }, + [773] = { + [sym_line_comment] = STATE(773), + [sym_doc_comment] = STATE(773), + [sym_block_comment] = STATE(773), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARendif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [774] = { [sym_line_comment] = STATE(774), [sym_doc_comment] = STATE(774), [sym_block_comment] = STATE(774), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARendif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), + }, + [775] = { + [sym_line_comment] = STATE(775), + [sym_doc_comment] = STATE(775), + [sym_block_comment] = STATE(775), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARendif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), + }, + [776] = { + [sym_line_comment] = STATE(776), + [sym_doc_comment] = STATE(776), + [sym_block_comment] = STATE(776), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARendif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), + }, + [777] = { + [sym_line_comment] = STATE(777), + [sym_doc_comment] = STATE(777), + [sym_block_comment] = STATE(777), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARendif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), + }, + [778] = { + [sym_line_comment] = STATE(778), + [sym_doc_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARendif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), + }, + [779] = { + [sym_line_comment] = STATE(779), + [sym_doc_comment] = STATE(779), + [sym_block_comment] = STATE(779), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARendif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), + }, + [780] = { + [sym_line_comment] = STATE(780), + [sym_doc_comment] = STATE(780), + [sym_block_comment] = STATE(780), [sym_ident] = ACTIONS(1541), [sym_integer_literal] = ACTIONS(1543), [anon_sym_SQUOTE] = ACTIONS(1543), @@ -114774,10 +115379,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1541), [sym_real_literal] = ACTIONS(1543), }, - [775] = { - [sym_line_comment] = STATE(775), - [sym_doc_comment] = STATE(775), - [sym_block_comment] = STATE(775), + [781] = { + [sym_line_comment] = STATE(781), + [sym_doc_comment] = STATE(781), + [sym_block_comment] = STATE(781), [sym_ident] = ACTIONS(1545), [sym_integer_literal] = ACTIONS(1547), [anon_sym_SQUOTE] = ACTIONS(1547), @@ -114889,10 +115494,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1545), [sym_real_literal] = ACTIONS(1547), }, - [776] = { - [sym_line_comment] = STATE(776), - [sym_doc_comment] = STATE(776), - [sym_block_comment] = STATE(776), + [782] = { + [sym_line_comment] = STATE(782), + [sym_doc_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARendif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), + }, + [783] = { + [sym_line_comment] = STATE(783), + [sym_doc_comment] = STATE(783), + [sym_block_comment] = STATE(783), [sym_ident] = ACTIONS(1557), [sym_integer_literal] = ACTIONS(1559), [anon_sym_SQUOTE] = ACTIONS(1559), @@ -115004,10 +115724,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1557), [sym_real_literal] = ACTIONS(1559), }, - [777] = { - [sym_line_comment] = STATE(777), - [sym_doc_comment] = STATE(777), - [sym_block_comment] = STATE(777), + [784] = { + [sym_line_comment] = STATE(784), + [sym_doc_comment] = STATE(784), + [sym_block_comment] = STATE(784), [sym_ident] = ACTIONS(1561), [sym_integer_literal] = ACTIONS(1563), [anon_sym_SQUOTE] = ACTIONS(1563), @@ -115119,125 +115839,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1561), [sym_real_literal] = ACTIONS(1563), }, - [778] = { - [sym_line_comment] = STATE(778), - [sym_doc_comment] = STATE(778), - [sym_block_comment] = STATE(778), - [sym_ident] = ACTIONS(1573), - [sym_integer_literal] = ACTIONS(1575), - [anon_sym_SQUOTE] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1575), - [anon_sym_BQUOTE] = ACTIONS(1575), - [sym_bytes_literal] = ACTIONS(1575), + [785] = { + [sym_line_comment] = STATE(785), + [sym_doc_comment] = STATE(785), + [sym_block_comment] = STATE(785), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARendif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), + }, + [786] = { + [sym_line_comment] = STATE(786), + [sym_doc_comment] = STATE(786), + [sym_block_comment] = STATE(786), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1573), - [sym_at_ident] = ACTIONS(1575), - [sym_hash_ident] = ACTIONS(1575), - [sym_type_ident] = ACTIONS(1575), - [sym_ct_type_ident] = ACTIONS(1575), - [sym_const_ident] = ACTIONS(1573), - [sym_builtin] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1573), - [anon_sym_tlocal] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_fn] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1573), - [anon_sym_var] = ACTIONS(1573), - [anon_sym_return] = ACTIONS(1573), - [anon_sym_continue] = ACTIONS(1573), - [anon_sym_break] = ACTIONS(1573), - [anon_sym_defer] = ACTIONS(1573), - [anon_sym_assert] = ACTIONS(1573), - [anon_sym_nextcase] = ACTIONS(1573), - [anon_sym_switch] = ACTIONS(1573), - [anon_sym_AMP_AMP] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1573), - [anon_sym_foreach] = ACTIONS(1573), - [anon_sym_foreach_r] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1573), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_int] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_asm] = ACTIONS(1573), - [anon_sym_DOLLARassert] = ACTIONS(1573), - [anon_sym_DOLLARerror] = ACTIONS(1573), - [anon_sym_DOLLARecho] = ACTIONS(1573), - [anon_sym_DOLLARif] = ACTIONS(1573), - [anon_sym_DOLLARendif] = ACTIONS(1573), - [anon_sym_DOLLARswitch] = ACTIONS(1573), - [anon_sym_DOLLARfor] = ACTIONS(1573), - [anon_sym_DOLLARforeach] = ACTIONS(1573), - [anon_sym_DOLLARalignof] = ACTIONS(1573), - [anon_sym_DOLLARextnameof] = ACTIONS(1573), - [anon_sym_DOLLARnameof] = ACTIONS(1573), - [anon_sym_DOLLARoffsetof] = ACTIONS(1573), - [anon_sym_DOLLARqnameof] = ACTIONS(1573), - [anon_sym_DOLLARvaconst] = ACTIONS(1573), - [anon_sym_DOLLARvaarg] = ACTIONS(1573), - [anon_sym_DOLLARvaref] = ACTIONS(1573), - [anon_sym_DOLLARvaexpr] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(1573), - [anon_sym_false] = ACTIONS(1573), - [anon_sym_null] = ACTIONS(1573), - [anon_sym_DOLLARvacount] = ACTIONS(1573), - [anon_sym_DOLLAReval] = ACTIONS(1573), - [anon_sym_DOLLARis_const] = ACTIONS(1573), - [anon_sym_DOLLARsizeof] = ACTIONS(1573), - [anon_sym_DOLLARstringify] = ACTIONS(1573), - [anon_sym_DOLLARappend] = ACTIONS(1573), - [anon_sym_DOLLARconcat] = ACTIONS(1573), - [anon_sym_DOLLARdefined] = ACTIONS(1573), - [anon_sym_DOLLARembed] = ACTIONS(1573), - [anon_sym_DOLLARand] = ACTIONS(1573), - [anon_sym_DOLLARor] = ACTIONS(1573), - [anon_sym_DOLLARfeature] = ACTIONS(1573), - [anon_sym_DOLLARassignable] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1575), - [anon_sym_typeid] = ACTIONS(1573), - [anon_sym_LBRACE_PIPE] = ACTIONS(1575), - [anon_sym_void] = ACTIONS(1573), - [anon_sym_bool] = ACTIONS(1573), - [anon_sym_char] = ACTIONS(1573), - [anon_sym_ichar] = ACTIONS(1573), - [anon_sym_short] = ACTIONS(1573), - [anon_sym_ushort] = ACTIONS(1573), - [anon_sym_uint] = ACTIONS(1573), - [anon_sym_long] = ACTIONS(1573), - [anon_sym_ulong] = ACTIONS(1573), - [anon_sym_int128] = ACTIONS(1573), - [anon_sym_uint128] = ACTIONS(1573), - [anon_sym_float] = ACTIONS(1573), - [anon_sym_double] = ACTIONS(1573), - [anon_sym_float16] = ACTIONS(1573), - [anon_sym_bfloat16] = ACTIONS(1573), - [anon_sym_float128] = ACTIONS(1573), - [anon_sym_iptr] = ACTIONS(1573), - [anon_sym_uptr] = ACTIONS(1573), - [anon_sym_isz] = ACTIONS(1573), - [anon_sym_usz] = ACTIONS(1573), - [anon_sym_anyfault] = ACTIONS(1573), - [anon_sym_any] = ACTIONS(1573), - [anon_sym_DOLLARtypeof] = ACTIONS(1573), - [anon_sym_DOLLARtypefrom] = ACTIONS(1573), - [anon_sym_DOLLARevaltype] = ACTIONS(1573), - [anon_sym_DOLLARvatype] = ACTIONS(1573), - [sym_real_literal] = ACTIONS(1575), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARendif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, - [779] = { - [sym_line_comment] = STATE(779), - [sym_doc_comment] = STATE(779), - [sym_block_comment] = STATE(779), + [787] = { + [sym_line_comment] = STATE(787), + [sym_doc_comment] = STATE(787), + [sym_block_comment] = STATE(787), [sym_ident] = ACTIONS(1581), [sym_integer_literal] = ACTIONS(1583), [anon_sym_SQUOTE] = ACTIONS(1583), @@ -115349,2655 +116184,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1581), [sym_real_literal] = ACTIONS(1583), }, - [780] = { - [sym_line_comment] = STATE(780), - [sym_doc_comment] = STATE(780), - [sym_block_comment] = STATE(780), - [sym_ident] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [anon_sym_BQUOTE] = ACTIONS(1587), - [sym_bytes_literal] = ACTIONS(1587), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1585), - [sym_at_ident] = ACTIONS(1587), - [sym_hash_ident] = ACTIONS(1587), - [sym_type_ident] = ACTIONS(1587), - [sym_ct_type_ident] = ACTIONS(1587), - [sym_const_ident] = ACTIONS(1585), - [sym_builtin] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_tlocal] = ACTIONS(1585), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_fn] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_var] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_defer] = ACTIONS(1585), - [anon_sym_assert] = ACTIONS(1585), - [anon_sym_nextcase] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_AMP_AMP] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_foreach] = ACTIONS(1585), - [anon_sym_foreach_r] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_int] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_asm] = ACTIONS(1585), - [anon_sym_DOLLARassert] = ACTIONS(1585), - [anon_sym_DOLLARerror] = ACTIONS(1585), - [anon_sym_DOLLARecho] = ACTIONS(1585), - [anon_sym_DOLLARif] = ACTIONS(1585), - [anon_sym_DOLLARendif] = ACTIONS(1585), - [anon_sym_DOLLARswitch] = ACTIONS(1585), - [anon_sym_DOLLARfor] = ACTIONS(1585), - [anon_sym_DOLLARforeach] = ACTIONS(1585), - [anon_sym_DOLLARalignof] = ACTIONS(1585), - [anon_sym_DOLLARextnameof] = ACTIONS(1585), - [anon_sym_DOLLARnameof] = ACTIONS(1585), - [anon_sym_DOLLARoffsetof] = ACTIONS(1585), - [anon_sym_DOLLARqnameof] = ACTIONS(1585), - [anon_sym_DOLLARvaconst] = ACTIONS(1585), - [anon_sym_DOLLARvaarg] = ACTIONS(1585), - [anon_sym_DOLLARvaref] = ACTIONS(1585), - [anon_sym_DOLLARvaexpr] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1585), - [anon_sym_false] = ACTIONS(1585), - [anon_sym_null] = ACTIONS(1585), - [anon_sym_DOLLARvacount] = ACTIONS(1585), - [anon_sym_DOLLAReval] = ACTIONS(1585), - [anon_sym_DOLLARis_const] = ACTIONS(1585), - [anon_sym_DOLLARsizeof] = ACTIONS(1585), - [anon_sym_DOLLARstringify] = ACTIONS(1585), - [anon_sym_DOLLARappend] = ACTIONS(1585), - [anon_sym_DOLLARconcat] = ACTIONS(1585), - [anon_sym_DOLLARdefined] = ACTIONS(1585), - [anon_sym_DOLLARembed] = ACTIONS(1585), - [anon_sym_DOLLARand] = ACTIONS(1585), - [anon_sym_DOLLARor] = ACTIONS(1585), - [anon_sym_DOLLARfeature] = ACTIONS(1585), - [anon_sym_DOLLARassignable] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_typeid] = ACTIONS(1585), - [anon_sym_LBRACE_PIPE] = ACTIONS(1587), - [anon_sym_void] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_ichar] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [anon_sym_ushort] = ACTIONS(1585), - [anon_sym_uint] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_ulong] = ACTIONS(1585), - [anon_sym_int128] = ACTIONS(1585), - [anon_sym_uint128] = ACTIONS(1585), - [anon_sym_float] = ACTIONS(1585), - [anon_sym_double] = ACTIONS(1585), - [anon_sym_float16] = ACTIONS(1585), - [anon_sym_bfloat16] = ACTIONS(1585), - [anon_sym_float128] = ACTIONS(1585), - [anon_sym_iptr] = ACTIONS(1585), - [anon_sym_uptr] = ACTIONS(1585), - [anon_sym_isz] = ACTIONS(1585), - [anon_sym_usz] = ACTIONS(1585), - [anon_sym_anyfault] = ACTIONS(1585), - [anon_sym_any] = ACTIONS(1585), - [anon_sym_DOLLARtypeof] = ACTIONS(1585), - [anon_sym_DOLLARtypefrom] = ACTIONS(1585), - [anon_sym_DOLLARevaltype] = ACTIONS(1585), - [anon_sym_DOLLARvatype] = ACTIONS(1585), - [sym_real_literal] = ACTIONS(1587), - }, - [781] = { - [sym_line_comment] = STATE(781), - [sym_doc_comment] = STATE(781), - [sym_block_comment] = STATE(781), - [sym_ident] = ACTIONS(1637), - [sym_integer_literal] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [anon_sym_BQUOTE] = ACTIONS(1639), - [sym_bytes_literal] = ACTIONS(1639), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1637), - [sym_at_ident] = ACTIONS(1639), - [sym_hash_ident] = ACTIONS(1639), - [sym_type_ident] = ACTIONS(1639), - [sym_ct_type_ident] = ACTIONS(1639), - [sym_const_ident] = ACTIONS(1637), - [sym_builtin] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_tlocal] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_fn] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_var] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_defer] = ACTIONS(1637), - [anon_sym_assert] = ACTIONS(1637), - [anon_sym_nextcase] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1639), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_foreach] = ACTIONS(1637), - [anon_sym_foreach_r] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_int] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_asm] = ACTIONS(1637), - [anon_sym_DOLLARassert] = ACTIONS(1637), - [anon_sym_DOLLARerror] = ACTIONS(1637), - [anon_sym_DOLLARecho] = ACTIONS(1637), - [anon_sym_DOLLARif] = ACTIONS(1637), - [anon_sym_DOLLARendif] = ACTIONS(1637), - [anon_sym_DOLLARswitch] = ACTIONS(1637), - [anon_sym_DOLLARfor] = ACTIONS(1637), - [anon_sym_DOLLARforeach] = ACTIONS(1637), - [anon_sym_DOLLARalignof] = ACTIONS(1637), - [anon_sym_DOLLARextnameof] = ACTIONS(1637), - [anon_sym_DOLLARnameof] = ACTIONS(1637), - [anon_sym_DOLLARoffsetof] = ACTIONS(1637), - [anon_sym_DOLLARqnameof] = ACTIONS(1637), - [anon_sym_DOLLARvaconst] = ACTIONS(1637), - [anon_sym_DOLLARvaarg] = ACTIONS(1637), - [anon_sym_DOLLARvaref] = ACTIONS(1637), - [anon_sym_DOLLARvaexpr] = ACTIONS(1637), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [anon_sym_null] = ACTIONS(1637), - [anon_sym_DOLLARvacount] = ACTIONS(1637), - [anon_sym_DOLLAReval] = ACTIONS(1637), - [anon_sym_DOLLARis_const] = ACTIONS(1637), - [anon_sym_DOLLARsizeof] = ACTIONS(1637), - [anon_sym_DOLLARstringify] = ACTIONS(1637), - [anon_sym_DOLLARappend] = ACTIONS(1637), - [anon_sym_DOLLARconcat] = ACTIONS(1637), - [anon_sym_DOLLARdefined] = ACTIONS(1637), - [anon_sym_DOLLARembed] = ACTIONS(1637), - [anon_sym_DOLLARand] = ACTIONS(1637), - [anon_sym_DOLLARor] = ACTIONS(1637), - [anon_sym_DOLLARfeature] = ACTIONS(1637), - [anon_sym_DOLLARassignable] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_typeid] = ACTIONS(1637), - [anon_sym_LBRACE_PIPE] = ACTIONS(1639), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_char] = ACTIONS(1637), - [anon_sym_ichar] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [anon_sym_ushort] = ACTIONS(1637), - [anon_sym_uint] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_ulong] = ACTIONS(1637), - [anon_sym_int128] = ACTIONS(1637), - [anon_sym_uint128] = ACTIONS(1637), - [anon_sym_float] = ACTIONS(1637), - [anon_sym_double] = ACTIONS(1637), - [anon_sym_float16] = ACTIONS(1637), - [anon_sym_bfloat16] = ACTIONS(1637), - [anon_sym_float128] = ACTIONS(1637), - [anon_sym_iptr] = ACTIONS(1637), - [anon_sym_uptr] = ACTIONS(1637), - [anon_sym_isz] = ACTIONS(1637), - [anon_sym_usz] = ACTIONS(1637), - [anon_sym_anyfault] = ACTIONS(1637), - [anon_sym_any] = ACTIONS(1637), - [anon_sym_DOLLARtypeof] = ACTIONS(1637), - [anon_sym_DOLLARtypefrom] = ACTIONS(1637), - [anon_sym_DOLLARevaltype] = ACTIONS(1637), - [anon_sym_DOLLARvatype] = ACTIONS(1637), - [sym_real_literal] = ACTIONS(1639), - }, - [782] = { - [sym_line_comment] = STATE(782), - [sym_doc_comment] = STATE(782), - [sym_block_comment] = STATE(782), - [sym_ident] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_bytes_literal] = ACTIONS(1655), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1653), - [sym_at_ident] = ACTIONS(1655), - [sym_hash_ident] = ACTIONS(1655), - [sym_type_ident] = ACTIONS(1655), - [sym_ct_type_ident] = ACTIONS(1655), - [sym_const_ident] = ACTIONS(1653), - [sym_builtin] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_tlocal] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_var] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_assert] = ACTIONS(1653), - [anon_sym_nextcase] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_foreach] = ACTIONS(1653), - [anon_sym_foreach_r] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_asm] = ACTIONS(1653), - [anon_sym_DOLLARassert] = ACTIONS(1653), - [anon_sym_DOLLARerror] = ACTIONS(1653), - [anon_sym_DOLLARecho] = ACTIONS(1653), - [anon_sym_DOLLARif] = ACTIONS(1653), - [anon_sym_DOLLARendif] = ACTIONS(1653), - [anon_sym_DOLLARswitch] = ACTIONS(1653), - [anon_sym_DOLLARfor] = ACTIONS(1653), - [anon_sym_DOLLARforeach] = ACTIONS(1653), - [anon_sym_DOLLARalignof] = ACTIONS(1653), - [anon_sym_DOLLARextnameof] = ACTIONS(1653), - [anon_sym_DOLLARnameof] = ACTIONS(1653), - [anon_sym_DOLLARoffsetof] = ACTIONS(1653), - [anon_sym_DOLLARqnameof] = ACTIONS(1653), - [anon_sym_DOLLARvaconst] = ACTIONS(1653), - [anon_sym_DOLLARvaarg] = ACTIONS(1653), - [anon_sym_DOLLARvaref] = ACTIONS(1653), - [anon_sym_DOLLARvaexpr] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_DOLLARvacount] = ACTIONS(1653), - [anon_sym_DOLLAReval] = ACTIONS(1653), - [anon_sym_DOLLARis_const] = ACTIONS(1653), - [anon_sym_DOLLARsizeof] = ACTIONS(1653), - [anon_sym_DOLLARstringify] = ACTIONS(1653), - [anon_sym_DOLLARappend] = ACTIONS(1653), - [anon_sym_DOLLARconcat] = ACTIONS(1653), - [anon_sym_DOLLARdefined] = ACTIONS(1653), - [anon_sym_DOLLARembed] = ACTIONS(1653), - [anon_sym_DOLLARand] = ACTIONS(1653), - [anon_sym_DOLLARor] = ACTIONS(1653), - [anon_sym_DOLLARfeature] = ACTIONS(1653), - [anon_sym_DOLLARassignable] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_typeid] = ACTIONS(1653), - [anon_sym_LBRACE_PIPE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_ichar] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [anon_sym_ushort] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_ulong] = ACTIONS(1653), - [anon_sym_int128] = ACTIONS(1653), - [anon_sym_uint128] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_double] = ACTIONS(1653), - [anon_sym_float16] = ACTIONS(1653), - [anon_sym_bfloat16] = ACTIONS(1653), - [anon_sym_float128] = ACTIONS(1653), - [anon_sym_iptr] = ACTIONS(1653), - [anon_sym_uptr] = ACTIONS(1653), - [anon_sym_isz] = ACTIONS(1653), - [anon_sym_usz] = ACTIONS(1653), - [anon_sym_anyfault] = ACTIONS(1653), - [anon_sym_any] = ACTIONS(1653), - [anon_sym_DOLLARtypeof] = ACTIONS(1653), - [anon_sym_DOLLARtypefrom] = ACTIONS(1653), - [anon_sym_DOLLARevaltype] = ACTIONS(1653), - [anon_sym_DOLLARvatype] = ACTIONS(1653), - [sym_real_literal] = ACTIONS(1655), - }, - [783] = { - [sym_line_comment] = STATE(783), - [sym_doc_comment] = STATE(783), - [sym_block_comment] = STATE(783), - [sym_ident] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [anon_sym_BQUOTE] = ACTIONS(1385), - [sym_bytes_literal] = ACTIONS(1385), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1383), - [sym_at_ident] = ACTIONS(1385), - [sym_hash_ident] = ACTIONS(1385), - [sym_type_ident] = ACTIONS(1385), - [sym_ct_type_ident] = ACTIONS(1385), - [sym_const_ident] = ACTIONS(1383), - [sym_builtin] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_tlocal] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_var] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_defer] = ACTIONS(1383), - [anon_sym_assert] = ACTIONS(1383), - [anon_sym_nextcase] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_AMP_AMP] = ACTIONS(1385), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_foreach] = ACTIONS(1383), - [anon_sym_foreach_r] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_int] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_asm] = ACTIONS(1383), - [anon_sym_DOLLARassert] = ACTIONS(1383), - [anon_sym_DOLLARerror] = ACTIONS(1383), - [anon_sym_DOLLARecho] = ACTIONS(1383), - [anon_sym_DOLLARif] = ACTIONS(1383), - [anon_sym_DOLLARendif] = ACTIONS(1383), - [anon_sym_DOLLARswitch] = ACTIONS(1383), - [anon_sym_DOLLARfor] = ACTIONS(1383), - [anon_sym_DOLLARforeach] = ACTIONS(1383), - [anon_sym_DOLLARalignof] = ACTIONS(1383), - [anon_sym_DOLLARextnameof] = ACTIONS(1383), - [anon_sym_DOLLARnameof] = ACTIONS(1383), - [anon_sym_DOLLARoffsetof] = ACTIONS(1383), - [anon_sym_DOLLARqnameof] = ACTIONS(1383), - [anon_sym_DOLLARvaconst] = ACTIONS(1383), - [anon_sym_DOLLARvaarg] = ACTIONS(1383), - [anon_sym_DOLLARvaref] = ACTIONS(1383), - [anon_sym_DOLLARvaexpr] = ACTIONS(1383), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1383), - [anon_sym_DOLLARvacount] = ACTIONS(1383), - [anon_sym_DOLLAReval] = ACTIONS(1383), - [anon_sym_DOLLARis_const] = ACTIONS(1383), - [anon_sym_DOLLARsizeof] = ACTIONS(1383), - [anon_sym_DOLLARstringify] = ACTIONS(1383), - [anon_sym_DOLLARappend] = ACTIONS(1383), - [anon_sym_DOLLARconcat] = ACTIONS(1383), - [anon_sym_DOLLARdefined] = ACTIONS(1383), - [anon_sym_DOLLARembed] = ACTIONS(1383), - [anon_sym_DOLLARand] = ACTIONS(1383), - [anon_sym_DOLLARor] = ACTIONS(1383), - [anon_sym_DOLLARfeature] = ACTIONS(1383), - [anon_sym_DOLLARassignable] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_typeid] = ACTIONS(1383), - [anon_sym_LBRACE_PIPE] = ACTIONS(1385), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_bool] = ACTIONS(1383), - [anon_sym_char] = ACTIONS(1383), - [anon_sym_ichar] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [anon_sym_ushort] = ACTIONS(1383), - [anon_sym_uint] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_ulong] = ACTIONS(1383), - [anon_sym_int128] = ACTIONS(1383), - [anon_sym_uint128] = ACTIONS(1383), - [anon_sym_float] = ACTIONS(1383), - [anon_sym_double] = ACTIONS(1383), - [anon_sym_float16] = ACTIONS(1383), - [anon_sym_bfloat16] = ACTIONS(1383), - [anon_sym_float128] = ACTIONS(1383), - [anon_sym_iptr] = ACTIONS(1383), - [anon_sym_uptr] = ACTIONS(1383), - [anon_sym_isz] = ACTIONS(1383), - [anon_sym_usz] = ACTIONS(1383), - [anon_sym_anyfault] = ACTIONS(1383), - [anon_sym_any] = ACTIONS(1383), - [anon_sym_DOLLARtypeof] = ACTIONS(1383), - [anon_sym_DOLLARtypefrom] = ACTIONS(1383), - [anon_sym_DOLLARevaltype] = ACTIONS(1383), - [anon_sym_DOLLARvatype] = ACTIONS(1383), - [sym_real_literal] = ACTIONS(1385), - }, - [784] = { - [sym_line_comment] = STATE(784), - [sym_doc_comment] = STATE(784), - [sym_block_comment] = STATE(784), - [sym_ident] = ACTIONS(1411), - [sym_integer_literal] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_DQUOTE] = ACTIONS(1413), - [anon_sym_BQUOTE] = ACTIONS(1413), - [sym_bytes_literal] = ACTIONS(1413), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1411), - [sym_at_ident] = ACTIONS(1413), - [sym_hash_ident] = ACTIONS(1413), - [sym_type_ident] = ACTIONS(1413), - [sym_ct_type_ident] = ACTIONS(1413), - [sym_const_ident] = ACTIONS(1411), - [sym_builtin] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1411), - [anon_sym_tlocal] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1411), - [anon_sym_var] = ACTIONS(1411), - [anon_sym_return] = ACTIONS(1411), - [anon_sym_continue] = ACTIONS(1411), - [anon_sym_break] = ACTIONS(1411), - [anon_sym_defer] = ACTIONS(1411), - [anon_sym_assert] = ACTIONS(1411), - [anon_sym_nextcase] = ACTIONS(1411), - [anon_sym_switch] = ACTIONS(1411), - [anon_sym_AMP_AMP] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1411), - [anon_sym_for] = ACTIONS(1411), - [anon_sym_foreach] = ACTIONS(1411), - [anon_sym_foreach_r] = ACTIONS(1411), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(1411), - [anon_sym_int] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_asm] = ACTIONS(1411), - [anon_sym_DOLLARassert] = ACTIONS(1411), - [anon_sym_DOLLARerror] = ACTIONS(1411), - [anon_sym_DOLLARecho] = ACTIONS(1411), - [anon_sym_DOLLARif] = ACTIONS(1411), - [anon_sym_DOLLARendif] = ACTIONS(1411), - [anon_sym_DOLLARswitch] = ACTIONS(1411), - [anon_sym_DOLLARfor] = ACTIONS(1411), - [anon_sym_DOLLARforeach] = ACTIONS(1411), - [anon_sym_DOLLARalignof] = ACTIONS(1411), - [anon_sym_DOLLARextnameof] = ACTIONS(1411), - [anon_sym_DOLLARnameof] = ACTIONS(1411), - [anon_sym_DOLLARoffsetof] = ACTIONS(1411), - [anon_sym_DOLLARqnameof] = ACTIONS(1411), - [anon_sym_DOLLARvaconst] = ACTIONS(1411), - [anon_sym_DOLLARvaarg] = ACTIONS(1411), - [anon_sym_DOLLARvaref] = ACTIONS(1411), - [anon_sym_DOLLARvaexpr] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1411), - [anon_sym_false] = ACTIONS(1411), - [anon_sym_null] = ACTIONS(1411), - [anon_sym_DOLLARvacount] = ACTIONS(1411), - [anon_sym_DOLLAReval] = ACTIONS(1411), - [anon_sym_DOLLARis_const] = ACTIONS(1411), - [anon_sym_DOLLARsizeof] = ACTIONS(1411), - [anon_sym_DOLLARstringify] = ACTIONS(1411), - [anon_sym_DOLLARappend] = ACTIONS(1411), - [anon_sym_DOLLARconcat] = ACTIONS(1411), - [anon_sym_DOLLARdefined] = ACTIONS(1411), - [anon_sym_DOLLARembed] = ACTIONS(1411), - [anon_sym_DOLLARand] = ACTIONS(1411), - [anon_sym_DOLLARor] = ACTIONS(1411), - [anon_sym_DOLLARfeature] = ACTIONS(1411), - [anon_sym_DOLLARassignable] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [anon_sym_typeid] = ACTIONS(1411), - [anon_sym_LBRACE_PIPE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_bool] = ACTIONS(1411), - [anon_sym_char] = ACTIONS(1411), - [anon_sym_ichar] = ACTIONS(1411), - [anon_sym_short] = ACTIONS(1411), - [anon_sym_ushort] = ACTIONS(1411), - [anon_sym_uint] = ACTIONS(1411), - [anon_sym_long] = ACTIONS(1411), - [anon_sym_ulong] = ACTIONS(1411), - [anon_sym_int128] = ACTIONS(1411), - [anon_sym_uint128] = ACTIONS(1411), - [anon_sym_float] = ACTIONS(1411), - [anon_sym_double] = ACTIONS(1411), - [anon_sym_float16] = ACTIONS(1411), - [anon_sym_bfloat16] = ACTIONS(1411), - [anon_sym_float128] = ACTIONS(1411), - [anon_sym_iptr] = ACTIONS(1411), - [anon_sym_uptr] = ACTIONS(1411), - [anon_sym_isz] = ACTIONS(1411), - [anon_sym_usz] = ACTIONS(1411), - [anon_sym_anyfault] = ACTIONS(1411), - [anon_sym_any] = ACTIONS(1411), - [anon_sym_DOLLARtypeof] = ACTIONS(1411), - [anon_sym_DOLLARtypefrom] = ACTIONS(1411), - [anon_sym_DOLLARevaltype] = ACTIONS(1411), - [anon_sym_DOLLARvatype] = ACTIONS(1411), - [sym_real_literal] = ACTIONS(1413), - }, - [785] = { - [sym_line_comment] = STATE(785), - [sym_doc_comment] = STATE(785), - [sym_block_comment] = STATE(785), - [sym_ident] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [anon_sym_BQUOTE] = ACTIONS(1417), - [sym_bytes_literal] = ACTIONS(1417), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1415), - [sym_at_ident] = ACTIONS(1417), - [sym_hash_ident] = ACTIONS(1417), - [sym_type_ident] = ACTIONS(1417), - [sym_ct_type_ident] = ACTIONS(1417), - [sym_const_ident] = ACTIONS(1415), - [sym_builtin] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_tlocal] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1415), - [anon_sym_var] = ACTIONS(1415), - [anon_sym_return] = ACTIONS(1415), - [anon_sym_continue] = ACTIONS(1415), - [anon_sym_break] = ACTIONS(1415), - [anon_sym_defer] = ACTIONS(1415), - [anon_sym_assert] = ACTIONS(1415), - [anon_sym_nextcase] = ACTIONS(1415), - [anon_sym_switch] = ACTIONS(1415), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1415), - [anon_sym_for] = ACTIONS(1415), - [anon_sym_foreach] = ACTIONS(1415), - [anon_sym_foreach_r] = ACTIONS(1415), - [anon_sym_while] = ACTIONS(1415), - [anon_sym_do] = ACTIONS(1415), - [anon_sym_int] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_asm] = ACTIONS(1415), - [anon_sym_DOLLARassert] = ACTIONS(1415), - [anon_sym_DOLLARerror] = ACTIONS(1415), - [anon_sym_DOLLARecho] = ACTIONS(1415), - [anon_sym_DOLLARif] = ACTIONS(1415), - [anon_sym_DOLLARendif] = ACTIONS(1415), - [anon_sym_DOLLARswitch] = ACTIONS(1415), - [anon_sym_DOLLARfor] = ACTIONS(1415), - [anon_sym_DOLLARforeach] = ACTIONS(1415), - [anon_sym_DOLLARalignof] = ACTIONS(1415), - [anon_sym_DOLLARextnameof] = ACTIONS(1415), - [anon_sym_DOLLARnameof] = ACTIONS(1415), - [anon_sym_DOLLARoffsetof] = ACTIONS(1415), - [anon_sym_DOLLARqnameof] = ACTIONS(1415), - [anon_sym_DOLLARvaconst] = ACTIONS(1415), - [anon_sym_DOLLARvaarg] = ACTIONS(1415), - [anon_sym_DOLLARvaref] = ACTIONS(1415), - [anon_sym_DOLLARvaexpr] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1415), - [anon_sym_false] = ACTIONS(1415), - [anon_sym_null] = ACTIONS(1415), - [anon_sym_DOLLARvacount] = ACTIONS(1415), - [anon_sym_DOLLAReval] = ACTIONS(1415), - [anon_sym_DOLLARis_const] = ACTIONS(1415), - [anon_sym_DOLLARsizeof] = ACTIONS(1415), - [anon_sym_DOLLARstringify] = ACTIONS(1415), - [anon_sym_DOLLARappend] = ACTIONS(1415), - [anon_sym_DOLLARconcat] = ACTIONS(1415), - [anon_sym_DOLLARdefined] = ACTIONS(1415), - [anon_sym_DOLLARembed] = ACTIONS(1415), - [anon_sym_DOLLARand] = ACTIONS(1415), - [anon_sym_DOLLARor] = ACTIONS(1415), - [anon_sym_DOLLARfeature] = ACTIONS(1415), - [anon_sym_DOLLARassignable] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_typeid] = ACTIONS(1415), - [anon_sym_LBRACE_PIPE] = ACTIONS(1417), - [anon_sym_void] = ACTIONS(1415), - [anon_sym_bool] = ACTIONS(1415), - [anon_sym_char] = ACTIONS(1415), - [anon_sym_ichar] = ACTIONS(1415), - [anon_sym_short] = ACTIONS(1415), - [anon_sym_ushort] = ACTIONS(1415), - [anon_sym_uint] = ACTIONS(1415), - [anon_sym_long] = ACTIONS(1415), - [anon_sym_ulong] = ACTIONS(1415), - [anon_sym_int128] = ACTIONS(1415), - [anon_sym_uint128] = ACTIONS(1415), - [anon_sym_float] = ACTIONS(1415), - [anon_sym_double] = ACTIONS(1415), - [anon_sym_float16] = ACTIONS(1415), - [anon_sym_bfloat16] = ACTIONS(1415), - [anon_sym_float128] = ACTIONS(1415), - [anon_sym_iptr] = ACTIONS(1415), - [anon_sym_uptr] = ACTIONS(1415), - [anon_sym_isz] = ACTIONS(1415), - [anon_sym_usz] = ACTIONS(1415), - [anon_sym_anyfault] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_DOLLARtypeof] = ACTIONS(1415), - [anon_sym_DOLLARtypefrom] = ACTIONS(1415), - [anon_sym_DOLLARevaltype] = ACTIONS(1415), - [anon_sym_DOLLARvatype] = ACTIONS(1415), - [sym_real_literal] = ACTIONS(1417), - }, - [786] = { - [sym_line_comment] = STATE(786), - [sym_doc_comment] = STATE(786), - [sym_block_comment] = STATE(786), - [sym_ident] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [anon_sym_BQUOTE] = ACTIONS(1421), - [sym_bytes_literal] = ACTIONS(1421), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1419), - [sym_at_ident] = ACTIONS(1421), - [sym_hash_ident] = ACTIONS(1421), - [sym_type_ident] = ACTIONS(1421), - [sym_ct_type_ident] = ACTIONS(1421), - [sym_const_ident] = ACTIONS(1419), - [sym_builtin] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_tlocal] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_var] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_defer] = ACTIONS(1419), - [anon_sym_assert] = ACTIONS(1419), - [anon_sym_nextcase] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_foreach] = ACTIONS(1419), - [anon_sym_foreach_r] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_int] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_asm] = ACTIONS(1419), - [anon_sym_DOLLARassert] = ACTIONS(1419), - [anon_sym_DOLLARerror] = ACTIONS(1419), - [anon_sym_DOLLARecho] = ACTIONS(1419), - [anon_sym_DOLLARif] = ACTIONS(1419), - [anon_sym_DOLLARendif] = ACTIONS(1419), - [anon_sym_DOLLARswitch] = ACTIONS(1419), - [anon_sym_DOLLARfor] = ACTIONS(1419), - [anon_sym_DOLLARforeach] = ACTIONS(1419), - [anon_sym_DOLLARalignof] = ACTIONS(1419), - [anon_sym_DOLLARextnameof] = ACTIONS(1419), - [anon_sym_DOLLARnameof] = ACTIONS(1419), - [anon_sym_DOLLARoffsetof] = ACTIONS(1419), - [anon_sym_DOLLARqnameof] = ACTIONS(1419), - [anon_sym_DOLLARvaconst] = ACTIONS(1419), - [anon_sym_DOLLARvaarg] = ACTIONS(1419), - [anon_sym_DOLLARvaref] = ACTIONS(1419), - [anon_sym_DOLLARvaexpr] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_null] = ACTIONS(1419), - [anon_sym_DOLLARvacount] = ACTIONS(1419), - [anon_sym_DOLLAReval] = ACTIONS(1419), - [anon_sym_DOLLARis_const] = ACTIONS(1419), - [anon_sym_DOLLARsizeof] = ACTIONS(1419), - [anon_sym_DOLLARstringify] = ACTIONS(1419), - [anon_sym_DOLLARappend] = ACTIONS(1419), - [anon_sym_DOLLARconcat] = ACTIONS(1419), - [anon_sym_DOLLARdefined] = ACTIONS(1419), - [anon_sym_DOLLARembed] = ACTIONS(1419), - [anon_sym_DOLLARand] = ACTIONS(1419), - [anon_sym_DOLLARor] = ACTIONS(1419), - [anon_sym_DOLLARfeature] = ACTIONS(1419), - [anon_sym_DOLLARassignable] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_typeid] = ACTIONS(1419), - [anon_sym_LBRACE_PIPE] = ACTIONS(1421), - [anon_sym_void] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_ichar] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [anon_sym_ushort] = ACTIONS(1419), - [anon_sym_uint] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_ulong] = ACTIONS(1419), - [anon_sym_int128] = ACTIONS(1419), - [anon_sym_uint128] = ACTIONS(1419), - [anon_sym_float] = ACTIONS(1419), - [anon_sym_double] = ACTIONS(1419), - [anon_sym_float16] = ACTIONS(1419), - [anon_sym_bfloat16] = ACTIONS(1419), - [anon_sym_float128] = ACTIONS(1419), - [anon_sym_iptr] = ACTIONS(1419), - [anon_sym_uptr] = ACTIONS(1419), - [anon_sym_isz] = ACTIONS(1419), - [anon_sym_usz] = ACTIONS(1419), - [anon_sym_anyfault] = ACTIONS(1419), - [anon_sym_any] = ACTIONS(1419), - [anon_sym_DOLLARtypeof] = ACTIONS(1419), - [anon_sym_DOLLARtypefrom] = ACTIONS(1419), - [anon_sym_DOLLARevaltype] = ACTIONS(1419), - [anon_sym_DOLLARvatype] = ACTIONS(1419), - [sym_real_literal] = ACTIONS(1421), - }, - [787] = { - [sym_line_comment] = STATE(787), - [sym_doc_comment] = STATE(787), - [sym_block_comment] = STATE(787), - [sym_ident] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1433), - [sym_bytes_literal] = ACTIONS(1433), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1431), - [sym_at_ident] = ACTIONS(1433), - [sym_hash_ident] = ACTIONS(1433), - [sym_type_ident] = ACTIONS(1433), - [sym_ct_type_ident] = ACTIONS(1433), - [sym_const_ident] = ACTIONS(1431), - [sym_builtin] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_tlocal] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_var] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_defer] = ACTIONS(1431), - [anon_sym_assert] = ACTIONS(1431), - [anon_sym_nextcase] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_foreach] = ACTIONS(1431), - [anon_sym_foreach_r] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_int] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_asm] = ACTIONS(1431), - [anon_sym_DOLLARassert] = ACTIONS(1431), - [anon_sym_DOLLARerror] = ACTIONS(1431), - [anon_sym_DOLLARecho] = ACTIONS(1431), - [anon_sym_DOLLARif] = ACTIONS(1431), - [anon_sym_DOLLARendif] = ACTIONS(1431), - [anon_sym_DOLLARswitch] = ACTIONS(1431), - [anon_sym_DOLLARfor] = ACTIONS(1431), - [anon_sym_DOLLARforeach] = ACTIONS(1431), - [anon_sym_DOLLARalignof] = ACTIONS(1431), - [anon_sym_DOLLARextnameof] = ACTIONS(1431), - [anon_sym_DOLLARnameof] = ACTIONS(1431), - [anon_sym_DOLLARoffsetof] = ACTIONS(1431), - [anon_sym_DOLLARqnameof] = ACTIONS(1431), - [anon_sym_DOLLARvaconst] = ACTIONS(1431), - [anon_sym_DOLLARvaarg] = ACTIONS(1431), - [anon_sym_DOLLARvaref] = ACTIONS(1431), - [anon_sym_DOLLARvaexpr] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_null] = ACTIONS(1431), - [anon_sym_DOLLARvacount] = ACTIONS(1431), - [anon_sym_DOLLAReval] = ACTIONS(1431), - [anon_sym_DOLLARis_const] = ACTIONS(1431), - [anon_sym_DOLLARsizeof] = ACTIONS(1431), - [anon_sym_DOLLARstringify] = ACTIONS(1431), - [anon_sym_DOLLARappend] = ACTIONS(1431), - [anon_sym_DOLLARconcat] = ACTIONS(1431), - [anon_sym_DOLLARdefined] = ACTIONS(1431), - [anon_sym_DOLLARembed] = ACTIONS(1431), - [anon_sym_DOLLARand] = ACTIONS(1431), - [anon_sym_DOLLARor] = ACTIONS(1431), - [anon_sym_DOLLARfeature] = ACTIONS(1431), - [anon_sym_DOLLARassignable] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_typeid] = ACTIONS(1431), - [anon_sym_LBRACE_PIPE] = ACTIONS(1433), - [anon_sym_void] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_ichar] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [anon_sym_ushort] = ACTIONS(1431), - [anon_sym_uint] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_ulong] = ACTIONS(1431), - [anon_sym_int128] = ACTIONS(1431), - [anon_sym_uint128] = ACTIONS(1431), - [anon_sym_float] = ACTIONS(1431), - [anon_sym_double] = ACTIONS(1431), - [anon_sym_float16] = ACTIONS(1431), - [anon_sym_bfloat16] = ACTIONS(1431), - [anon_sym_float128] = ACTIONS(1431), - [anon_sym_iptr] = ACTIONS(1431), - [anon_sym_uptr] = ACTIONS(1431), - [anon_sym_isz] = ACTIONS(1431), - [anon_sym_usz] = ACTIONS(1431), - [anon_sym_anyfault] = ACTIONS(1431), - [anon_sym_any] = ACTIONS(1431), - [anon_sym_DOLLARtypeof] = ACTIONS(1431), - [anon_sym_DOLLARtypefrom] = ACTIONS(1431), - [anon_sym_DOLLARevaltype] = ACTIONS(1431), - [anon_sym_DOLLARvatype] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - }, [788] = { [sym_line_comment] = STATE(788), [sym_doc_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_ident] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_BQUOTE] = ACTIONS(1437), - [sym_bytes_literal] = ACTIONS(1437), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1435), - [sym_at_ident] = ACTIONS(1437), - [sym_hash_ident] = ACTIONS(1437), - [sym_type_ident] = ACTIONS(1437), - [sym_ct_type_ident] = ACTIONS(1437), - [sym_const_ident] = ACTIONS(1435), - [sym_builtin] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_tlocal] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_fn] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_var] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_defer] = ACTIONS(1435), - [anon_sym_assert] = ACTIONS(1435), - [anon_sym_nextcase] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_foreach] = ACTIONS(1435), - [anon_sym_foreach_r] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_int] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_asm] = ACTIONS(1435), - [anon_sym_DOLLARassert] = ACTIONS(1435), - [anon_sym_DOLLARerror] = ACTIONS(1435), - [anon_sym_DOLLARecho] = ACTIONS(1435), - [anon_sym_DOLLARif] = ACTIONS(1435), - [anon_sym_DOLLARendif] = ACTIONS(1435), - [anon_sym_DOLLARswitch] = ACTIONS(1435), - [anon_sym_DOLLARfor] = ACTIONS(1435), - [anon_sym_DOLLARforeach] = ACTIONS(1435), - [anon_sym_DOLLARalignof] = ACTIONS(1435), - [anon_sym_DOLLARextnameof] = ACTIONS(1435), - [anon_sym_DOLLARnameof] = ACTIONS(1435), - [anon_sym_DOLLARoffsetof] = ACTIONS(1435), - [anon_sym_DOLLARqnameof] = ACTIONS(1435), - [anon_sym_DOLLARvaconst] = ACTIONS(1435), - [anon_sym_DOLLARvaarg] = ACTIONS(1435), - [anon_sym_DOLLARvaref] = ACTIONS(1435), - [anon_sym_DOLLARvaexpr] = ACTIONS(1435), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), - [anon_sym_null] = ACTIONS(1435), - [anon_sym_DOLLARvacount] = ACTIONS(1435), - [anon_sym_DOLLAReval] = ACTIONS(1435), - [anon_sym_DOLLARis_const] = ACTIONS(1435), - [anon_sym_DOLLARsizeof] = ACTIONS(1435), - [anon_sym_DOLLARstringify] = ACTIONS(1435), - [anon_sym_DOLLARappend] = ACTIONS(1435), - [anon_sym_DOLLARconcat] = ACTIONS(1435), - [anon_sym_DOLLARdefined] = ACTIONS(1435), - [anon_sym_DOLLARembed] = ACTIONS(1435), - [anon_sym_DOLLARand] = ACTIONS(1435), - [anon_sym_DOLLARor] = ACTIONS(1435), - [anon_sym_DOLLARfeature] = ACTIONS(1435), - [anon_sym_DOLLARassignable] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_typeid] = ACTIONS(1435), - [anon_sym_LBRACE_PIPE] = ACTIONS(1437), - [anon_sym_void] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_ichar] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [anon_sym_ushort] = ACTIONS(1435), - [anon_sym_uint] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_ulong] = ACTIONS(1435), - [anon_sym_int128] = ACTIONS(1435), - [anon_sym_uint128] = ACTIONS(1435), - [anon_sym_float] = ACTIONS(1435), - [anon_sym_double] = ACTIONS(1435), - [anon_sym_float16] = ACTIONS(1435), - [anon_sym_bfloat16] = ACTIONS(1435), - [anon_sym_float128] = ACTIONS(1435), - [anon_sym_iptr] = ACTIONS(1435), - [anon_sym_uptr] = ACTIONS(1435), - [anon_sym_isz] = ACTIONS(1435), - [anon_sym_usz] = ACTIONS(1435), - [anon_sym_anyfault] = ACTIONS(1435), - [anon_sym_any] = ACTIONS(1435), - [anon_sym_DOLLARtypeof] = ACTIONS(1435), - [anon_sym_DOLLARtypefrom] = ACTIONS(1435), - [anon_sym_DOLLARevaltype] = ACTIONS(1435), - [anon_sym_DOLLARvatype] = ACTIONS(1435), - [sym_real_literal] = ACTIONS(1437), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARendif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, [789] = { [sym_line_comment] = STATE(789), [sym_doc_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_ident] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [anon_sym_BQUOTE] = ACTIONS(1441), - [sym_bytes_literal] = ACTIONS(1441), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1439), - [sym_at_ident] = ACTIONS(1441), - [sym_hash_ident] = ACTIONS(1441), - [sym_type_ident] = ACTIONS(1441), - [sym_ct_type_ident] = ACTIONS(1441), - [sym_const_ident] = ACTIONS(1439), - [sym_builtin] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_tlocal] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_var] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_defer] = ACTIONS(1439), - [anon_sym_assert] = ACTIONS(1439), - [anon_sym_nextcase] = ACTIONS(1439), - [anon_sym_switch] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_foreach] = ACTIONS(1439), - [anon_sym_foreach_r] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_do] = ACTIONS(1439), - [anon_sym_int] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_asm] = ACTIONS(1439), - [anon_sym_DOLLARassert] = ACTIONS(1439), - [anon_sym_DOLLARerror] = ACTIONS(1439), - [anon_sym_DOLLARecho] = ACTIONS(1439), - [anon_sym_DOLLARif] = ACTIONS(1439), - [anon_sym_DOLLARendif] = ACTIONS(1439), - [anon_sym_DOLLARswitch] = ACTIONS(1439), - [anon_sym_DOLLARfor] = ACTIONS(1439), - [anon_sym_DOLLARforeach] = ACTIONS(1439), - [anon_sym_DOLLARalignof] = ACTIONS(1439), - [anon_sym_DOLLARextnameof] = ACTIONS(1439), - [anon_sym_DOLLARnameof] = ACTIONS(1439), - [anon_sym_DOLLARoffsetof] = ACTIONS(1439), - [anon_sym_DOLLARqnameof] = ACTIONS(1439), - [anon_sym_DOLLARvaconst] = ACTIONS(1439), - [anon_sym_DOLLARvaarg] = ACTIONS(1439), - [anon_sym_DOLLARvaref] = ACTIONS(1439), - [anon_sym_DOLLARvaexpr] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_DOLLARvacount] = ACTIONS(1439), - [anon_sym_DOLLAReval] = ACTIONS(1439), - [anon_sym_DOLLARis_const] = ACTIONS(1439), - [anon_sym_DOLLARsizeof] = ACTIONS(1439), - [anon_sym_DOLLARstringify] = ACTIONS(1439), - [anon_sym_DOLLARappend] = ACTIONS(1439), - [anon_sym_DOLLARconcat] = ACTIONS(1439), - [anon_sym_DOLLARdefined] = ACTIONS(1439), - [anon_sym_DOLLARembed] = ACTIONS(1439), - [anon_sym_DOLLARand] = ACTIONS(1439), - [anon_sym_DOLLARor] = ACTIONS(1439), - [anon_sym_DOLLARfeature] = ACTIONS(1439), - [anon_sym_DOLLARassignable] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_typeid] = ACTIONS(1439), - [anon_sym_LBRACE_PIPE] = ACTIONS(1441), - [anon_sym_void] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_ichar] = ACTIONS(1439), - [anon_sym_short] = ACTIONS(1439), - [anon_sym_ushort] = ACTIONS(1439), - [anon_sym_uint] = ACTIONS(1439), - [anon_sym_long] = ACTIONS(1439), - [anon_sym_ulong] = ACTIONS(1439), - [anon_sym_int128] = ACTIONS(1439), - [anon_sym_uint128] = ACTIONS(1439), - [anon_sym_float] = ACTIONS(1439), - [anon_sym_double] = ACTIONS(1439), - [anon_sym_float16] = ACTIONS(1439), - [anon_sym_bfloat16] = ACTIONS(1439), - [anon_sym_float128] = ACTIONS(1439), - [anon_sym_iptr] = ACTIONS(1439), - [anon_sym_uptr] = ACTIONS(1439), - [anon_sym_isz] = ACTIONS(1439), - [anon_sym_usz] = ACTIONS(1439), - [anon_sym_anyfault] = ACTIONS(1439), - [anon_sym_any] = ACTIONS(1439), - [anon_sym_DOLLARtypeof] = ACTIONS(1439), - [anon_sym_DOLLARtypefrom] = ACTIONS(1439), - [anon_sym_DOLLARevaltype] = ACTIONS(1439), - [anon_sym_DOLLARvatype] = ACTIONS(1439), - [sym_real_literal] = ACTIONS(1441), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARendif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, [790] = { [sym_line_comment] = STATE(790), [sym_doc_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_ident] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [anon_sym_BQUOTE] = ACTIONS(1445), - [sym_bytes_literal] = ACTIONS(1445), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1443), - [sym_at_ident] = ACTIONS(1445), - [sym_hash_ident] = ACTIONS(1445), - [sym_type_ident] = ACTIONS(1445), - [sym_ct_type_ident] = ACTIONS(1445), - [sym_const_ident] = ACTIONS(1443), - [sym_builtin] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_tlocal] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_fn] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_var] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_defer] = ACTIONS(1443), - [anon_sym_assert] = ACTIONS(1443), - [anon_sym_nextcase] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_AMP_AMP] = ACTIONS(1445), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_foreach] = ACTIONS(1443), - [anon_sym_foreach_r] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_int] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_asm] = ACTIONS(1443), - [anon_sym_DOLLARassert] = ACTIONS(1443), - [anon_sym_DOLLARerror] = ACTIONS(1443), - [anon_sym_DOLLARecho] = ACTIONS(1443), - [anon_sym_DOLLARif] = ACTIONS(1443), - [anon_sym_DOLLARendif] = ACTIONS(1443), - [anon_sym_DOLLARswitch] = ACTIONS(1443), - [anon_sym_DOLLARfor] = ACTIONS(1443), - [anon_sym_DOLLARforeach] = ACTIONS(1443), - [anon_sym_DOLLARalignof] = ACTIONS(1443), - [anon_sym_DOLLARextnameof] = ACTIONS(1443), - [anon_sym_DOLLARnameof] = ACTIONS(1443), - [anon_sym_DOLLARoffsetof] = ACTIONS(1443), - [anon_sym_DOLLARqnameof] = ACTIONS(1443), - [anon_sym_DOLLARvaconst] = ACTIONS(1443), - [anon_sym_DOLLARvaarg] = ACTIONS(1443), - [anon_sym_DOLLARvaref] = ACTIONS(1443), - [anon_sym_DOLLARvaexpr] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1443), - [anon_sym_false] = ACTIONS(1443), - [anon_sym_null] = ACTIONS(1443), - [anon_sym_DOLLARvacount] = ACTIONS(1443), - [anon_sym_DOLLAReval] = ACTIONS(1443), - [anon_sym_DOLLARis_const] = ACTIONS(1443), - [anon_sym_DOLLARsizeof] = ACTIONS(1443), - [anon_sym_DOLLARstringify] = ACTIONS(1443), - [anon_sym_DOLLARappend] = ACTIONS(1443), - [anon_sym_DOLLARconcat] = ACTIONS(1443), - [anon_sym_DOLLARdefined] = ACTIONS(1443), - [anon_sym_DOLLARembed] = ACTIONS(1443), - [anon_sym_DOLLARand] = ACTIONS(1443), - [anon_sym_DOLLARor] = ACTIONS(1443), - [anon_sym_DOLLARfeature] = ACTIONS(1443), - [anon_sym_DOLLARassignable] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_typeid] = ACTIONS(1443), - [anon_sym_LBRACE_PIPE] = ACTIONS(1445), - [anon_sym_void] = ACTIONS(1443), - [anon_sym_bool] = ACTIONS(1443), - [anon_sym_char] = ACTIONS(1443), - [anon_sym_ichar] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [anon_sym_ushort] = ACTIONS(1443), - [anon_sym_uint] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_ulong] = ACTIONS(1443), - [anon_sym_int128] = ACTIONS(1443), - [anon_sym_uint128] = ACTIONS(1443), - [anon_sym_float] = ACTIONS(1443), - [anon_sym_double] = ACTIONS(1443), - [anon_sym_float16] = ACTIONS(1443), - [anon_sym_bfloat16] = ACTIONS(1443), - [anon_sym_float128] = ACTIONS(1443), - [anon_sym_iptr] = ACTIONS(1443), - [anon_sym_uptr] = ACTIONS(1443), - [anon_sym_isz] = ACTIONS(1443), - [anon_sym_usz] = ACTIONS(1443), - [anon_sym_anyfault] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_DOLLARtypeof] = ACTIONS(1443), - [anon_sym_DOLLARtypefrom] = ACTIONS(1443), - [anon_sym_DOLLARevaltype] = ACTIONS(1443), - [anon_sym_DOLLARvatype] = ACTIONS(1443), - [sym_real_literal] = ACTIONS(1445), - }, - [791] = { - [sym_line_comment] = STATE(791), - [sym_doc_comment] = STATE(791), - [sym_block_comment] = STATE(791), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARendif] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARappend] = ACTIONS(1487), - [anon_sym_DOLLARconcat] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), - }, - [792] = { - [sym_line_comment] = STATE(792), - [sym_doc_comment] = STATE(792), - [sym_block_comment] = STATE(792), - [sym_ident] = ACTIONS(1621), - [sym_integer_literal] = ACTIONS(1623), - [anon_sym_SQUOTE] = ACTIONS(1623), - [anon_sym_DQUOTE] = ACTIONS(1623), - [anon_sym_BQUOTE] = ACTIONS(1623), - [sym_bytes_literal] = ACTIONS(1623), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1621), - [sym_at_ident] = ACTIONS(1623), - [sym_hash_ident] = ACTIONS(1623), - [sym_type_ident] = ACTIONS(1623), - [sym_ct_type_ident] = ACTIONS(1623), - [sym_const_ident] = ACTIONS(1621), - [sym_builtin] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_tlocal] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_var] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_defer] = ACTIONS(1621), - [anon_sym_assert] = ACTIONS(1621), - [anon_sym_nextcase] = ACTIONS(1621), - [anon_sym_switch] = ACTIONS(1621), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_foreach] = ACTIONS(1621), - [anon_sym_foreach_r] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_int] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_asm] = ACTIONS(1621), - [anon_sym_DOLLARassert] = ACTIONS(1621), - [anon_sym_DOLLARerror] = ACTIONS(1621), - [anon_sym_DOLLARecho] = ACTIONS(1621), - [anon_sym_DOLLARif] = ACTIONS(1621), - [anon_sym_DOLLARendif] = ACTIONS(1621), - [anon_sym_DOLLARswitch] = ACTIONS(1621), - [anon_sym_DOLLARfor] = ACTIONS(1621), - [anon_sym_DOLLARforeach] = ACTIONS(1621), - [anon_sym_DOLLARalignof] = ACTIONS(1621), - [anon_sym_DOLLARextnameof] = ACTIONS(1621), - [anon_sym_DOLLARnameof] = ACTIONS(1621), - [anon_sym_DOLLARoffsetof] = ACTIONS(1621), - [anon_sym_DOLLARqnameof] = ACTIONS(1621), - [anon_sym_DOLLARvaconst] = ACTIONS(1621), - [anon_sym_DOLLARvaarg] = ACTIONS(1621), - [anon_sym_DOLLARvaref] = ACTIONS(1621), - [anon_sym_DOLLARvaexpr] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(1621), - [anon_sym_false] = ACTIONS(1621), - [anon_sym_null] = ACTIONS(1621), - [anon_sym_DOLLARvacount] = ACTIONS(1621), - [anon_sym_DOLLAReval] = ACTIONS(1621), - [anon_sym_DOLLARis_const] = ACTIONS(1621), - [anon_sym_DOLLARsizeof] = ACTIONS(1621), - [anon_sym_DOLLARstringify] = ACTIONS(1621), - [anon_sym_DOLLARappend] = ACTIONS(1621), - [anon_sym_DOLLARconcat] = ACTIONS(1621), - [anon_sym_DOLLARdefined] = ACTIONS(1621), - [anon_sym_DOLLARembed] = ACTIONS(1621), - [anon_sym_DOLLARand] = ACTIONS(1621), - [anon_sym_DOLLARor] = ACTIONS(1621), - [anon_sym_DOLLARfeature] = ACTIONS(1621), - [anon_sym_DOLLARassignable] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1623), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_typeid] = ACTIONS(1621), - [anon_sym_LBRACE_PIPE] = ACTIONS(1623), - [anon_sym_void] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_char] = ACTIONS(1621), - [anon_sym_ichar] = ACTIONS(1621), - [anon_sym_short] = ACTIONS(1621), - [anon_sym_ushort] = ACTIONS(1621), - [anon_sym_uint] = ACTIONS(1621), - [anon_sym_long] = ACTIONS(1621), - [anon_sym_ulong] = ACTIONS(1621), - [anon_sym_int128] = ACTIONS(1621), - [anon_sym_uint128] = ACTIONS(1621), - [anon_sym_float] = ACTIONS(1621), - [anon_sym_double] = ACTIONS(1621), - [anon_sym_float16] = ACTIONS(1621), - [anon_sym_bfloat16] = ACTIONS(1621), - [anon_sym_float128] = ACTIONS(1621), - [anon_sym_iptr] = ACTIONS(1621), - [anon_sym_uptr] = ACTIONS(1621), - [anon_sym_isz] = ACTIONS(1621), - [anon_sym_usz] = ACTIONS(1621), - [anon_sym_anyfault] = ACTIONS(1621), - [anon_sym_any] = ACTIONS(1621), - [anon_sym_DOLLARtypeof] = ACTIONS(1621), - [anon_sym_DOLLARtypefrom] = ACTIONS(1621), - [anon_sym_DOLLARevaltype] = ACTIONS(1621), - [anon_sym_DOLLARvatype] = ACTIONS(1621), - [sym_real_literal] = ACTIONS(1623), - }, - [793] = { - [sym_line_comment] = STATE(793), - [sym_doc_comment] = STATE(793), - [sym_block_comment] = STATE(793), - [sym_ident] = ACTIONS(1399), - [sym_integer_literal] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_BQUOTE] = ACTIONS(1401), - [sym_bytes_literal] = ACTIONS(1401), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1399), - [sym_at_ident] = ACTIONS(1401), - [sym_hash_ident] = ACTIONS(1401), - [sym_type_ident] = ACTIONS(1401), - [sym_ct_type_ident] = ACTIONS(1401), - [sym_const_ident] = ACTIONS(1399), - [sym_builtin] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_static] = ACTIONS(1399), - [anon_sym_tlocal] = ACTIONS(1399), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_var] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_defer] = ACTIONS(1399), - [anon_sym_assert] = ACTIONS(1399), - [anon_sym_nextcase] = ACTIONS(1399), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_foreach] = ACTIONS(1399), - [anon_sym_foreach_r] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_int] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_asm] = ACTIONS(1399), - [anon_sym_DOLLARassert] = ACTIONS(1399), - [anon_sym_DOLLARerror] = ACTIONS(1399), - [anon_sym_DOLLARecho] = ACTIONS(1399), - [anon_sym_DOLLARif] = ACTIONS(1399), - [anon_sym_DOLLARendif] = ACTIONS(1399), - [anon_sym_DOLLARswitch] = ACTIONS(1399), - [anon_sym_DOLLARfor] = ACTIONS(1399), - [anon_sym_DOLLARforeach] = ACTIONS(1399), - [anon_sym_DOLLARalignof] = ACTIONS(1399), - [anon_sym_DOLLARextnameof] = ACTIONS(1399), - [anon_sym_DOLLARnameof] = ACTIONS(1399), - [anon_sym_DOLLARoffsetof] = ACTIONS(1399), - [anon_sym_DOLLARqnameof] = ACTIONS(1399), - [anon_sym_DOLLARvaconst] = ACTIONS(1399), - [anon_sym_DOLLARvaarg] = ACTIONS(1399), - [anon_sym_DOLLARvaref] = ACTIONS(1399), - [anon_sym_DOLLARvaexpr] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1399), - [anon_sym_false] = ACTIONS(1399), - [anon_sym_null] = ACTIONS(1399), - [anon_sym_DOLLARvacount] = ACTIONS(1399), - [anon_sym_DOLLAReval] = ACTIONS(1399), - [anon_sym_DOLLARis_const] = ACTIONS(1399), - [anon_sym_DOLLARsizeof] = ACTIONS(1399), - [anon_sym_DOLLARstringify] = ACTIONS(1399), - [anon_sym_DOLLARappend] = ACTIONS(1399), - [anon_sym_DOLLARconcat] = ACTIONS(1399), - [anon_sym_DOLLARdefined] = ACTIONS(1399), - [anon_sym_DOLLARembed] = ACTIONS(1399), - [anon_sym_DOLLARand] = ACTIONS(1399), - [anon_sym_DOLLARor] = ACTIONS(1399), - [anon_sym_DOLLARfeature] = ACTIONS(1399), - [anon_sym_DOLLARassignable] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_typeid] = ACTIONS(1399), - [anon_sym_LBRACE_PIPE] = ACTIONS(1401), - [anon_sym_void] = ACTIONS(1399), - [anon_sym_bool] = ACTIONS(1399), - [anon_sym_char] = ACTIONS(1399), - [anon_sym_ichar] = ACTIONS(1399), - [anon_sym_short] = ACTIONS(1399), - [anon_sym_ushort] = ACTIONS(1399), - [anon_sym_uint] = ACTIONS(1399), - [anon_sym_long] = ACTIONS(1399), - [anon_sym_ulong] = ACTIONS(1399), - [anon_sym_int128] = ACTIONS(1399), - [anon_sym_uint128] = ACTIONS(1399), - [anon_sym_float] = ACTIONS(1399), - [anon_sym_double] = ACTIONS(1399), - [anon_sym_float16] = ACTIONS(1399), - [anon_sym_bfloat16] = ACTIONS(1399), - [anon_sym_float128] = ACTIONS(1399), - [anon_sym_iptr] = ACTIONS(1399), - [anon_sym_uptr] = ACTIONS(1399), - [anon_sym_isz] = ACTIONS(1399), - [anon_sym_usz] = ACTIONS(1399), - [anon_sym_anyfault] = ACTIONS(1399), - [anon_sym_any] = ACTIONS(1399), - [anon_sym_DOLLARtypeof] = ACTIONS(1399), - [anon_sym_DOLLARtypefrom] = ACTIONS(1399), - [anon_sym_DOLLARevaltype] = ACTIONS(1399), - [anon_sym_DOLLARvatype] = ACTIONS(1399), - [sym_real_literal] = ACTIONS(1401), - }, - [794] = { - [sym_line_comment] = STATE(794), - [sym_doc_comment] = STATE(794), - [sym_block_comment] = STATE(794), - [sym_ident] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_BQUOTE] = ACTIONS(1425), - [sym_bytes_literal] = ACTIONS(1425), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1423), - [sym_at_ident] = ACTIONS(1425), - [sym_hash_ident] = ACTIONS(1425), - [sym_type_ident] = ACTIONS(1425), - [sym_ct_type_ident] = ACTIONS(1425), - [sym_const_ident] = ACTIONS(1423), - [sym_builtin] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_tlocal] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_var] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_defer] = ACTIONS(1423), - [anon_sym_assert] = ACTIONS(1423), - [anon_sym_nextcase] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_foreach] = ACTIONS(1423), - [anon_sym_foreach_r] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_int] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_asm] = ACTIONS(1423), - [anon_sym_DOLLARassert] = ACTIONS(1423), - [anon_sym_DOLLARerror] = ACTIONS(1423), - [anon_sym_DOLLARecho] = ACTIONS(1423), - [anon_sym_DOLLARif] = ACTIONS(1423), - [anon_sym_DOLLARendif] = ACTIONS(1423), - [anon_sym_DOLLARswitch] = ACTIONS(1423), - [anon_sym_DOLLARfor] = ACTIONS(1423), - [anon_sym_DOLLARforeach] = ACTIONS(1423), - [anon_sym_DOLLARalignof] = ACTIONS(1423), - [anon_sym_DOLLARextnameof] = ACTIONS(1423), - [anon_sym_DOLLARnameof] = ACTIONS(1423), - [anon_sym_DOLLARoffsetof] = ACTIONS(1423), - [anon_sym_DOLLARqnameof] = ACTIONS(1423), - [anon_sym_DOLLARvaconst] = ACTIONS(1423), - [anon_sym_DOLLARvaarg] = ACTIONS(1423), - [anon_sym_DOLLARvaref] = ACTIONS(1423), - [anon_sym_DOLLARvaexpr] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_null] = ACTIONS(1423), - [anon_sym_DOLLARvacount] = ACTIONS(1423), - [anon_sym_DOLLAReval] = ACTIONS(1423), - [anon_sym_DOLLARis_const] = ACTIONS(1423), - [anon_sym_DOLLARsizeof] = ACTIONS(1423), - [anon_sym_DOLLARstringify] = ACTIONS(1423), - [anon_sym_DOLLARappend] = ACTIONS(1423), - [anon_sym_DOLLARconcat] = ACTIONS(1423), - [anon_sym_DOLLARdefined] = ACTIONS(1423), - [anon_sym_DOLLARembed] = ACTIONS(1423), - [anon_sym_DOLLARand] = ACTIONS(1423), - [anon_sym_DOLLARor] = ACTIONS(1423), - [anon_sym_DOLLARfeature] = ACTIONS(1423), - [anon_sym_DOLLARassignable] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_typeid] = ACTIONS(1423), - [anon_sym_LBRACE_PIPE] = ACTIONS(1425), - [anon_sym_void] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_ichar] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [anon_sym_ushort] = ACTIONS(1423), - [anon_sym_uint] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_ulong] = ACTIONS(1423), - [anon_sym_int128] = ACTIONS(1423), - [anon_sym_uint128] = ACTIONS(1423), - [anon_sym_float] = ACTIONS(1423), - [anon_sym_double] = ACTIONS(1423), - [anon_sym_float16] = ACTIONS(1423), - [anon_sym_bfloat16] = ACTIONS(1423), - [anon_sym_float128] = ACTIONS(1423), - [anon_sym_iptr] = ACTIONS(1423), - [anon_sym_uptr] = ACTIONS(1423), - [anon_sym_isz] = ACTIONS(1423), - [anon_sym_usz] = ACTIONS(1423), - [anon_sym_anyfault] = ACTIONS(1423), - [anon_sym_any] = ACTIONS(1423), - [anon_sym_DOLLARtypeof] = ACTIONS(1423), - [anon_sym_DOLLARtypefrom] = ACTIONS(1423), - [anon_sym_DOLLARevaltype] = ACTIONS(1423), - [anon_sym_DOLLARvatype] = ACTIONS(1423), - [sym_real_literal] = ACTIONS(1425), - }, - [795] = { - [sym_line_comment] = STATE(795), - [sym_doc_comment] = STATE(795), - [sym_block_comment] = STATE(795), - [sym_ident] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_BQUOTE] = ACTIONS(1381), - [sym_bytes_literal] = ACTIONS(1381), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1379), - [sym_at_ident] = ACTIONS(1381), - [sym_hash_ident] = ACTIONS(1381), - [sym_type_ident] = ACTIONS(1381), - [sym_ct_type_ident] = ACTIONS(1381), - [sym_const_ident] = ACTIONS(1379), - [sym_builtin] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1379), - [anon_sym_tlocal] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_fn] = ACTIONS(1379), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1379), - [anon_sym_var] = ACTIONS(1379), - [anon_sym_return] = ACTIONS(1379), - [anon_sym_continue] = ACTIONS(1379), - [anon_sym_break] = ACTIONS(1379), - [anon_sym_defer] = ACTIONS(1379), - [anon_sym_assert] = ACTIONS(1379), - [anon_sym_nextcase] = ACTIONS(1379), - [anon_sym_switch] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1379), - [anon_sym_for] = ACTIONS(1379), - [anon_sym_foreach] = ACTIONS(1379), - [anon_sym_foreach_r] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1379), - [anon_sym_do] = ACTIONS(1379), - [anon_sym_int] = ACTIONS(1379), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_asm] = ACTIONS(1379), - [anon_sym_DOLLARassert] = ACTIONS(1379), - [anon_sym_DOLLARerror] = ACTIONS(1379), - [anon_sym_DOLLARecho] = ACTIONS(1379), - [anon_sym_DOLLARif] = ACTIONS(1379), - [anon_sym_DOLLARendif] = ACTIONS(1379), - [anon_sym_DOLLARswitch] = ACTIONS(1379), - [anon_sym_DOLLARfor] = ACTIONS(1379), - [anon_sym_DOLLARforeach] = ACTIONS(1379), - [anon_sym_DOLLARalignof] = ACTIONS(1379), - [anon_sym_DOLLARextnameof] = ACTIONS(1379), - [anon_sym_DOLLARnameof] = ACTIONS(1379), - [anon_sym_DOLLARoffsetof] = ACTIONS(1379), - [anon_sym_DOLLARqnameof] = ACTIONS(1379), - [anon_sym_DOLLARvaconst] = ACTIONS(1379), - [anon_sym_DOLLARvaarg] = ACTIONS(1379), - [anon_sym_DOLLARvaref] = ACTIONS(1379), - [anon_sym_DOLLARvaexpr] = ACTIONS(1379), - [anon_sym_true] = ACTIONS(1379), - [anon_sym_false] = ACTIONS(1379), - [anon_sym_null] = ACTIONS(1379), - [anon_sym_DOLLARvacount] = ACTIONS(1379), - [anon_sym_DOLLAReval] = ACTIONS(1379), - [anon_sym_DOLLARis_const] = ACTIONS(1379), - [anon_sym_DOLLARsizeof] = ACTIONS(1379), - [anon_sym_DOLLARstringify] = ACTIONS(1379), - [anon_sym_DOLLARappend] = ACTIONS(1379), - [anon_sym_DOLLARconcat] = ACTIONS(1379), - [anon_sym_DOLLARdefined] = ACTIONS(1379), - [anon_sym_DOLLARembed] = ACTIONS(1379), - [anon_sym_DOLLARand] = ACTIONS(1379), - [anon_sym_DOLLARor] = ACTIONS(1379), - [anon_sym_DOLLARfeature] = ACTIONS(1379), - [anon_sym_DOLLARassignable] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_typeid] = ACTIONS(1379), - [anon_sym_LBRACE_PIPE] = ACTIONS(1381), - [anon_sym_void] = ACTIONS(1379), - [anon_sym_bool] = ACTIONS(1379), - [anon_sym_char] = ACTIONS(1379), - [anon_sym_ichar] = ACTIONS(1379), - [anon_sym_short] = ACTIONS(1379), - [anon_sym_ushort] = ACTIONS(1379), - [anon_sym_uint] = ACTIONS(1379), - [anon_sym_long] = ACTIONS(1379), - [anon_sym_ulong] = ACTIONS(1379), - [anon_sym_int128] = ACTIONS(1379), - [anon_sym_uint128] = ACTIONS(1379), - [anon_sym_float] = ACTIONS(1379), - [anon_sym_double] = ACTIONS(1379), - [anon_sym_float16] = ACTIONS(1379), - [anon_sym_bfloat16] = ACTIONS(1379), - [anon_sym_float128] = ACTIONS(1379), - [anon_sym_iptr] = ACTIONS(1379), - [anon_sym_uptr] = ACTIONS(1379), - [anon_sym_isz] = ACTIONS(1379), - [anon_sym_usz] = ACTIONS(1379), - [anon_sym_anyfault] = ACTIONS(1379), - [anon_sym_any] = ACTIONS(1379), - [anon_sym_DOLLARtypeof] = ACTIONS(1379), - [anon_sym_DOLLARtypefrom] = ACTIONS(1379), - [anon_sym_DOLLARevaltype] = ACTIONS(1379), - [anon_sym_DOLLARvatype] = ACTIONS(1379), - [sym_real_literal] = ACTIONS(1381), - }, - [796] = { - [sym_line_comment] = STATE(796), - [sym_doc_comment] = STATE(796), - [sym_block_comment] = STATE(796), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARendif] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), - }, - [797] = { - [sym_line_comment] = STATE(797), - [sym_doc_comment] = STATE(797), - [sym_block_comment] = STATE(797), - [sym_ident] = ACTIONS(1451), - [sym_integer_literal] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym_bytes_literal] = ACTIONS(1453), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1451), - [sym_at_ident] = ACTIONS(1453), - [sym_hash_ident] = ACTIONS(1453), - [sym_type_ident] = ACTIONS(1453), - [sym_ct_type_ident] = ACTIONS(1453), - [sym_const_ident] = ACTIONS(1451), - [sym_builtin] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_tlocal] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_var] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_defer] = ACTIONS(1451), - [anon_sym_assert] = ACTIONS(1451), - [anon_sym_nextcase] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_AMP_AMP] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_foreach] = ACTIONS(1451), - [anon_sym_foreach_r] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_int] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_asm] = ACTIONS(1451), - [anon_sym_DOLLARassert] = ACTIONS(1451), - [anon_sym_DOLLARerror] = ACTIONS(1451), - [anon_sym_DOLLARecho] = ACTIONS(1451), - [anon_sym_DOLLARif] = ACTIONS(1451), - [anon_sym_DOLLARendif] = ACTIONS(1451), - [anon_sym_DOLLARswitch] = ACTIONS(1451), - [anon_sym_DOLLARfor] = ACTIONS(1451), - [anon_sym_DOLLARforeach] = ACTIONS(1451), - [anon_sym_DOLLARalignof] = ACTIONS(1451), - [anon_sym_DOLLARextnameof] = ACTIONS(1451), - [anon_sym_DOLLARnameof] = ACTIONS(1451), - [anon_sym_DOLLARoffsetof] = ACTIONS(1451), - [anon_sym_DOLLARqnameof] = ACTIONS(1451), - [anon_sym_DOLLARvaconst] = ACTIONS(1451), - [anon_sym_DOLLARvaarg] = ACTIONS(1451), - [anon_sym_DOLLARvaref] = ACTIONS(1451), - [anon_sym_DOLLARvaexpr] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1451), - [anon_sym_false] = ACTIONS(1451), - [anon_sym_null] = ACTIONS(1451), - [anon_sym_DOLLARvacount] = ACTIONS(1451), - [anon_sym_DOLLAReval] = ACTIONS(1451), - [anon_sym_DOLLARis_const] = ACTIONS(1451), - [anon_sym_DOLLARsizeof] = ACTIONS(1451), - [anon_sym_DOLLARstringify] = ACTIONS(1451), - [anon_sym_DOLLARappend] = ACTIONS(1451), - [anon_sym_DOLLARconcat] = ACTIONS(1451), - [anon_sym_DOLLARdefined] = ACTIONS(1451), - [anon_sym_DOLLARembed] = ACTIONS(1451), - [anon_sym_DOLLARand] = ACTIONS(1451), - [anon_sym_DOLLARor] = ACTIONS(1451), - [anon_sym_DOLLARfeature] = ACTIONS(1451), - [anon_sym_DOLLARassignable] = ACTIONS(1451), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_typeid] = ACTIONS(1451), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1451), - [anon_sym_bool] = ACTIONS(1451), - [anon_sym_char] = ACTIONS(1451), - [anon_sym_ichar] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [anon_sym_ushort] = ACTIONS(1451), - [anon_sym_uint] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_ulong] = ACTIONS(1451), - [anon_sym_int128] = ACTIONS(1451), - [anon_sym_uint128] = ACTIONS(1451), - [anon_sym_float] = ACTIONS(1451), - [anon_sym_double] = ACTIONS(1451), - [anon_sym_float16] = ACTIONS(1451), - [anon_sym_bfloat16] = ACTIONS(1451), - [anon_sym_float128] = ACTIONS(1451), - [anon_sym_iptr] = ACTIONS(1451), - [anon_sym_uptr] = ACTIONS(1451), - [anon_sym_isz] = ACTIONS(1451), - [anon_sym_usz] = ACTIONS(1451), - [anon_sym_anyfault] = ACTIONS(1451), - [anon_sym_any] = ACTIONS(1451), - [anon_sym_DOLLARtypeof] = ACTIONS(1451), - [anon_sym_DOLLARtypefrom] = ACTIONS(1451), - [anon_sym_DOLLARevaltype] = ACTIONS(1451), - [anon_sym_DOLLARvatype] = ACTIONS(1451), - [sym_real_literal] = ACTIONS(1453), - }, - [798] = { - [sym_line_comment] = STATE(798), - [sym_doc_comment] = STATE(798), - [sym_block_comment] = STATE(798), - [sym_ident] = ACTIONS(1455), - [sym_integer_literal] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_BQUOTE] = ACTIONS(1457), - [sym_bytes_literal] = ACTIONS(1457), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1455), - [sym_at_ident] = ACTIONS(1457), - [sym_hash_ident] = ACTIONS(1457), - [sym_type_ident] = ACTIONS(1457), - [sym_ct_type_ident] = ACTIONS(1457), - [sym_const_ident] = ACTIONS(1455), - [sym_builtin] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_tlocal] = ACTIONS(1455), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_var] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_defer] = ACTIONS(1455), - [anon_sym_assert] = ACTIONS(1455), - [anon_sym_nextcase] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_AMP_AMP] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_foreach] = ACTIONS(1455), - [anon_sym_foreach_r] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_int] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_asm] = ACTIONS(1455), - [anon_sym_DOLLARassert] = ACTIONS(1455), - [anon_sym_DOLLARerror] = ACTIONS(1455), - [anon_sym_DOLLARecho] = ACTIONS(1455), - [anon_sym_DOLLARif] = ACTIONS(1455), - [anon_sym_DOLLARendif] = ACTIONS(1455), - [anon_sym_DOLLARswitch] = ACTIONS(1455), - [anon_sym_DOLLARfor] = ACTIONS(1455), - [anon_sym_DOLLARforeach] = ACTIONS(1455), - [anon_sym_DOLLARalignof] = ACTIONS(1455), - [anon_sym_DOLLARextnameof] = ACTIONS(1455), - [anon_sym_DOLLARnameof] = ACTIONS(1455), - [anon_sym_DOLLARoffsetof] = ACTIONS(1455), - [anon_sym_DOLLARqnameof] = ACTIONS(1455), - [anon_sym_DOLLARvaconst] = ACTIONS(1455), - [anon_sym_DOLLARvaarg] = ACTIONS(1455), - [anon_sym_DOLLARvaref] = ACTIONS(1455), - [anon_sym_DOLLARvaexpr] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1455), - [anon_sym_false] = ACTIONS(1455), - [anon_sym_null] = ACTIONS(1455), - [anon_sym_DOLLARvacount] = ACTIONS(1455), - [anon_sym_DOLLAReval] = ACTIONS(1455), - [anon_sym_DOLLARis_const] = ACTIONS(1455), - [anon_sym_DOLLARsizeof] = ACTIONS(1455), - [anon_sym_DOLLARstringify] = ACTIONS(1455), - [anon_sym_DOLLARappend] = ACTIONS(1455), - [anon_sym_DOLLARconcat] = ACTIONS(1455), - [anon_sym_DOLLARdefined] = ACTIONS(1455), - [anon_sym_DOLLARembed] = ACTIONS(1455), - [anon_sym_DOLLARand] = ACTIONS(1455), - [anon_sym_DOLLARor] = ACTIONS(1455), - [anon_sym_DOLLARfeature] = ACTIONS(1455), - [anon_sym_DOLLARassignable] = ACTIONS(1455), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_typeid] = ACTIONS(1455), - [anon_sym_LBRACE_PIPE] = ACTIONS(1457), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_bool] = ACTIONS(1455), - [anon_sym_char] = ACTIONS(1455), - [anon_sym_ichar] = ACTIONS(1455), - [anon_sym_short] = ACTIONS(1455), - [anon_sym_ushort] = ACTIONS(1455), - [anon_sym_uint] = ACTIONS(1455), - [anon_sym_long] = ACTIONS(1455), - [anon_sym_ulong] = ACTIONS(1455), - [anon_sym_int128] = ACTIONS(1455), - [anon_sym_uint128] = ACTIONS(1455), - [anon_sym_float] = ACTIONS(1455), - [anon_sym_double] = ACTIONS(1455), - [anon_sym_float16] = ACTIONS(1455), - [anon_sym_bfloat16] = ACTIONS(1455), - [anon_sym_float128] = ACTIONS(1455), - [anon_sym_iptr] = ACTIONS(1455), - [anon_sym_uptr] = ACTIONS(1455), - [anon_sym_isz] = ACTIONS(1455), - [anon_sym_usz] = ACTIONS(1455), - [anon_sym_anyfault] = ACTIONS(1455), - [anon_sym_any] = ACTIONS(1455), - [anon_sym_DOLLARtypeof] = ACTIONS(1455), - [anon_sym_DOLLARtypefrom] = ACTIONS(1455), - [anon_sym_DOLLARevaltype] = ACTIONS(1455), - [anon_sym_DOLLARvatype] = ACTIONS(1455), - [sym_real_literal] = ACTIONS(1457), - }, - [799] = { - [sym_line_comment] = STATE(799), - [sym_doc_comment] = STATE(799), - [sym_block_comment] = STATE(799), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARendif] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARappend] = ACTIONS(1483), - [anon_sym_DOLLARconcat] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), - }, - [800] = { - [sym_line_comment] = STATE(800), - [sym_doc_comment] = STATE(800), - [sym_block_comment] = STATE(800), - [sym_ident] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_bytes_literal] = ACTIONS(1539), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1537), - [sym_at_ident] = ACTIONS(1539), - [sym_hash_ident] = ACTIONS(1539), - [sym_type_ident] = ACTIONS(1539), - [sym_ct_type_ident] = ACTIONS(1539), - [sym_const_ident] = ACTIONS(1537), - [sym_builtin] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_tlocal] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_fn] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_defer] = ACTIONS(1537), - [anon_sym_assert] = ACTIONS(1537), - [anon_sym_nextcase] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_foreach] = ACTIONS(1537), - [anon_sym_foreach_r] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_int] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_asm] = ACTIONS(1537), - [anon_sym_DOLLARassert] = ACTIONS(1537), - [anon_sym_DOLLARerror] = ACTIONS(1537), - [anon_sym_DOLLARecho] = ACTIONS(1537), - [anon_sym_DOLLARif] = ACTIONS(1537), - [anon_sym_DOLLARendif] = ACTIONS(1537), - [anon_sym_DOLLARswitch] = ACTIONS(1537), - [anon_sym_DOLLARfor] = ACTIONS(1537), - [anon_sym_DOLLARforeach] = ACTIONS(1537), - [anon_sym_DOLLARalignof] = ACTIONS(1537), - [anon_sym_DOLLARextnameof] = ACTIONS(1537), - [anon_sym_DOLLARnameof] = ACTIONS(1537), - [anon_sym_DOLLARoffsetof] = ACTIONS(1537), - [anon_sym_DOLLARqnameof] = ACTIONS(1537), - [anon_sym_DOLLARvaconst] = ACTIONS(1537), - [anon_sym_DOLLARvaarg] = ACTIONS(1537), - [anon_sym_DOLLARvaref] = ACTIONS(1537), - [anon_sym_DOLLARvaexpr] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1537), - [anon_sym_false] = ACTIONS(1537), - [anon_sym_null] = ACTIONS(1537), - [anon_sym_DOLLARvacount] = ACTIONS(1537), - [anon_sym_DOLLAReval] = ACTIONS(1537), - [anon_sym_DOLLARis_const] = ACTIONS(1537), - [anon_sym_DOLLARsizeof] = ACTIONS(1537), - [anon_sym_DOLLARstringify] = ACTIONS(1537), - [anon_sym_DOLLARappend] = ACTIONS(1537), - [anon_sym_DOLLARconcat] = ACTIONS(1537), - [anon_sym_DOLLARdefined] = ACTIONS(1537), - [anon_sym_DOLLARembed] = ACTIONS(1537), - [anon_sym_DOLLARand] = ACTIONS(1537), - [anon_sym_DOLLARor] = ACTIONS(1537), - [anon_sym_DOLLARfeature] = ACTIONS(1537), - [anon_sym_DOLLARassignable] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_typeid] = ACTIONS(1537), - [anon_sym_LBRACE_PIPE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_ichar] = ACTIONS(1537), - [anon_sym_short] = ACTIONS(1537), - [anon_sym_ushort] = ACTIONS(1537), - [anon_sym_uint] = ACTIONS(1537), - [anon_sym_long] = ACTIONS(1537), - [anon_sym_ulong] = ACTIONS(1537), - [anon_sym_int128] = ACTIONS(1537), - [anon_sym_uint128] = ACTIONS(1537), - [anon_sym_float] = ACTIONS(1537), - [anon_sym_double] = ACTIONS(1537), - [anon_sym_float16] = ACTIONS(1537), - [anon_sym_bfloat16] = ACTIONS(1537), - [anon_sym_float128] = ACTIONS(1537), - [anon_sym_iptr] = ACTIONS(1537), - [anon_sym_uptr] = ACTIONS(1537), - [anon_sym_isz] = ACTIONS(1537), - [anon_sym_usz] = ACTIONS(1537), - [anon_sym_anyfault] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_DOLLARtypeof] = ACTIONS(1537), - [anon_sym_DOLLARtypefrom] = ACTIONS(1537), - [anon_sym_DOLLARevaltype] = ACTIONS(1537), - [anon_sym_DOLLARvatype] = ACTIONS(1537), - [sym_real_literal] = ACTIONS(1539), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARendif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, - [801] = { - [sym_line_comment] = STATE(801), - [sym_doc_comment] = STATE(801), - [sym_block_comment] = STATE(801), - [sym_ident] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_BQUOTE] = ACTIONS(1551), - [sym_bytes_literal] = ACTIONS(1551), + [791] = { + [sym_line_comment] = STATE(791), + [sym_doc_comment] = STATE(791), + [sym_block_comment] = STATE(791), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1549), - [sym_at_ident] = ACTIONS(1551), - [sym_hash_ident] = ACTIONS(1551), - [sym_type_ident] = ACTIONS(1551), - [sym_ct_type_ident] = ACTIONS(1551), - [sym_const_ident] = ACTIONS(1549), - [sym_builtin] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_tlocal] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_fn] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_var] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_defer] = ACTIONS(1549), - [anon_sym_assert] = ACTIONS(1549), - [anon_sym_nextcase] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_AMP_AMP] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_foreach] = ACTIONS(1549), - [anon_sym_foreach_r] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_int] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_asm] = ACTIONS(1549), - [anon_sym_DOLLARassert] = ACTIONS(1549), - [anon_sym_DOLLARerror] = ACTIONS(1549), - [anon_sym_DOLLARecho] = ACTIONS(1549), - [anon_sym_DOLLARif] = ACTIONS(1549), - [anon_sym_DOLLARendif] = ACTIONS(1549), - [anon_sym_DOLLARswitch] = ACTIONS(1549), - [anon_sym_DOLLARfor] = ACTIONS(1549), - [anon_sym_DOLLARforeach] = ACTIONS(1549), - [anon_sym_DOLLARalignof] = ACTIONS(1549), - [anon_sym_DOLLARextnameof] = ACTIONS(1549), - [anon_sym_DOLLARnameof] = ACTIONS(1549), - [anon_sym_DOLLARoffsetof] = ACTIONS(1549), - [anon_sym_DOLLARqnameof] = ACTIONS(1549), - [anon_sym_DOLLARvaconst] = ACTIONS(1549), - [anon_sym_DOLLARvaarg] = ACTIONS(1549), - [anon_sym_DOLLARvaref] = ACTIONS(1549), - [anon_sym_DOLLARvaexpr] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(1549), - [anon_sym_false] = ACTIONS(1549), - [anon_sym_null] = ACTIONS(1549), - [anon_sym_DOLLARvacount] = ACTIONS(1549), - [anon_sym_DOLLAReval] = ACTIONS(1549), - [anon_sym_DOLLARis_const] = ACTIONS(1549), - [anon_sym_DOLLARsizeof] = ACTIONS(1549), - [anon_sym_DOLLARstringify] = ACTIONS(1549), - [anon_sym_DOLLARappend] = ACTIONS(1549), - [anon_sym_DOLLARconcat] = ACTIONS(1549), - [anon_sym_DOLLARdefined] = ACTIONS(1549), - [anon_sym_DOLLARembed] = ACTIONS(1549), - [anon_sym_DOLLARand] = ACTIONS(1549), - [anon_sym_DOLLARor] = ACTIONS(1549), - [anon_sym_DOLLARfeature] = ACTIONS(1549), - [anon_sym_DOLLARassignable] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_typeid] = ACTIONS(1549), - [anon_sym_LBRACE_PIPE] = ACTIONS(1551), - [anon_sym_void] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_ichar] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [anon_sym_ushort] = ACTIONS(1549), - [anon_sym_uint] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_ulong] = ACTIONS(1549), - [anon_sym_int128] = ACTIONS(1549), - [anon_sym_uint128] = ACTIONS(1549), - [anon_sym_float] = ACTIONS(1549), - [anon_sym_double] = ACTIONS(1549), - [anon_sym_float16] = ACTIONS(1549), - [anon_sym_bfloat16] = ACTIONS(1549), - [anon_sym_float128] = ACTIONS(1549), - [anon_sym_iptr] = ACTIONS(1549), - [anon_sym_uptr] = ACTIONS(1549), - [anon_sym_isz] = ACTIONS(1549), - [anon_sym_usz] = ACTIONS(1549), - [anon_sym_anyfault] = ACTIONS(1549), - [anon_sym_any] = ACTIONS(1549), - [anon_sym_DOLLARtypeof] = ACTIONS(1549), - [anon_sym_DOLLARtypefrom] = ACTIONS(1549), - [anon_sym_DOLLARevaltype] = ACTIONS(1549), - [anon_sym_DOLLARvatype] = ACTIONS(1549), - [sym_real_literal] = ACTIONS(1551), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARendif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, - [802] = { - [sym_line_comment] = STATE(802), - [sym_doc_comment] = STATE(802), - [sym_block_comment] = STATE(802), - [sym_ident] = ACTIONS(1189), - [sym_integer_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_DQUOTE] = ACTIONS(1191), - [anon_sym_BQUOTE] = ACTIONS(1191), - [sym_bytes_literal] = ACTIONS(1191), + [792] = { + [sym_line_comment] = STATE(792), + [sym_doc_comment] = STATE(792), + [sym_block_comment] = STATE(792), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1189), - [sym_at_ident] = ACTIONS(1191), - [sym_hash_ident] = ACTIONS(1191), - [sym_type_ident] = ACTIONS(1191), - [sym_ct_type_ident] = ACTIONS(1191), - [sym_const_ident] = ACTIONS(1189), - [sym_builtin] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1191), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_static] = ACTIONS(1189), - [anon_sym_tlocal] = ACTIONS(1189), - [anon_sym_SEMI] = ACTIONS(1191), - [anon_sym_fn] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_const] = ACTIONS(1189), - [anon_sym_var] = ACTIONS(1189), - [anon_sym_return] = ACTIONS(1189), - [anon_sym_continue] = ACTIONS(1189), - [anon_sym_break] = ACTIONS(1189), - [anon_sym_defer] = ACTIONS(1189), - [anon_sym_assert] = ACTIONS(1189), - [anon_sym_nextcase] = ACTIONS(1189), - [anon_sym_switch] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1189), - [anon_sym_for] = ACTIONS(1189), - [anon_sym_foreach] = ACTIONS(1189), - [anon_sym_foreach_r] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1189), - [anon_sym_int] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_asm] = ACTIONS(1189), - [anon_sym_DOLLARassert] = ACTIONS(1189), - [anon_sym_DOLLARerror] = ACTIONS(1189), - [anon_sym_DOLLARecho] = ACTIONS(1189), - [anon_sym_DOLLARif] = ACTIONS(1189), - [anon_sym_DOLLARendif] = ACTIONS(1189), - [anon_sym_DOLLARswitch] = ACTIONS(1189), - [anon_sym_DOLLARfor] = ACTIONS(1189), - [anon_sym_DOLLARforeach] = ACTIONS(1189), - [anon_sym_DOLLARalignof] = ACTIONS(1189), - [anon_sym_DOLLARextnameof] = ACTIONS(1189), - [anon_sym_DOLLARnameof] = ACTIONS(1189), - [anon_sym_DOLLARoffsetof] = ACTIONS(1189), - [anon_sym_DOLLARqnameof] = ACTIONS(1189), - [anon_sym_DOLLARvaconst] = ACTIONS(1189), - [anon_sym_DOLLARvaarg] = ACTIONS(1189), - [anon_sym_DOLLARvaref] = ACTIONS(1189), - [anon_sym_DOLLARvaexpr] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1189), - [anon_sym_false] = ACTIONS(1189), - [anon_sym_null] = ACTIONS(1189), - [anon_sym_DOLLARvacount] = ACTIONS(1189), - [anon_sym_DOLLAReval] = ACTIONS(1189), - [anon_sym_DOLLARis_const] = ACTIONS(1189), - [anon_sym_DOLLARsizeof] = ACTIONS(1189), - [anon_sym_DOLLARstringify] = ACTIONS(1189), - [anon_sym_DOLLARappend] = ACTIONS(1189), - [anon_sym_DOLLARconcat] = ACTIONS(1189), - [anon_sym_DOLLARdefined] = ACTIONS(1189), - [anon_sym_DOLLARembed] = ACTIONS(1189), - [anon_sym_DOLLARand] = ACTIONS(1189), - [anon_sym_DOLLARor] = ACTIONS(1189), - [anon_sym_DOLLARfeature] = ACTIONS(1189), - [anon_sym_DOLLARassignable] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1191), - [anon_sym_TILDE] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1191), - [anon_sym_DASH_DASH] = ACTIONS(1191), - [anon_sym_typeid] = ACTIONS(1189), - [anon_sym_LBRACE_PIPE] = ACTIONS(1191), - [anon_sym_void] = ACTIONS(1189), - [anon_sym_bool] = ACTIONS(1189), - [anon_sym_char] = ACTIONS(1189), - [anon_sym_ichar] = ACTIONS(1189), - [anon_sym_short] = ACTIONS(1189), - [anon_sym_ushort] = ACTIONS(1189), - [anon_sym_uint] = ACTIONS(1189), - [anon_sym_long] = ACTIONS(1189), - [anon_sym_ulong] = ACTIONS(1189), - [anon_sym_int128] = ACTIONS(1189), - [anon_sym_uint128] = ACTIONS(1189), - [anon_sym_float] = ACTIONS(1189), - [anon_sym_double] = ACTIONS(1189), - [anon_sym_float16] = ACTIONS(1189), - [anon_sym_bfloat16] = ACTIONS(1189), - [anon_sym_float128] = ACTIONS(1189), - [anon_sym_iptr] = ACTIONS(1189), - [anon_sym_uptr] = ACTIONS(1189), - [anon_sym_isz] = ACTIONS(1189), - [anon_sym_usz] = ACTIONS(1189), - [anon_sym_anyfault] = ACTIONS(1189), - [anon_sym_any] = ACTIONS(1189), - [anon_sym_DOLLARtypeof] = ACTIONS(1189), - [anon_sym_DOLLARtypefrom] = ACTIONS(1189), - [anon_sym_DOLLARevaltype] = ACTIONS(1189), - [anon_sym_DOLLARvatype] = ACTIONS(1189), - [sym_real_literal] = ACTIONS(1191), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARendif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [803] = { - [sym_line_comment] = STATE(803), - [sym_doc_comment] = STATE(803), - [sym_block_comment] = STATE(803), + [793] = { + [sym_line_comment] = STATE(793), + [sym_doc_comment] = STATE(793), + [sym_block_comment] = STATE(793), [sym_ident] = ACTIONS(1613), [sym_integer_literal] = ACTIONS(1615), [anon_sym_SQUOTE] = ACTIONS(1615), @@ -118109,10 +116874,700 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1613), [sym_real_literal] = ACTIONS(1615), }, - [804] = { - [sym_line_comment] = STATE(804), - [sym_doc_comment] = STATE(804), - [sym_block_comment] = STATE(804), + [794] = { + [sym_line_comment] = STATE(794), + [sym_doc_comment] = STATE(794), + [sym_block_comment] = STATE(794), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARendif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), + }, + [795] = { + [sym_line_comment] = STATE(795), + [sym_doc_comment] = STATE(795), + [sym_block_comment] = STATE(795), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARendif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), + }, + [796] = { + [sym_line_comment] = STATE(796), + [sym_doc_comment] = STATE(796), + [sym_block_comment] = STATE(796), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARendif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), + }, + [797] = { + [sym_line_comment] = STATE(797), + [sym_doc_comment] = STATE(797), + [sym_block_comment] = STATE(797), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARendif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), + }, + [798] = { + [sym_line_comment] = STATE(798), + [sym_doc_comment] = STATE(798), + [sym_block_comment] = STATE(798), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), + }, + [799] = { + [sym_line_comment] = STATE(799), + [sym_doc_comment] = STATE(799), + [sym_block_comment] = STATE(799), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARendif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), + }, + [800] = { + [sym_line_comment] = STATE(800), + [sym_doc_comment] = STATE(800), + [sym_block_comment] = STATE(800), [sym_ident] = ACTIONS(1641), [sym_integer_literal] = ACTIONS(1643), [anon_sym_SQUOTE] = ACTIONS(1643), @@ -118224,1609 +117679,1724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1641), [sym_real_literal] = ACTIONS(1643), }, + [801] = { + [sym_line_comment] = STATE(801), + [sym_doc_comment] = STATE(801), + [sym_block_comment] = STATE(801), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARendif] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), + }, + [802] = { + [sym_line_comment] = STATE(802), + [sym_doc_comment] = STATE(802), + [sym_block_comment] = STATE(802), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARendif] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), + }, + [803] = { + [sym_line_comment] = STATE(803), + [sym_doc_comment] = STATE(803), + [sym_block_comment] = STATE(803), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARendif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), + }, + [804] = { + [sym_line_comment] = STATE(804), + [sym_doc_comment] = STATE(804), + [sym_block_comment] = STATE(804), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARendforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), + }, [805] = { [sym_line_comment] = STATE(805), [sym_doc_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_ident] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [anon_sym_BQUOTE] = ACTIONS(1531), - [sym_bytes_literal] = ACTIONS(1531), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1529), - [sym_at_ident] = ACTIONS(1531), - [sym_hash_ident] = ACTIONS(1531), - [sym_type_ident] = ACTIONS(1531), - [sym_ct_type_ident] = ACTIONS(1531), - [sym_const_ident] = ACTIONS(1529), - [sym_builtin] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_tlocal] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_var] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_defer] = ACTIONS(1529), - [anon_sym_assert] = ACTIONS(1529), - [anon_sym_nextcase] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_foreach] = ACTIONS(1529), - [anon_sym_foreach_r] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_int] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_asm] = ACTIONS(1529), - [anon_sym_DOLLARassert] = ACTIONS(1529), - [anon_sym_DOLLARerror] = ACTIONS(1529), - [anon_sym_DOLLARecho] = ACTIONS(1529), - [anon_sym_DOLLARif] = ACTIONS(1529), - [anon_sym_DOLLARendif] = ACTIONS(1529), - [anon_sym_DOLLARswitch] = ACTIONS(1529), - [anon_sym_DOLLARfor] = ACTIONS(1529), - [anon_sym_DOLLARforeach] = ACTIONS(1529), - [anon_sym_DOLLARalignof] = ACTIONS(1529), - [anon_sym_DOLLARextnameof] = ACTIONS(1529), - [anon_sym_DOLLARnameof] = ACTIONS(1529), - [anon_sym_DOLLARoffsetof] = ACTIONS(1529), - [anon_sym_DOLLARqnameof] = ACTIONS(1529), - [anon_sym_DOLLARvaconst] = ACTIONS(1529), - [anon_sym_DOLLARvaarg] = ACTIONS(1529), - [anon_sym_DOLLARvaref] = ACTIONS(1529), - [anon_sym_DOLLARvaexpr] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1529), - [anon_sym_false] = ACTIONS(1529), - [anon_sym_null] = ACTIONS(1529), - [anon_sym_DOLLARvacount] = ACTIONS(1529), - [anon_sym_DOLLAReval] = ACTIONS(1529), - [anon_sym_DOLLARis_const] = ACTIONS(1529), - [anon_sym_DOLLARsizeof] = ACTIONS(1529), - [anon_sym_DOLLARstringify] = ACTIONS(1529), - [anon_sym_DOLLARappend] = ACTIONS(1529), - [anon_sym_DOLLARconcat] = ACTIONS(1529), - [anon_sym_DOLLARdefined] = ACTIONS(1529), - [anon_sym_DOLLARembed] = ACTIONS(1529), - [anon_sym_DOLLARand] = ACTIONS(1529), - [anon_sym_DOLLARor] = ACTIONS(1529), - [anon_sym_DOLLARfeature] = ACTIONS(1529), - [anon_sym_DOLLARassignable] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_typeid] = ACTIONS(1529), - [anon_sym_LBRACE_PIPE] = ACTIONS(1531), - [anon_sym_void] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_ichar] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [anon_sym_ushort] = ACTIONS(1529), - [anon_sym_uint] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_ulong] = ACTIONS(1529), - [anon_sym_int128] = ACTIONS(1529), - [anon_sym_uint128] = ACTIONS(1529), - [anon_sym_float] = ACTIONS(1529), - [anon_sym_double] = ACTIONS(1529), - [anon_sym_float16] = ACTIONS(1529), - [anon_sym_bfloat16] = ACTIONS(1529), - [anon_sym_float128] = ACTIONS(1529), - [anon_sym_iptr] = ACTIONS(1529), - [anon_sym_uptr] = ACTIONS(1529), - [anon_sym_isz] = ACTIONS(1529), - [anon_sym_usz] = ACTIONS(1529), - [anon_sym_anyfault] = ACTIONS(1529), - [anon_sym_any] = ACTIONS(1529), - [anon_sym_DOLLARtypeof] = ACTIONS(1529), - [anon_sym_DOLLARtypefrom] = ACTIONS(1529), - [anon_sym_DOLLARevaltype] = ACTIONS(1529), - [anon_sym_DOLLARvatype] = ACTIONS(1529), - [sym_real_literal] = ACTIONS(1531), + [sym_ident] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1707), + [anon_sym_SQUOTE] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [anon_sym_BQUOTE] = ACTIONS(1707), + [sym_bytes_literal] = ACTIONS(1707), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1705), + [sym_at_ident] = ACTIONS(1707), + [sym_hash_ident] = ACTIONS(1707), + [sym_type_ident] = ACTIONS(1707), + [sym_ct_type_ident] = ACTIONS(1707), + [sym_const_ident] = ACTIONS(1705), + [sym_builtin] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_tlocal] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_fn] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_var] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_defer] = ACTIONS(1705), + [anon_sym_assert] = ACTIONS(1705), + [anon_sym_nextcase] = ACTIONS(1705), + [anon_sym_switch] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_foreach] = ACTIONS(1705), + [anon_sym_foreach_r] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_int] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_asm] = ACTIONS(1705), + [anon_sym_DOLLARassert] = ACTIONS(1705), + [anon_sym_DOLLARerror] = ACTIONS(1705), + [anon_sym_DOLLARecho] = ACTIONS(1705), + [anon_sym_DOLLARif] = ACTIONS(1705), + [anon_sym_DOLLARswitch] = ACTIONS(1705), + [anon_sym_DOLLARfor] = ACTIONS(1705), + [anon_sym_DOLLARforeach] = ACTIONS(1705), + [anon_sym_DOLLARalignof] = ACTIONS(1705), + [anon_sym_DOLLARextnameof] = ACTIONS(1705), + [anon_sym_DOLLARnameof] = ACTIONS(1705), + [anon_sym_DOLLARoffsetof] = ACTIONS(1705), + [anon_sym_DOLLARqnameof] = ACTIONS(1705), + [anon_sym_DOLLARvaconst] = ACTIONS(1705), + [anon_sym_DOLLARvaarg] = ACTIONS(1705), + [anon_sym_DOLLARvaref] = ACTIONS(1705), + [anon_sym_DOLLARvaexpr] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [anon_sym_DOLLARvacount] = ACTIONS(1705), + [anon_sym_DOLLAReval] = ACTIONS(1705), + [anon_sym_DOLLARis_const] = ACTIONS(1705), + [anon_sym_DOLLARsizeof] = ACTIONS(1705), + [anon_sym_DOLLARstringify] = ACTIONS(1705), + [anon_sym_DOLLARappend] = ACTIONS(1705), + [anon_sym_DOLLARconcat] = ACTIONS(1705), + [anon_sym_DOLLARdefined] = ACTIONS(1705), + [anon_sym_DOLLARembed] = ACTIONS(1705), + [anon_sym_DOLLARand] = ACTIONS(1705), + [anon_sym_DOLLARor] = ACTIONS(1705), + [anon_sym_DOLLARfeature] = ACTIONS(1705), + [anon_sym_DOLLARassignable] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_typeid] = ACTIONS(1705), + [anon_sym_LBRACE_PIPE] = ACTIONS(1707), + [anon_sym_void] = ACTIONS(1705), + [anon_sym_bool] = ACTIONS(1705), + [anon_sym_char] = ACTIONS(1705), + [anon_sym_ichar] = ACTIONS(1705), + [anon_sym_short] = ACTIONS(1705), + [anon_sym_ushort] = ACTIONS(1705), + [anon_sym_uint] = ACTIONS(1705), + [anon_sym_long] = ACTIONS(1705), + [anon_sym_ulong] = ACTIONS(1705), + [anon_sym_int128] = ACTIONS(1705), + [anon_sym_uint128] = ACTIONS(1705), + [anon_sym_float] = ACTIONS(1705), + [anon_sym_double] = ACTIONS(1705), + [anon_sym_float16] = ACTIONS(1705), + [anon_sym_bfloat16] = ACTIONS(1705), + [anon_sym_float128] = ACTIONS(1705), + [anon_sym_iptr] = ACTIONS(1705), + [anon_sym_uptr] = ACTIONS(1705), + [anon_sym_isz] = ACTIONS(1705), + [anon_sym_usz] = ACTIONS(1705), + [anon_sym_anyfault] = ACTIONS(1705), + [anon_sym_any] = ACTIONS(1705), + [anon_sym_DOLLARtypeof] = ACTIONS(1705), + [anon_sym_DOLLARtypefrom] = ACTIONS(1705), + [anon_sym_DOLLARevaltype] = ACTIONS(1705), + [anon_sym_DOLLARvatype] = ACTIONS(1705), + [sym_real_literal] = ACTIONS(1707), }, [806] = { [sym_line_comment] = STATE(806), [sym_doc_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_ident] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1579), - [anon_sym_SQUOTE] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [anon_sym_BQUOTE] = ACTIONS(1579), - [sym_bytes_literal] = ACTIONS(1579), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1577), - [sym_at_ident] = ACTIONS(1579), - [sym_hash_ident] = ACTIONS(1579), - [sym_type_ident] = ACTIONS(1579), - [sym_ct_type_ident] = ACTIONS(1579), - [sym_const_ident] = ACTIONS(1577), - [sym_builtin] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_tlocal] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_fn] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_var] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_defer] = ACTIONS(1577), - [anon_sym_assert] = ACTIONS(1577), - [anon_sym_nextcase] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_foreach] = ACTIONS(1577), - [anon_sym_foreach_r] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_int] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_asm] = ACTIONS(1577), - [anon_sym_DOLLARassert] = ACTIONS(1577), - [anon_sym_DOLLARerror] = ACTIONS(1577), - [anon_sym_DOLLARecho] = ACTIONS(1577), - [anon_sym_DOLLARif] = ACTIONS(1577), - [anon_sym_DOLLARendif] = ACTIONS(1577), - [anon_sym_DOLLARswitch] = ACTIONS(1577), - [anon_sym_DOLLARfor] = ACTIONS(1577), - [anon_sym_DOLLARforeach] = ACTIONS(1577), - [anon_sym_DOLLARalignof] = ACTIONS(1577), - [anon_sym_DOLLARextnameof] = ACTIONS(1577), - [anon_sym_DOLLARnameof] = ACTIONS(1577), - [anon_sym_DOLLARoffsetof] = ACTIONS(1577), - [anon_sym_DOLLARqnameof] = ACTIONS(1577), - [anon_sym_DOLLARvaconst] = ACTIONS(1577), - [anon_sym_DOLLARvaarg] = ACTIONS(1577), - [anon_sym_DOLLARvaref] = ACTIONS(1577), - [anon_sym_DOLLARvaexpr] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [anon_sym_null] = ACTIONS(1577), - [anon_sym_DOLLARvacount] = ACTIONS(1577), - [anon_sym_DOLLAReval] = ACTIONS(1577), - [anon_sym_DOLLARis_const] = ACTIONS(1577), - [anon_sym_DOLLARsizeof] = ACTIONS(1577), - [anon_sym_DOLLARstringify] = ACTIONS(1577), - [anon_sym_DOLLARappend] = ACTIONS(1577), - [anon_sym_DOLLARconcat] = ACTIONS(1577), - [anon_sym_DOLLARdefined] = ACTIONS(1577), - [anon_sym_DOLLARembed] = ACTIONS(1577), - [anon_sym_DOLLARand] = ACTIONS(1577), - [anon_sym_DOLLARor] = ACTIONS(1577), - [anon_sym_DOLLARfeature] = ACTIONS(1577), - [anon_sym_DOLLARassignable] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_typeid] = ACTIONS(1577), - [anon_sym_LBRACE_PIPE] = ACTIONS(1579), - [anon_sym_void] = ACTIONS(1577), - [anon_sym_bool] = ACTIONS(1577), - [anon_sym_char] = ACTIONS(1577), - [anon_sym_ichar] = ACTIONS(1577), - [anon_sym_short] = ACTIONS(1577), - [anon_sym_ushort] = ACTIONS(1577), - [anon_sym_uint] = ACTIONS(1577), - [anon_sym_long] = ACTIONS(1577), - [anon_sym_ulong] = ACTIONS(1577), - [anon_sym_int128] = ACTIONS(1577), - [anon_sym_uint128] = ACTIONS(1577), - [anon_sym_float] = ACTIONS(1577), - [anon_sym_double] = ACTIONS(1577), - [anon_sym_float16] = ACTIONS(1577), - [anon_sym_bfloat16] = ACTIONS(1577), - [anon_sym_float128] = ACTIONS(1577), - [anon_sym_iptr] = ACTIONS(1577), - [anon_sym_uptr] = ACTIONS(1577), - [anon_sym_isz] = ACTIONS(1577), - [anon_sym_usz] = ACTIONS(1577), - [anon_sym_anyfault] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_DOLLARtypeof] = ACTIONS(1577), - [anon_sym_DOLLARtypefrom] = ACTIONS(1577), - [anon_sym_DOLLARevaltype] = ACTIONS(1577), - [anon_sym_DOLLARvatype] = ACTIONS(1577), - [sym_real_literal] = ACTIONS(1579), + [sym_ident] = ACTIONS(1693), + [sym_integer_literal] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [anon_sym_BQUOTE] = ACTIONS(1695), + [sym_bytes_literal] = ACTIONS(1695), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1693), + [sym_at_ident] = ACTIONS(1695), + [sym_hash_ident] = ACTIONS(1695), + [sym_type_ident] = ACTIONS(1695), + [sym_ct_type_ident] = ACTIONS(1695), + [sym_const_ident] = ACTIONS(1693), + [sym_builtin] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1693), + [anon_sym_tlocal] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_var] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_defer] = ACTIONS(1693), + [anon_sym_assert] = ACTIONS(1693), + [anon_sym_nextcase] = ACTIONS(1693), + [anon_sym_switch] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_foreach] = ACTIONS(1693), + [anon_sym_foreach_r] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_int] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_asm] = ACTIONS(1693), + [anon_sym_DOLLARassert] = ACTIONS(1693), + [anon_sym_DOLLARerror] = ACTIONS(1693), + [anon_sym_DOLLARecho] = ACTIONS(1693), + [anon_sym_DOLLARif] = ACTIONS(1693), + [anon_sym_DOLLARswitch] = ACTIONS(1693), + [anon_sym_DOLLARfor] = ACTIONS(1693), + [anon_sym_DOLLARforeach] = ACTIONS(1693), + [anon_sym_DOLLARalignof] = ACTIONS(1693), + [anon_sym_DOLLARextnameof] = ACTIONS(1693), + [anon_sym_DOLLARnameof] = ACTIONS(1693), + [anon_sym_DOLLARoffsetof] = ACTIONS(1693), + [anon_sym_DOLLARqnameof] = ACTIONS(1693), + [anon_sym_DOLLARvaconst] = ACTIONS(1693), + [anon_sym_DOLLARvaarg] = ACTIONS(1693), + [anon_sym_DOLLARvaref] = ACTIONS(1693), + [anon_sym_DOLLARvaexpr] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [anon_sym_null] = ACTIONS(1693), + [anon_sym_DOLLARvacount] = ACTIONS(1693), + [anon_sym_DOLLAReval] = ACTIONS(1693), + [anon_sym_DOLLARis_const] = ACTIONS(1693), + [anon_sym_DOLLARsizeof] = ACTIONS(1693), + [anon_sym_DOLLARstringify] = ACTIONS(1693), + [anon_sym_DOLLARappend] = ACTIONS(1693), + [anon_sym_DOLLARconcat] = ACTIONS(1693), + [anon_sym_DOLLARdefined] = ACTIONS(1693), + [anon_sym_DOLLARembed] = ACTIONS(1693), + [anon_sym_DOLLARand] = ACTIONS(1693), + [anon_sym_DOLLARor] = ACTIONS(1693), + [anon_sym_DOLLARfeature] = ACTIONS(1693), + [anon_sym_DOLLARassignable] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_typeid] = ACTIONS(1693), + [anon_sym_LBRACE_PIPE] = ACTIONS(1695), + [anon_sym_void] = ACTIONS(1693), + [anon_sym_bool] = ACTIONS(1693), + [anon_sym_char] = ACTIONS(1693), + [anon_sym_ichar] = ACTIONS(1693), + [anon_sym_short] = ACTIONS(1693), + [anon_sym_ushort] = ACTIONS(1693), + [anon_sym_uint] = ACTIONS(1693), + [anon_sym_long] = ACTIONS(1693), + [anon_sym_ulong] = ACTIONS(1693), + [anon_sym_int128] = ACTIONS(1693), + [anon_sym_uint128] = ACTIONS(1693), + [anon_sym_float] = ACTIONS(1693), + [anon_sym_double] = ACTIONS(1693), + [anon_sym_float16] = ACTIONS(1693), + [anon_sym_bfloat16] = ACTIONS(1693), + [anon_sym_float128] = ACTIONS(1693), + [anon_sym_iptr] = ACTIONS(1693), + [anon_sym_uptr] = ACTIONS(1693), + [anon_sym_isz] = ACTIONS(1693), + [anon_sym_usz] = ACTIONS(1693), + [anon_sym_anyfault] = ACTIONS(1693), + [anon_sym_any] = ACTIONS(1693), + [anon_sym_DOLLARtypeof] = ACTIONS(1693), + [anon_sym_DOLLARtypefrom] = ACTIONS(1693), + [anon_sym_DOLLARevaltype] = ACTIONS(1693), + [anon_sym_DOLLARvatype] = ACTIONS(1693), + [sym_real_literal] = ACTIONS(1695), }, [807] = { [sym_line_comment] = STATE(807), [sym_doc_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARendforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARappend] = ACTIONS(1495), - [anon_sym_DOLLARconcat] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), + [sym_ident] = ACTIONS(1685), + [sym_integer_literal] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_bytes_literal] = ACTIONS(1687), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1685), + [sym_at_ident] = ACTIONS(1687), + [sym_hash_ident] = ACTIONS(1687), + [sym_type_ident] = ACTIONS(1687), + [sym_ct_type_ident] = ACTIONS(1687), + [sym_const_ident] = ACTIONS(1685), + [sym_builtin] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1685), + [anon_sym_tlocal] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_fn] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_var] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_defer] = ACTIONS(1685), + [anon_sym_assert] = ACTIONS(1685), + [anon_sym_nextcase] = ACTIONS(1685), + [anon_sym_switch] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_foreach] = ACTIONS(1685), + [anon_sym_foreach_r] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_int] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_asm] = ACTIONS(1685), + [anon_sym_DOLLARassert] = ACTIONS(1685), + [anon_sym_DOLLARerror] = ACTIONS(1685), + [anon_sym_DOLLARecho] = ACTIONS(1685), + [anon_sym_DOLLARif] = ACTIONS(1685), + [anon_sym_DOLLARswitch] = ACTIONS(1685), + [anon_sym_DOLLARfor] = ACTIONS(1685), + [anon_sym_DOLLARforeach] = ACTIONS(1685), + [anon_sym_DOLLARalignof] = ACTIONS(1685), + [anon_sym_DOLLARextnameof] = ACTIONS(1685), + [anon_sym_DOLLARnameof] = ACTIONS(1685), + [anon_sym_DOLLARoffsetof] = ACTIONS(1685), + [anon_sym_DOLLARqnameof] = ACTIONS(1685), + [anon_sym_DOLLARvaconst] = ACTIONS(1685), + [anon_sym_DOLLARvaarg] = ACTIONS(1685), + [anon_sym_DOLLARvaref] = ACTIONS(1685), + [anon_sym_DOLLARvaexpr] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_null] = ACTIONS(1685), + [anon_sym_DOLLARvacount] = ACTIONS(1685), + [anon_sym_DOLLAReval] = ACTIONS(1685), + [anon_sym_DOLLARis_const] = ACTIONS(1685), + [anon_sym_DOLLARsizeof] = ACTIONS(1685), + [anon_sym_DOLLARstringify] = ACTIONS(1685), + [anon_sym_DOLLARappend] = ACTIONS(1685), + [anon_sym_DOLLARconcat] = ACTIONS(1685), + [anon_sym_DOLLARdefined] = ACTIONS(1685), + [anon_sym_DOLLARembed] = ACTIONS(1685), + [anon_sym_DOLLARand] = ACTIONS(1685), + [anon_sym_DOLLARor] = ACTIONS(1685), + [anon_sym_DOLLARfeature] = ACTIONS(1685), + [anon_sym_DOLLARassignable] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_typeid] = ACTIONS(1685), + [anon_sym_LBRACE_PIPE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1685), + [anon_sym_bool] = ACTIONS(1685), + [anon_sym_char] = ACTIONS(1685), + [anon_sym_ichar] = ACTIONS(1685), + [anon_sym_short] = ACTIONS(1685), + [anon_sym_ushort] = ACTIONS(1685), + [anon_sym_uint] = ACTIONS(1685), + [anon_sym_long] = ACTIONS(1685), + [anon_sym_ulong] = ACTIONS(1685), + [anon_sym_int128] = ACTIONS(1685), + [anon_sym_uint128] = ACTIONS(1685), + [anon_sym_float] = ACTIONS(1685), + [anon_sym_double] = ACTIONS(1685), + [anon_sym_float16] = ACTIONS(1685), + [anon_sym_bfloat16] = ACTIONS(1685), + [anon_sym_float128] = ACTIONS(1685), + [anon_sym_iptr] = ACTIONS(1685), + [anon_sym_uptr] = ACTIONS(1685), + [anon_sym_isz] = ACTIONS(1685), + [anon_sym_usz] = ACTIONS(1685), + [anon_sym_anyfault] = ACTIONS(1685), + [anon_sym_any] = ACTIONS(1685), + [anon_sym_DOLLARtypeof] = ACTIONS(1685), + [anon_sym_DOLLARtypefrom] = ACTIONS(1685), + [anon_sym_DOLLARevaltype] = ACTIONS(1685), + [anon_sym_DOLLARvatype] = ACTIONS(1685), + [sym_real_literal] = ACTIONS(1687), }, [808] = { [sym_line_comment] = STATE(808), [sym_doc_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_ident] = ACTIONS(1711), - [sym_integer_literal] = ACTIONS(1713), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [anon_sym_BQUOTE] = ACTIONS(1713), - [sym_bytes_literal] = ACTIONS(1713), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1711), - [sym_at_ident] = ACTIONS(1713), - [sym_hash_ident] = ACTIONS(1713), - [sym_type_ident] = ACTIONS(1713), - [sym_ct_type_ident] = ACTIONS(1713), - [sym_const_ident] = ACTIONS(1711), - [sym_builtin] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_tlocal] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_fn] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_var] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_defer] = ACTIONS(1711), - [anon_sym_assert] = ACTIONS(1711), - [anon_sym_nextcase] = ACTIONS(1711), - [anon_sym_switch] = ACTIONS(1711), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_foreach] = ACTIONS(1711), - [anon_sym_foreach_r] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_int] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_asm] = ACTIONS(1711), - [anon_sym_DOLLARassert] = ACTIONS(1711), - [anon_sym_DOLLARerror] = ACTIONS(1711), - [anon_sym_DOLLARecho] = ACTIONS(1711), - [anon_sym_DOLLARif] = ACTIONS(1711), - [anon_sym_DOLLARswitch] = ACTIONS(1711), - [anon_sym_DOLLARfor] = ACTIONS(1711), - [anon_sym_DOLLARforeach] = ACTIONS(1711), - [anon_sym_DOLLARalignof] = ACTIONS(1711), - [anon_sym_DOLLARextnameof] = ACTIONS(1711), - [anon_sym_DOLLARnameof] = ACTIONS(1711), - [anon_sym_DOLLARoffsetof] = ACTIONS(1711), - [anon_sym_DOLLARqnameof] = ACTIONS(1711), - [anon_sym_DOLLARvaconst] = ACTIONS(1711), - [anon_sym_DOLLARvaarg] = ACTIONS(1711), - [anon_sym_DOLLARvaref] = ACTIONS(1711), - [anon_sym_DOLLARvaexpr] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1711), - [anon_sym_false] = ACTIONS(1711), - [anon_sym_null] = ACTIONS(1711), - [anon_sym_DOLLARvacount] = ACTIONS(1711), - [anon_sym_DOLLAReval] = ACTIONS(1711), - [anon_sym_DOLLARis_const] = ACTIONS(1711), - [anon_sym_DOLLARsizeof] = ACTIONS(1711), - [anon_sym_DOLLARstringify] = ACTIONS(1711), - [anon_sym_DOLLARappend] = ACTIONS(1711), - [anon_sym_DOLLARconcat] = ACTIONS(1711), - [anon_sym_DOLLARdefined] = ACTIONS(1711), - [anon_sym_DOLLARembed] = ACTIONS(1711), - [anon_sym_DOLLARand] = ACTIONS(1711), - [anon_sym_DOLLARor] = ACTIONS(1711), - [anon_sym_DOLLARfeature] = ACTIONS(1711), - [anon_sym_DOLLARassignable] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_typeid] = ACTIONS(1711), - [anon_sym_LBRACE_PIPE] = ACTIONS(1713), - [anon_sym_void] = ACTIONS(1711), - [anon_sym_bool] = ACTIONS(1711), - [anon_sym_char] = ACTIONS(1711), - [anon_sym_ichar] = ACTIONS(1711), - [anon_sym_short] = ACTIONS(1711), - [anon_sym_ushort] = ACTIONS(1711), - [anon_sym_uint] = ACTIONS(1711), - [anon_sym_long] = ACTIONS(1711), - [anon_sym_ulong] = ACTIONS(1711), - [anon_sym_int128] = ACTIONS(1711), - [anon_sym_uint128] = ACTIONS(1711), - [anon_sym_float] = ACTIONS(1711), - [anon_sym_double] = ACTIONS(1711), - [anon_sym_float16] = ACTIONS(1711), - [anon_sym_bfloat16] = ACTIONS(1711), - [anon_sym_float128] = ACTIONS(1711), - [anon_sym_iptr] = ACTIONS(1711), - [anon_sym_uptr] = ACTIONS(1711), - [anon_sym_isz] = ACTIONS(1711), - [anon_sym_usz] = ACTIONS(1711), - [anon_sym_anyfault] = ACTIONS(1711), - [anon_sym_any] = ACTIONS(1711), - [anon_sym_DOLLARtypeof] = ACTIONS(1711), - [anon_sym_DOLLARtypefrom] = ACTIONS(1711), - [anon_sym_DOLLARevaltype] = ACTIONS(1711), - [anon_sym_DOLLARvatype] = ACTIONS(1711), - [sym_real_literal] = ACTIONS(1713), + [sym_ident] = ACTIONS(1681), + [sym_integer_literal] = ACTIONS(1683), + [anon_sym_SQUOTE] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_bytes_literal] = ACTIONS(1683), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1681), + [sym_at_ident] = ACTIONS(1683), + [sym_hash_ident] = ACTIONS(1683), + [sym_type_ident] = ACTIONS(1683), + [sym_ct_type_ident] = ACTIONS(1683), + [sym_const_ident] = ACTIONS(1681), + [sym_builtin] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_static] = ACTIONS(1681), + [anon_sym_tlocal] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_fn] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_defer] = ACTIONS(1681), + [anon_sym_assert] = ACTIONS(1681), + [anon_sym_nextcase] = ACTIONS(1681), + [anon_sym_switch] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_foreach] = ACTIONS(1681), + [anon_sym_foreach_r] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_int] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_asm] = ACTIONS(1681), + [anon_sym_DOLLARassert] = ACTIONS(1681), + [anon_sym_DOLLARerror] = ACTIONS(1681), + [anon_sym_DOLLARecho] = ACTIONS(1681), + [anon_sym_DOLLARif] = ACTIONS(1681), + [anon_sym_DOLLARswitch] = ACTIONS(1681), + [anon_sym_DOLLARfor] = ACTIONS(1681), + [anon_sym_DOLLARforeach] = ACTIONS(1681), + [anon_sym_DOLLARalignof] = ACTIONS(1681), + [anon_sym_DOLLARextnameof] = ACTIONS(1681), + [anon_sym_DOLLARnameof] = ACTIONS(1681), + [anon_sym_DOLLARoffsetof] = ACTIONS(1681), + [anon_sym_DOLLARqnameof] = ACTIONS(1681), + [anon_sym_DOLLARvaconst] = ACTIONS(1681), + [anon_sym_DOLLARvaarg] = ACTIONS(1681), + [anon_sym_DOLLARvaref] = ACTIONS(1681), + [anon_sym_DOLLARvaexpr] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1681), + [anon_sym_false] = ACTIONS(1681), + [anon_sym_null] = ACTIONS(1681), + [anon_sym_DOLLARvacount] = ACTIONS(1681), + [anon_sym_DOLLAReval] = ACTIONS(1681), + [anon_sym_DOLLARis_const] = ACTIONS(1681), + [anon_sym_DOLLARsizeof] = ACTIONS(1681), + [anon_sym_DOLLARstringify] = ACTIONS(1681), + [anon_sym_DOLLARappend] = ACTIONS(1681), + [anon_sym_DOLLARconcat] = ACTIONS(1681), + [anon_sym_DOLLARdefined] = ACTIONS(1681), + [anon_sym_DOLLARembed] = ACTIONS(1681), + [anon_sym_DOLLARand] = ACTIONS(1681), + [anon_sym_DOLLARor] = ACTIONS(1681), + [anon_sym_DOLLARfeature] = ACTIONS(1681), + [anon_sym_DOLLARassignable] = ACTIONS(1681), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_typeid] = ACTIONS(1681), + [anon_sym_LBRACE_PIPE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1681), + [anon_sym_bool] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_ichar] = ACTIONS(1681), + [anon_sym_short] = ACTIONS(1681), + [anon_sym_ushort] = ACTIONS(1681), + [anon_sym_uint] = ACTIONS(1681), + [anon_sym_long] = ACTIONS(1681), + [anon_sym_ulong] = ACTIONS(1681), + [anon_sym_int128] = ACTIONS(1681), + [anon_sym_uint128] = ACTIONS(1681), + [anon_sym_float] = ACTIONS(1681), + [anon_sym_double] = ACTIONS(1681), + [anon_sym_float16] = ACTIONS(1681), + [anon_sym_bfloat16] = ACTIONS(1681), + [anon_sym_float128] = ACTIONS(1681), + [anon_sym_iptr] = ACTIONS(1681), + [anon_sym_uptr] = ACTIONS(1681), + [anon_sym_isz] = ACTIONS(1681), + [anon_sym_usz] = ACTIONS(1681), + [anon_sym_anyfault] = ACTIONS(1681), + [anon_sym_any] = ACTIONS(1681), + [anon_sym_DOLLARtypeof] = ACTIONS(1681), + [anon_sym_DOLLARtypefrom] = ACTIONS(1681), + [anon_sym_DOLLARevaltype] = ACTIONS(1681), + [anon_sym_DOLLARvatype] = ACTIONS(1681), + [sym_real_literal] = ACTIONS(1683), }, [809] = { [sym_line_comment] = STATE(809), [sym_doc_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_ident] = ACTIONS(1703), - [sym_integer_literal] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [anon_sym_BQUOTE] = ACTIONS(1705), - [sym_bytes_literal] = ACTIONS(1705), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1703), - [sym_at_ident] = ACTIONS(1705), - [sym_hash_ident] = ACTIONS(1705), - [sym_type_ident] = ACTIONS(1705), - [sym_ct_type_ident] = ACTIONS(1705), - [sym_const_ident] = ACTIONS(1703), - [sym_builtin] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1703), - [anon_sym_tlocal] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_fn] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_const] = ACTIONS(1703), - [anon_sym_var] = ACTIONS(1703), - [anon_sym_return] = ACTIONS(1703), - [anon_sym_continue] = ACTIONS(1703), - [anon_sym_break] = ACTIONS(1703), - [anon_sym_defer] = ACTIONS(1703), - [anon_sym_assert] = ACTIONS(1703), - [anon_sym_nextcase] = ACTIONS(1703), - [anon_sym_switch] = ACTIONS(1703), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1703), - [anon_sym_for] = ACTIONS(1703), - [anon_sym_foreach] = ACTIONS(1703), - [anon_sym_foreach_r] = ACTIONS(1703), - [anon_sym_while] = ACTIONS(1703), - [anon_sym_do] = ACTIONS(1703), - [anon_sym_int] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_asm] = ACTIONS(1703), - [anon_sym_DOLLARassert] = ACTIONS(1703), - [anon_sym_DOLLARerror] = ACTIONS(1703), - [anon_sym_DOLLARecho] = ACTIONS(1703), - [anon_sym_DOLLARif] = ACTIONS(1703), - [anon_sym_DOLLARswitch] = ACTIONS(1703), - [anon_sym_DOLLARfor] = ACTIONS(1703), - [anon_sym_DOLLARforeach] = ACTIONS(1703), - [anon_sym_DOLLARalignof] = ACTIONS(1703), - [anon_sym_DOLLARextnameof] = ACTIONS(1703), - [anon_sym_DOLLARnameof] = ACTIONS(1703), - [anon_sym_DOLLARoffsetof] = ACTIONS(1703), - [anon_sym_DOLLARqnameof] = ACTIONS(1703), - [anon_sym_DOLLARvaconst] = ACTIONS(1703), - [anon_sym_DOLLARvaarg] = ACTIONS(1703), - [anon_sym_DOLLARvaref] = ACTIONS(1703), - [anon_sym_DOLLARvaexpr] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1703), - [anon_sym_false] = ACTIONS(1703), - [anon_sym_null] = ACTIONS(1703), - [anon_sym_DOLLARvacount] = ACTIONS(1703), - [anon_sym_DOLLAReval] = ACTIONS(1703), - [anon_sym_DOLLARis_const] = ACTIONS(1703), - [anon_sym_DOLLARsizeof] = ACTIONS(1703), - [anon_sym_DOLLARstringify] = ACTIONS(1703), - [anon_sym_DOLLARappend] = ACTIONS(1703), - [anon_sym_DOLLARconcat] = ACTIONS(1703), - [anon_sym_DOLLARdefined] = ACTIONS(1703), - [anon_sym_DOLLARembed] = ACTIONS(1703), - [anon_sym_DOLLARand] = ACTIONS(1703), - [anon_sym_DOLLARor] = ACTIONS(1703), - [anon_sym_DOLLARfeature] = ACTIONS(1703), - [anon_sym_DOLLARassignable] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_typeid] = ACTIONS(1703), - [anon_sym_LBRACE_PIPE] = ACTIONS(1705), - [anon_sym_void] = ACTIONS(1703), - [anon_sym_bool] = ACTIONS(1703), - [anon_sym_char] = ACTIONS(1703), - [anon_sym_ichar] = ACTIONS(1703), - [anon_sym_short] = ACTIONS(1703), - [anon_sym_ushort] = ACTIONS(1703), - [anon_sym_uint] = ACTIONS(1703), - [anon_sym_long] = ACTIONS(1703), - [anon_sym_ulong] = ACTIONS(1703), - [anon_sym_int128] = ACTIONS(1703), - [anon_sym_uint128] = ACTIONS(1703), - [anon_sym_float] = ACTIONS(1703), - [anon_sym_double] = ACTIONS(1703), - [anon_sym_float16] = ACTIONS(1703), - [anon_sym_bfloat16] = ACTIONS(1703), - [anon_sym_float128] = ACTIONS(1703), - [anon_sym_iptr] = ACTIONS(1703), - [anon_sym_uptr] = ACTIONS(1703), - [anon_sym_isz] = ACTIONS(1703), - [anon_sym_usz] = ACTIONS(1703), - [anon_sym_anyfault] = ACTIONS(1703), - [anon_sym_any] = ACTIONS(1703), - [anon_sym_DOLLARtypeof] = ACTIONS(1703), - [anon_sym_DOLLARtypefrom] = ACTIONS(1703), - [anon_sym_DOLLARevaltype] = ACTIONS(1703), - [anon_sym_DOLLARvatype] = ACTIONS(1703), - [sym_real_literal] = ACTIONS(1705), + [sym_ident] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [sym_bytes_literal] = ACTIONS(1679), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1677), + [sym_at_ident] = ACTIONS(1679), + [sym_hash_ident] = ACTIONS(1679), + [sym_type_ident] = ACTIONS(1679), + [sym_ct_type_ident] = ACTIONS(1679), + [sym_const_ident] = ACTIONS(1677), + [sym_builtin] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_tlocal] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_fn] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_var] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_defer] = ACTIONS(1677), + [anon_sym_assert] = ACTIONS(1677), + [anon_sym_nextcase] = ACTIONS(1677), + [anon_sym_switch] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_foreach] = ACTIONS(1677), + [anon_sym_foreach_r] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_int] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_asm] = ACTIONS(1677), + [anon_sym_DOLLARassert] = ACTIONS(1677), + [anon_sym_DOLLARerror] = ACTIONS(1677), + [anon_sym_DOLLARecho] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1677), + [anon_sym_DOLLARswitch] = ACTIONS(1677), + [anon_sym_DOLLARfor] = ACTIONS(1677), + [anon_sym_DOLLARforeach] = ACTIONS(1677), + [anon_sym_DOLLARalignof] = ACTIONS(1677), + [anon_sym_DOLLARextnameof] = ACTIONS(1677), + [anon_sym_DOLLARnameof] = ACTIONS(1677), + [anon_sym_DOLLARoffsetof] = ACTIONS(1677), + [anon_sym_DOLLARqnameof] = ACTIONS(1677), + [anon_sym_DOLLARvaconst] = ACTIONS(1677), + [anon_sym_DOLLARvaarg] = ACTIONS(1677), + [anon_sym_DOLLARvaref] = ACTIONS(1677), + [anon_sym_DOLLARvaexpr] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [anon_sym_DOLLARvacount] = ACTIONS(1677), + [anon_sym_DOLLAReval] = ACTIONS(1677), + [anon_sym_DOLLARis_const] = ACTIONS(1677), + [anon_sym_DOLLARsizeof] = ACTIONS(1677), + [anon_sym_DOLLARstringify] = ACTIONS(1677), + [anon_sym_DOLLARappend] = ACTIONS(1677), + [anon_sym_DOLLARconcat] = ACTIONS(1677), + [anon_sym_DOLLARdefined] = ACTIONS(1677), + [anon_sym_DOLLARembed] = ACTIONS(1677), + [anon_sym_DOLLARand] = ACTIONS(1677), + [anon_sym_DOLLARor] = ACTIONS(1677), + [anon_sym_DOLLARfeature] = ACTIONS(1677), + [anon_sym_DOLLARassignable] = ACTIONS(1677), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_typeid] = ACTIONS(1677), + [anon_sym_LBRACE_PIPE] = ACTIONS(1679), + [anon_sym_void] = ACTIONS(1677), + [anon_sym_bool] = ACTIONS(1677), + [anon_sym_char] = ACTIONS(1677), + [anon_sym_ichar] = ACTIONS(1677), + [anon_sym_short] = ACTIONS(1677), + [anon_sym_ushort] = ACTIONS(1677), + [anon_sym_uint] = ACTIONS(1677), + [anon_sym_long] = ACTIONS(1677), + [anon_sym_ulong] = ACTIONS(1677), + [anon_sym_int128] = ACTIONS(1677), + [anon_sym_uint128] = ACTIONS(1677), + [anon_sym_float] = ACTIONS(1677), + [anon_sym_double] = ACTIONS(1677), + [anon_sym_float16] = ACTIONS(1677), + [anon_sym_bfloat16] = ACTIONS(1677), + [anon_sym_float128] = ACTIONS(1677), + [anon_sym_iptr] = ACTIONS(1677), + [anon_sym_uptr] = ACTIONS(1677), + [anon_sym_isz] = ACTIONS(1677), + [anon_sym_usz] = ACTIONS(1677), + [anon_sym_anyfault] = ACTIONS(1677), + [anon_sym_any] = ACTIONS(1677), + [anon_sym_DOLLARtypeof] = ACTIONS(1677), + [anon_sym_DOLLARtypefrom] = ACTIONS(1677), + [anon_sym_DOLLARevaltype] = ACTIONS(1677), + [anon_sym_DOLLARvatype] = ACTIONS(1677), + [sym_real_literal] = ACTIONS(1679), }, [810] = { [sym_line_comment] = STATE(810), [sym_doc_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_ident] = ACTIONS(1679), - [sym_integer_literal] = ACTIONS(1681), - [anon_sym_SQUOTE] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1681), - [sym_bytes_literal] = ACTIONS(1681), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1679), - [sym_at_ident] = ACTIONS(1681), - [sym_hash_ident] = ACTIONS(1681), - [sym_type_ident] = ACTIONS(1681), - [sym_ct_type_ident] = ACTIONS(1681), - [sym_const_ident] = ACTIONS(1679), - [sym_builtin] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1679), - [anon_sym_tlocal] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1681), - [anon_sym_fn] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_const] = ACTIONS(1679), - [anon_sym_var] = ACTIONS(1679), - [anon_sym_return] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_defer] = ACTIONS(1679), - [anon_sym_assert] = ACTIONS(1679), - [anon_sym_nextcase] = ACTIONS(1679), - [anon_sym_switch] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1679), - [anon_sym_for] = ACTIONS(1679), - [anon_sym_foreach] = ACTIONS(1679), - [anon_sym_foreach_r] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_do] = ACTIONS(1679), - [anon_sym_int] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_asm] = ACTIONS(1679), - [anon_sym_DOLLARassert] = ACTIONS(1679), - [anon_sym_DOLLARerror] = ACTIONS(1679), - [anon_sym_DOLLARecho] = ACTIONS(1679), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_DOLLARswitch] = ACTIONS(1679), - [anon_sym_DOLLARfor] = ACTIONS(1679), - [anon_sym_DOLLARforeach] = ACTIONS(1679), - [anon_sym_DOLLARalignof] = ACTIONS(1679), - [anon_sym_DOLLARextnameof] = ACTIONS(1679), - [anon_sym_DOLLARnameof] = ACTIONS(1679), - [anon_sym_DOLLARoffsetof] = ACTIONS(1679), - [anon_sym_DOLLARqnameof] = ACTIONS(1679), - [anon_sym_DOLLARvaconst] = ACTIONS(1679), - [anon_sym_DOLLARvaarg] = ACTIONS(1679), - [anon_sym_DOLLARvaref] = ACTIONS(1679), - [anon_sym_DOLLARvaexpr] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1679), - [anon_sym_false] = ACTIONS(1679), - [anon_sym_null] = ACTIONS(1679), - [anon_sym_DOLLARvacount] = ACTIONS(1679), - [anon_sym_DOLLAReval] = ACTIONS(1679), - [anon_sym_DOLLARis_const] = ACTIONS(1679), - [anon_sym_DOLLARsizeof] = ACTIONS(1679), - [anon_sym_DOLLARstringify] = ACTIONS(1679), - [anon_sym_DOLLARappend] = ACTIONS(1679), - [anon_sym_DOLLARconcat] = ACTIONS(1679), - [anon_sym_DOLLARdefined] = ACTIONS(1679), - [anon_sym_DOLLARembed] = ACTIONS(1679), - [anon_sym_DOLLARand] = ACTIONS(1679), - [anon_sym_DOLLARor] = ACTIONS(1679), - [anon_sym_DOLLARfeature] = ACTIONS(1679), - [anon_sym_DOLLARassignable] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1681), - [anon_sym_PLUS_PLUS] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1681), - [anon_sym_typeid] = ACTIONS(1679), - [anon_sym_LBRACE_PIPE] = ACTIONS(1681), - [anon_sym_void] = ACTIONS(1679), - [anon_sym_bool] = ACTIONS(1679), - [anon_sym_char] = ACTIONS(1679), - [anon_sym_ichar] = ACTIONS(1679), - [anon_sym_short] = ACTIONS(1679), - [anon_sym_ushort] = ACTIONS(1679), - [anon_sym_uint] = ACTIONS(1679), - [anon_sym_long] = ACTIONS(1679), - [anon_sym_ulong] = ACTIONS(1679), - [anon_sym_int128] = ACTIONS(1679), - [anon_sym_uint128] = ACTIONS(1679), - [anon_sym_float] = ACTIONS(1679), - [anon_sym_double] = ACTIONS(1679), - [anon_sym_float16] = ACTIONS(1679), - [anon_sym_bfloat16] = ACTIONS(1679), - [anon_sym_float128] = ACTIONS(1679), - [anon_sym_iptr] = ACTIONS(1679), - [anon_sym_uptr] = ACTIONS(1679), - [anon_sym_isz] = ACTIONS(1679), - [anon_sym_usz] = ACTIONS(1679), - [anon_sym_anyfault] = ACTIONS(1679), - [anon_sym_any] = ACTIONS(1679), - [anon_sym_DOLLARtypeof] = ACTIONS(1679), - [anon_sym_DOLLARtypefrom] = ACTIONS(1679), - [anon_sym_DOLLARevaltype] = ACTIONS(1679), - [anon_sym_DOLLARvatype] = ACTIONS(1679), - [sym_real_literal] = ACTIONS(1681), + [sym_ident] = ACTIONS(1669), + [sym_integer_literal] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_bytes_literal] = ACTIONS(1671), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1669), + [sym_at_ident] = ACTIONS(1671), + [sym_hash_ident] = ACTIONS(1671), + [sym_type_ident] = ACTIONS(1671), + [sym_ct_type_ident] = ACTIONS(1671), + [sym_const_ident] = ACTIONS(1669), + [sym_builtin] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_tlocal] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_fn] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_var] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_defer] = ACTIONS(1669), + [anon_sym_assert] = ACTIONS(1669), + [anon_sym_nextcase] = ACTIONS(1669), + [anon_sym_switch] = ACTIONS(1669), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_foreach] = ACTIONS(1669), + [anon_sym_foreach_r] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_int] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_asm] = ACTIONS(1669), + [anon_sym_DOLLARassert] = ACTIONS(1669), + [anon_sym_DOLLARerror] = ACTIONS(1669), + [anon_sym_DOLLARecho] = ACTIONS(1669), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_DOLLARswitch] = ACTIONS(1669), + [anon_sym_DOLLARfor] = ACTIONS(1669), + [anon_sym_DOLLARforeach] = ACTIONS(1669), + [anon_sym_DOLLARalignof] = ACTIONS(1669), + [anon_sym_DOLLARextnameof] = ACTIONS(1669), + [anon_sym_DOLLARnameof] = ACTIONS(1669), + [anon_sym_DOLLARoffsetof] = ACTIONS(1669), + [anon_sym_DOLLARqnameof] = ACTIONS(1669), + [anon_sym_DOLLARvaconst] = ACTIONS(1669), + [anon_sym_DOLLARvaarg] = ACTIONS(1669), + [anon_sym_DOLLARvaref] = ACTIONS(1669), + [anon_sym_DOLLARvaexpr] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [anon_sym_DOLLARvacount] = ACTIONS(1669), + [anon_sym_DOLLAReval] = ACTIONS(1669), + [anon_sym_DOLLARis_const] = ACTIONS(1669), + [anon_sym_DOLLARsizeof] = ACTIONS(1669), + [anon_sym_DOLLARstringify] = ACTIONS(1669), + [anon_sym_DOLLARappend] = ACTIONS(1669), + [anon_sym_DOLLARconcat] = ACTIONS(1669), + [anon_sym_DOLLARdefined] = ACTIONS(1669), + [anon_sym_DOLLARembed] = ACTIONS(1669), + [anon_sym_DOLLARand] = ACTIONS(1669), + [anon_sym_DOLLARor] = ACTIONS(1669), + [anon_sym_DOLLARfeature] = ACTIONS(1669), + [anon_sym_DOLLARassignable] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_typeid] = ACTIONS(1669), + [anon_sym_LBRACE_PIPE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1669), + [anon_sym_bool] = ACTIONS(1669), + [anon_sym_char] = ACTIONS(1669), + [anon_sym_ichar] = ACTIONS(1669), + [anon_sym_short] = ACTIONS(1669), + [anon_sym_ushort] = ACTIONS(1669), + [anon_sym_uint] = ACTIONS(1669), + [anon_sym_long] = ACTIONS(1669), + [anon_sym_ulong] = ACTIONS(1669), + [anon_sym_int128] = ACTIONS(1669), + [anon_sym_uint128] = ACTIONS(1669), + [anon_sym_float] = ACTIONS(1669), + [anon_sym_double] = ACTIONS(1669), + [anon_sym_float16] = ACTIONS(1669), + [anon_sym_bfloat16] = ACTIONS(1669), + [anon_sym_float128] = ACTIONS(1669), + [anon_sym_iptr] = ACTIONS(1669), + [anon_sym_uptr] = ACTIONS(1669), + [anon_sym_isz] = ACTIONS(1669), + [anon_sym_usz] = ACTIONS(1669), + [anon_sym_anyfault] = ACTIONS(1669), + [anon_sym_any] = ACTIONS(1669), + [anon_sym_DOLLARtypeof] = ACTIONS(1669), + [anon_sym_DOLLARtypefrom] = ACTIONS(1669), + [anon_sym_DOLLARevaltype] = ACTIONS(1669), + [anon_sym_DOLLARvatype] = ACTIONS(1669), + [sym_real_literal] = ACTIONS(1671), }, [811] = { [sym_line_comment] = STATE(811), [sym_doc_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_ident] = ACTIONS(1715), - [sym_integer_literal] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_bytes_literal] = ACTIONS(1717), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1715), - [sym_at_ident] = ACTIONS(1717), - [sym_hash_ident] = ACTIONS(1717), - [sym_type_ident] = ACTIONS(1717), - [sym_ct_type_ident] = ACTIONS(1717), - [sym_const_ident] = ACTIONS(1715), - [sym_builtin] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1715), - [anon_sym_tlocal] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [anon_sym_var] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_defer] = ACTIONS(1715), - [anon_sym_assert] = ACTIONS(1715), - [anon_sym_nextcase] = ACTIONS(1715), - [anon_sym_switch] = ACTIONS(1715), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_foreach] = ACTIONS(1715), - [anon_sym_foreach_r] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_int] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_asm] = ACTIONS(1715), - [anon_sym_DOLLARassert] = ACTIONS(1715), - [anon_sym_DOLLARerror] = ACTIONS(1715), - [anon_sym_DOLLARecho] = ACTIONS(1715), - [anon_sym_DOLLARif] = ACTIONS(1715), - [anon_sym_DOLLARswitch] = ACTIONS(1715), - [anon_sym_DOLLARfor] = ACTIONS(1715), - [anon_sym_DOLLARforeach] = ACTIONS(1715), - [anon_sym_DOLLARalignof] = ACTIONS(1715), - [anon_sym_DOLLARextnameof] = ACTIONS(1715), - [anon_sym_DOLLARnameof] = ACTIONS(1715), - [anon_sym_DOLLARoffsetof] = ACTIONS(1715), - [anon_sym_DOLLARqnameof] = ACTIONS(1715), - [anon_sym_DOLLARvaconst] = ACTIONS(1715), - [anon_sym_DOLLARvaarg] = ACTIONS(1715), - [anon_sym_DOLLARvaref] = ACTIONS(1715), - [anon_sym_DOLLARvaexpr] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1715), - [anon_sym_false] = ACTIONS(1715), - [anon_sym_null] = ACTIONS(1715), - [anon_sym_DOLLARvacount] = ACTIONS(1715), - [anon_sym_DOLLAReval] = ACTIONS(1715), - [anon_sym_DOLLARis_const] = ACTIONS(1715), - [anon_sym_DOLLARsizeof] = ACTIONS(1715), - [anon_sym_DOLLARstringify] = ACTIONS(1715), - [anon_sym_DOLLARappend] = ACTIONS(1715), - [anon_sym_DOLLARconcat] = ACTIONS(1715), - [anon_sym_DOLLARdefined] = ACTIONS(1715), - [anon_sym_DOLLARembed] = ACTIONS(1715), - [anon_sym_DOLLARand] = ACTIONS(1715), - [anon_sym_DOLLARor] = ACTIONS(1715), - [anon_sym_DOLLARfeature] = ACTIONS(1715), - [anon_sym_DOLLARassignable] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_typeid] = ACTIONS(1715), - [anon_sym_LBRACE_PIPE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1715), - [anon_sym_bool] = ACTIONS(1715), - [anon_sym_char] = ACTIONS(1715), - [anon_sym_ichar] = ACTIONS(1715), - [anon_sym_short] = ACTIONS(1715), - [anon_sym_ushort] = ACTIONS(1715), - [anon_sym_uint] = ACTIONS(1715), - [anon_sym_long] = ACTIONS(1715), - [anon_sym_ulong] = ACTIONS(1715), - [anon_sym_int128] = ACTIONS(1715), - [anon_sym_uint128] = ACTIONS(1715), - [anon_sym_float] = ACTIONS(1715), - [anon_sym_double] = ACTIONS(1715), - [anon_sym_float16] = ACTIONS(1715), - [anon_sym_bfloat16] = ACTIONS(1715), - [anon_sym_float128] = ACTIONS(1715), - [anon_sym_iptr] = ACTIONS(1715), - [anon_sym_uptr] = ACTIONS(1715), - [anon_sym_isz] = ACTIONS(1715), - [anon_sym_usz] = ACTIONS(1715), - [anon_sym_anyfault] = ACTIONS(1715), - [anon_sym_any] = ACTIONS(1715), - [anon_sym_DOLLARtypeof] = ACTIONS(1715), - [anon_sym_DOLLARtypefrom] = ACTIONS(1715), - [anon_sym_DOLLARevaltype] = ACTIONS(1715), - [anon_sym_DOLLARvatype] = ACTIONS(1715), - [sym_real_literal] = ACTIONS(1717), + [sym_ident] = ACTIONS(1673), + [sym_integer_literal] = ACTIONS(1675), + [anon_sym_SQUOTE] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [anon_sym_BQUOTE] = ACTIONS(1675), + [sym_bytes_literal] = ACTIONS(1675), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1673), + [sym_at_ident] = ACTIONS(1675), + [sym_hash_ident] = ACTIONS(1675), + [sym_type_ident] = ACTIONS(1675), + [sym_ct_type_ident] = ACTIONS(1675), + [sym_const_ident] = ACTIONS(1673), + [sym_builtin] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_tlocal] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_fn] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_defer] = ACTIONS(1673), + [anon_sym_assert] = ACTIONS(1673), + [anon_sym_nextcase] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_foreach] = ACTIONS(1673), + [anon_sym_foreach_r] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_int] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym_DOLLARassert] = ACTIONS(1673), + [anon_sym_DOLLARerror] = ACTIONS(1673), + [anon_sym_DOLLARecho] = ACTIONS(1673), + [anon_sym_DOLLARif] = ACTIONS(1673), + [anon_sym_DOLLARswitch] = ACTIONS(1673), + [anon_sym_DOLLARfor] = ACTIONS(1673), + [anon_sym_DOLLARforeach] = ACTIONS(1673), + [anon_sym_DOLLARalignof] = ACTIONS(1673), + [anon_sym_DOLLARextnameof] = ACTIONS(1673), + [anon_sym_DOLLARnameof] = ACTIONS(1673), + [anon_sym_DOLLARoffsetof] = ACTIONS(1673), + [anon_sym_DOLLARqnameof] = ACTIONS(1673), + [anon_sym_DOLLARvaconst] = ACTIONS(1673), + [anon_sym_DOLLARvaarg] = ACTIONS(1673), + [anon_sym_DOLLARvaref] = ACTIONS(1673), + [anon_sym_DOLLARvaexpr] = ACTIONS(1673), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_null] = ACTIONS(1673), + [anon_sym_DOLLARvacount] = ACTIONS(1673), + [anon_sym_DOLLAReval] = ACTIONS(1673), + [anon_sym_DOLLARis_const] = ACTIONS(1673), + [anon_sym_DOLLARsizeof] = ACTIONS(1673), + [anon_sym_DOLLARstringify] = ACTIONS(1673), + [anon_sym_DOLLARappend] = ACTIONS(1673), + [anon_sym_DOLLARconcat] = ACTIONS(1673), + [anon_sym_DOLLARdefined] = ACTIONS(1673), + [anon_sym_DOLLARembed] = ACTIONS(1673), + [anon_sym_DOLLARand] = ACTIONS(1673), + [anon_sym_DOLLARor] = ACTIONS(1673), + [anon_sym_DOLLARfeature] = ACTIONS(1673), + [anon_sym_DOLLARassignable] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_typeid] = ACTIONS(1673), + [anon_sym_LBRACE_PIPE] = ACTIONS(1675), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_bool] = ACTIONS(1673), + [anon_sym_char] = ACTIONS(1673), + [anon_sym_ichar] = ACTIONS(1673), + [anon_sym_short] = ACTIONS(1673), + [anon_sym_ushort] = ACTIONS(1673), + [anon_sym_uint] = ACTIONS(1673), + [anon_sym_long] = ACTIONS(1673), + [anon_sym_ulong] = ACTIONS(1673), + [anon_sym_int128] = ACTIONS(1673), + [anon_sym_uint128] = ACTIONS(1673), + [anon_sym_float] = ACTIONS(1673), + [anon_sym_double] = ACTIONS(1673), + [anon_sym_float16] = ACTIONS(1673), + [anon_sym_bfloat16] = ACTIONS(1673), + [anon_sym_float128] = ACTIONS(1673), + [anon_sym_iptr] = ACTIONS(1673), + [anon_sym_uptr] = ACTIONS(1673), + [anon_sym_isz] = ACTIONS(1673), + [anon_sym_usz] = ACTIONS(1673), + [anon_sym_anyfault] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_DOLLARtypeof] = ACTIONS(1673), + [anon_sym_DOLLARtypefrom] = ACTIONS(1673), + [anon_sym_DOLLARevaltype] = ACTIONS(1673), + [anon_sym_DOLLARvatype] = ACTIONS(1673), + [sym_real_literal] = ACTIONS(1675), }, [812] = { [sym_line_comment] = STATE(812), [sym_doc_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_ident] = ACTIONS(1691), - [sym_integer_literal] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [anon_sym_BQUOTE] = ACTIONS(1693), - [sym_bytes_literal] = ACTIONS(1693), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1691), - [sym_at_ident] = ACTIONS(1693), - [sym_hash_ident] = ACTIONS(1693), - [sym_type_ident] = ACTIONS(1693), - [sym_ct_type_ident] = ACTIONS(1693), - [sym_const_ident] = ACTIONS(1691), - [sym_builtin] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_tlocal] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_fn] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_var] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_defer] = ACTIONS(1691), - [anon_sym_assert] = ACTIONS(1691), - [anon_sym_nextcase] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_foreach] = ACTIONS(1691), - [anon_sym_foreach_r] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_int] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1693), - [anon_sym_asm] = ACTIONS(1691), - [anon_sym_DOLLARassert] = ACTIONS(1691), - [anon_sym_DOLLARerror] = ACTIONS(1691), - [anon_sym_DOLLARecho] = ACTIONS(1691), - [anon_sym_DOLLARif] = ACTIONS(1691), - [anon_sym_DOLLARswitch] = ACTIONS(1691), - [anon_sym_DOLLARfor] = ACTIONS(1691), - [anon_sym_DOLLARforeach] = ACTIONS(1691), - [anon_sym_DOLLARalignof] = ACTIONS(1691), - [anon_sym_DOLLARextnameof] = ACTIONS(1691), - [anon_sym_DOLLARnameof] = ACTIONS(1691), - [anon_sym_DOLLARoffsetof] = ACTIONS(1691), - [anon_sym_DOLLARqnameof] = ACTIONS(1691), - [anon_sym_DOLLARvaconst] = ACTIONS(1691), - [anon_sym_DOLLARvaarg] = ACTIONS(1691), - [anon_sym_DOLLARvaref] = ACTIONS(1691), - [anon_sym_DOLLARvaexpr] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1691), - [anon_sym_false] = ACTIONS(1691), - [anon_sym_null] = ACTIONS(1691), - [anon_sym_DOLLARvacount] = ACTIONS(1691), - [anon_sym_DOLLAReval] = ACTIONS(1691), - [anon_sym_DOLLARis_const] = ACTIONS(1691), - [anon_sym_DOLLARsizeof] = ACTIONS(1691), - [anon_sym_DOLLARstringify] = ACTIONS(1691), - [anon_sym_DOLLARappend] = ACTIONS(1691), - [anon_sym_DOLLARconcat] = ACTIONS(1691), - [anon_sym_DOLLARdefined] = ACTIONS(1691), - [anon_sym_DOLLARembed] = ACTIONS(1691), - [anon_sym_DOLLARand] = ACTIONS(1691), - [anon_sym_DOLLARor] = ACTIONS(1691), - [anon_sym_DOLLARfeature] = ACTIONS(1691), - [anon_sym_DOLLARassignable] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_PLUS_PLUS] = ACTIONS(1693), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_typeid] = ACTIONS(1691), - [anon_sym_LBRACE_PIPE] = ACTIONS(1693), - [anon_sym_void] = ACTIONS(1691), - [anon_sym_bool] = ACTIONS(1691), - [anon_sym_char] = ACTIONS(1691), - [anon_sym_ichar] = ACTIONS(1691), - [anon_sym_short] = ACTIONS(1691), - [anon_sym_ushort] = ACTIONS(1691), - [anon_sym_uint] = ACTIONS(1691), - [anon_sym_long] = ACTIONS(1691), - [anon_sym_ulong] = ACTIONS(1691), - [anon_sym_int128] = ACTIONS(1691), - [anon_sym_uint128] = ACTIONS(1691), - [anon_sym_float] = ACTIONS(1691), - [anon_sym_double] = ACTIONS(1691), - [anon_sym_float16] = ACTIONS(1691), - [anon_sym_bfloat16] = ACTIONS(1691), - [anon_sym_float128] = ACTIONS(1691), - [anon_sym_iptr] = ACTIONS(1691), - [anon_sym_uptr] = ACTIONS(1691), - [anon_sym_isz] = ACTIONS(1691), - [anon_sym_usz] = ACTIONS(1691), - [anon_sym_anyfault] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_DOLLARtypeof] = ACTIONS(1691), - [anon_sym_DOLLARtypefrom] = ACTIONS(1691), - [anon_sym_DOLLARevaltype] = ACTIONS(1691), - [anon_sym_DOLLARvatype] = ACTIONS(1691), - [sym_real_literal] = ACTIONS(1693), + [sym_ident] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_bytes_literal] = ACTIONS(1691), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1689), + [sym_at_ident] = ACTIONS(1691), + [sym_hash_ident] = ACTIONS(1691), + [sym_type_ident] = ACTIONS(1691), + [sym_ct_type_ident] = ACTIONS(1691), + [sym_const_ident] = ACTIONS(1689), + [sym_builtin] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_tlocal] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_fn] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_defer] = ACTIONS(1689), + [anon_sym_assert] = ACTIONS(1689), + [anon_sym_nextcase] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_foreach] = ACTIONS(1689), + [anon_sym_foreach_r] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_int] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym_DOLLARassert] = ACTIONS(1689), + [anon_sym_DOLLARerror] = ACTIONS(1689), + [anon_sym_DOLLARecho] = ACTIONS(1689), + [anon_sym_DOLLARif] = ACTIONS(1689), + [anon_sym_DOLLARswitch] = ACTIONS(1689), + [anon_sym_DOLLARfor] = ACTIONS(1689), + [anon_sym_DOLLARforeach] = ACTIONS(1689), + [anon_sym_DOLLARalignof] = ACTIONS(1689), + [anon_sym_DOLLARextnameof] = ACTIONS(1689), + [anon_sym_DOLLARnameof] = ACTIONS(1689), + [anon_sym_DOLLARoffsetof] = ACTIONS(1689), + [anon_sym_DOLLARqnameof] = ACTIONS(1689), + [anon_sym_DOLLARvaconst] = ACTIONS(1689), + [anon_sym_DOLLARvaarg] = ACTIONS(1689), + [anon_sym_DOLLARvaref] = ACTIONS(1689), + [anon_sym_DOLLARvaexpr] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [anon_sym_null] = ACTIONS(1689), + [anon_sym_DOLLARvacount] = ACTIONS(1689), + [anon_sym_DOLLAReval] = ACTIONS(1689), + [anon_sym_DOLLARis_const] = ACTIONS(1689), + [anon_sym_DOLLARsizeof] = ACTIONS(1689), + [anon_sym_DOLLARstringify] = ACTIONS(1689), + [anon_sym_DOLLARappend] = ACTIONS(1689), + [anon_sym_DOLLARconcat] = ACTIONS(1689), + [anon_sym_DOLLARdefined] = ACTIONS(1689), + [anon_sym_DOLLARembed] = ACTIONS(1689), + [anon_sym_DOLLARand] = ACTIONS(1689), + [anon_sym_DOLLARor] = ACTIONS(1689), + [anon_sym_DOLLARfeature] = ACTIONS(1689), + [anon_sym_DOLLARassignable] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_typeid] = ACTIONS(1689), + [anon_sym_LBRACE_PIPE] = ACTIONS(1691), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_bool] = ACTIONS(1689), + [anon_sym_char] = ACTIONS(1689), + [anon_sym_ichar] = ACTIONS(1689), + [anon_sym_short] = ACTIONS(1689), + [anon_sym_ushort] = ACTIONS(1689), + [anon_sym_uint] = ACTIONS(1689), + [anon_sym_long] = ACTIONS(1689), + [anon_sym_ulong] = ACTIONS(1689), + [anon_sym_int128] = ACTIONS(1689), + [anon_sym_uint128] = ACTIONS(1689), + [anon_sym_float] = ACTIONS(1689), + [anon_sym_double] = ACTIONS(1689), + [anon_sym_float16] = ACTIONS(1689), + [anon_sym_bfloat16] = ACTIONS(1689), + [anon_sym_float128] = ACTIONS(1689), + [anon_sym_iptr] = ACTIONS(1689), + [anon_sym_uptr] = ACTIONS(1689), + [anon_sym_isz] = ACTIONS(1689), + [anon_sym_usz] = ACTIONS(1689), + [anon_sym_anyfault] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_DOLLARtypeof] = ACTIONS(1689), + [anon_sym_DOLLARtypefrom] = ACTIONS(1689), + [anon_sym_DOLLARevaltype] = ACTIONS(1689), + [anon_sym_DOLLARvatype] = ACTIONS(1689), + [sym_real_literal] = ACTIONS(1691), }, [813] = { [sym_line_comment] = STATE(813), [sym_doc_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_ident] = ACTIONS(1707), - [sym_integer_literal] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [anon_sym_BQUOTE] = ACTIONS(1709), - [sym_bytes_literal] = ACTIONS(1709), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1707), - [sym_at_ident] = ACTIONS(1709), - [sym_hash_ident] = ACTIONS(1709), - [sym_type_ident] = ACTIONS(1709), - [sym_ct_type_ident] = ACTIONS(1709), - [sym_const_ident] = ACTIONS(1707), - [sym_builtin] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_tlocal] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_fn] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_var] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_defer] = ACTIONS(1707), - [anon_sym_assert] = ACTIONS(1707), - [anon_sym_nextcase] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_foreach] = ACTIONS(1707), - [anon_sym_foreach_r] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_int] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_asm] = ACTIONS(1707), - [anon_sym_DOLLARassert] = ACTIONS(1707), - [anon_sym_DOLLARerror] = ACTIONS(1707), - [anon_sym_DOLLARecho] = ACTIONS(1707), - [anon_sym_DOLLARif] = ACTIONS(1707), - [anon_sym_DOLLARswitch] = ACTIONS(1707), - [anon_sym_DOLLARfor] = ACTIONS(1707), - [anon_sym_DOLLARforeach] = ACTIONS(1707), - [anon_sym_DOLLARalignof] = ACTIONS(1707), - [anon_sym_DOLLARextnameof] = ACTIONS(1707), - [anon_sym_DOLLARnameof] = ACTIONS(1707), - [anon_sym_DOLLARoffsetof] = ACTIONS(1707), - [anon_sym_DOLLARqnameof] = ACTIONS(1707), - [anon_sym_DOLLARvaconst] = ACTIONS(1707), - [anon_sym_DOLLARvaarg] = ACTIONS(1707), - [anon_sym_DOLLARvaref] = ACTIONS(1707), - [anon_sym_DOLLARvaexpr] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1707), - [anon_sym_false] = ACTIONS(1707), - [anon_sym_null] = ACTIONS(1707), - [anon_sym_DOLLARvacount] = ACTIONS(1707), - [anon_sym_DOLLAReval] = ACTIONS(1707), - [anon_sym_DOLLARis_const] = ACTIONS(1707), - [anon_sym_DOLLARsizeof] = ACTIONS(1707), - [anon_sym_DOLLARstringify] = ACTIONS(1707), - [anon_sym_DOLLARappend] = ACTIONS(1707), - [anon_sym_DOLLARconcat] = ACTIONS(1707), - [anon_sym_DOLLARdefined] = ACTIONS(1707), - [anon_sym_DOLLARembed] = ACTIONS(1707), - [anon_sym_DOLLARand] = ACTIONS(1707), - [anon_sym_DOLLARor] = ACTIONS(1707), - [anon_sym_DOLLARfeature] = ACTIONS(1707), - [anon_sym_DOLLARassignable] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_typeid] = ACTIONS(1707), - [anon_sym_LBRACE_PIPE] = ACTIONS(1709), - [anon_sym_void] = ACTIONS(1707), - [anon_sym_bool] = ACTIONS(1707), - [anon_sym_char] = ACTIONS(1707), - [anon_sym_ichar] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [anon_sym_ushort] = ACTIONS(1707), - [anon_sym_uint] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_ulong] = ACTIONS(1707), - [anon_sym_int128] = ACTIONS(1707), - [anon_sym_uint128] = ACTIONS(1707), - [anon_sym_float] = ACTIONS(1707), - [anon_sym_double] = ACTIONS(1707), - [anon_sym_float16] = ACTIONS(1707), - [anon_sym_bfloat16] = ACTIONS(1707), - [anon_sym_float128] = ACTIONS(1707), - [anon_sym_iptr] = ACTIONS(1707), - [anon_sym_uptr] = ACTIONS(1707), - [anon_sym_isz] = ACTIONS(1707), - [anon_sym_usz] = ACTIONS(1707), - [anon_sym_anyfault] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_DOLLARtypeof] = ACTIONS(1707), - [anon_sym_DOLLARtypefrom] = ACTIONS(1707), - [anon_sym_DOLLARevaltype] = ACTIONS(1707), - [anon_sym_DOLLARvatype] = ACTIONS(1707), - [sym_real_literal] = ACTIONS(1709), + [sym_ident] = ACTIONS(1709), + [sym_integer_literal] = ACTIONS(1711), + [anon_sym_SQUOTE] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [anon_sym_BQUOTE] = ACTIONS(1711), + [sym_bytes_literal] = ACTIONS(1711), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1709), + [sym_at_ident] = ACTIONS(1711), + [sym_hash_ident] = ACTIONS(1711), + [sym_type_ident] = ACTIONS(1711), + [sym_ct_type_ident] = ACTIONS(1711), + [sym_const_ident] = ACTIONS(1709), + [sym_builtin] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_AMP] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_tlocal] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_fn] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_var] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_defer] = ACTIONS(1709), + [anon_sym_assert] = ACTIONS(1709), + [anon_sym_nextcase] = ACTIONS(1709), + [anon_sym_switch] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_foreach] = ACTIONS(1709), + [anon_sym_foreach_r] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_int] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_asm] = ACTIONS(1709), + [anon_sym_DOLLARassert] = ACTIONS(1709), + [anon_sym_DOLLARerror] = ACTIONS(1709), + [anon_sym_DOLLARecho] = ACTIONS(1709), + [anon_sym_DOLLARif] = ACTIONS(1709), + [anon_sym_DOLLARswitch] = ACTIONS(1709), + [anon_sym_DOLLARfor] = ACTIONS(1709), + [anon_sym_DOLLARforeach] = ACTIONS(1709), + [anon_sym_DOLLARalignof] = ACTIONS(1709), + [anon_sym_DOLLARextnameof] = ACTIONS(1709), + [anon_sym_DOLLARnameof] = ACTIONS(1709), + [anon_sym_DOLLARoffsetof] = ACTIONS(1709), + [anon_sym_DOLLARqnameof] = ACTIONS(1709), + [anon_sym_DOLLARvaconst] = ACTIONS(1709), + [anon_sym_DOLLARvaarg] = ACTIONS(1709), + [anon_sym_DOLLARvaref] = ACTIONS(1709), + [anon_sym_DOLLARvaexpr] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_null] = ACTIONS(1709), + [anon_sym_DOLLARvacount] = ACTIONS(1709), + [anon_sym_DOLLAReval] = ACTIONS(1709), + [anon_sym_DOLLARis_const] = ACTIONS(1709), + [anon_sym_DOLLARsizeof] = ACTIONS(1709), + [anon_sym_DOLLARstringify] = ACTIONS(1709), + [anon_sym_DOLLARappend] = ACTIONS(1709), + [anon_sym_DOLLARconcat] = ACTIONS(1709), + [anon_sym_DOLLARdefined] = ACTIONS(1709), + [anon_sym_DOLLARembed] = ACTIONS(1709), + [anon_sym_DOLLARand] = ACTIONS(1709), + [anon_sym_DOLLARor] = ACTIONS(1709), + [anon_sym_DOLLARfeature] = ACTIONS(1709), + [anon_sym_DOLLARassignable] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_typeid] = ACTIONS(1709), + [anon_sym_LBRACE_PIPE] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1709), + [anon_sym_bool] = ACTIONS(1709), + [anon_sym_char] = ACTIONS(1709), + [anon_sym_ichar] = ACTIONS(1709), + [anon_sym_short] = ACTIONS(1709), + [anon_sym_ushort] = ACTIONS(1709), + [anon_sym_uint] = ACTIONS(1709), + [anon_sym_long] = ACTIONS(1709), + [anon_sym_ulong] = ACTIONS(1709), + [anon_sym_int128] = ACTIONS(1709), + [anon_sym_uint128] = ACTIONS(1709), + [anon_sym_float] = ACTIONS(1709), + [anon_sym_double] = ACTIONS(1709), + [anon_sym_float16] = ACTIONS(1709), + [anon_sym_bfloat16] = ACTIONS(1709), + [anon_sym_float128] = ACTIONS(1709), + [anon_sym_iptr] = ACTIONS(1709), + [anon_sym_uptr] = ACTIONS(1709), + [anon_sym_isz] = ACTIONS(1709), + [anon_sym_usz] = ACTIONS(1709), + [anon_sym_anyfault] = ACTIONS(1709), + [anon_sym_any] = ACTIONS(1709), + [anon_sym_DOLLARtypeof] = ACTIONS(1709), + [anon_sym_DOLLARtypefrom] = ACTIONS(1709), + [anon_sym_DOLLARevaltype] = ACTIONS(1709), + [anon_sym_DOLLARvatype] = ACTIONS(1709), + [sym_real_literal] = ACTIONS(1711), }, [814] = { [sym_line_comment] = STATE(814), [sym_doc_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_ident] = ACTIONS(1719), - [sym_integer_literal] = ACTIONS(1721), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [anon_sym_BQUOTE] = ACTIONS(1721), - [sym_bytes_literal] = ACTIONS(1721), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1719), - [sym_at_ident] = ACTIONS(1721), - [sym_hash_ident] = ACTIONS(1721), - [sym_type_ident] = ACTIONS(1721), - [sym_ct_type_ident] = ACTIONS(1721), - [sym_const_ident] = ACTIONS(1719), - [sym_builtin] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_tlocal] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_defer] = ACTIONS(1719), - [anon_sym_assert] = ACTIONS(1719), - [anon_sym_nextcase] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_foreach] = ACTIONS(1719), - [anon_sym_foreach_r] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_int] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_asm] = ACTIONS(1719), - [anon_sym_DOLLARassert] = ACTIONS(1719), - [anon_sym_DOLLARerror] = ACTIONS(1719), - [anon_sym_DOLLARecho] = ACTIONS(1719), - [anon_sym_DOLLARif] = ACTIONS(1719), - [anon_sym_DOLLARswitch] = ACTIONS(1719), - [anon_sym_DOLLARfor] = ACTIONS(1719), - [anon_sym_DOLLARforeach] = ACTIONS(1719), - [anon_sym_DOLLARalignof] = ACTIONS(1719), - [anon_sym_DOLLARextnameof] = ACTIONS(1719), - [anon_sym_DOLLARnameof] = ACTIONS(1719), - [anon_sym_DOLLARoffsetof] = ACTIONS(1719), - [anon_sym_DOLLARqnameof] = ACTIONS(1719), - [anon_sym_DOLLARvaconst] = ACTIONS(1719), - [anon_sym_DOLLARvaarg] = ACTIONS(1719), - [anon_sym_DOLLARvaref] = ACTIONS(1719), - [anon_sym_DOLLARvaexpr] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_DOLLARvacount] = ACTIONS(1719), - [anon_sym_DOLLAReval] = ACTIONS(1719), - [anon_sym_DOLLARis_const] = ACTIONS(1719), - [anon_sym_DOLLARsizeof] = ACTIONS(1719), - [anon_sym_DOLLARstringify] = ACTIONS(1719), - [anon_sym_DOLLARappend] = ACTIONS(1719), - [anon_sym_DOLLARconcat] = ACTIONS(1719), - [anon_sym_DOLLARdefined] = ACTIONS(1719), - [anon_sym_DOLLARembed] = ACTIONS(1719), - [anon_sym_DOLLARand] = ACTIONS(1719), - [anon_sym_DOLLARor] = ACTIONS(1719), - [anon_sym_DOLLARfeature] = ACTIONS(1719), - [anon_sym_DOLLARassignable] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_typeid] = ACTIONS(1719), - [anon_sym_LBRACE_PIPE] = ACTIONS(1721), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_bool] = ACTIONS(1719), - [anon_sym_char] = ACTIONS(1719), - [anon_sym_ichar] = ACTIONS(1719), - [anon_sym_short] = ACTIONS(1719), - [anon_sym_ushort] = ACTIONS(1719), - [anon_sym_uint] = ACTIONS(1719), - [anon_sym_long] = ACTIONS(1719), - [anon_sym_ulong] = ACTIONS(1719), - [anon_sym_int128] = ACTIONS(1719), - [anon_sym_uint128] = ACTIONS(1719), - [anon_sym_float] = ACTIONS(1719), - [anon_sym_double] = ACTIONS(1719), - [anon_sym_float16] = ACTIONS(1719), - [anon_sym_bfloat16] = ACTIONS(1719), - [anon_sym_float128] = ACTIONS(1719), - [anon_sym_iptr] = ACTIONS(1719), - [anon_sym_uptr] = ACTIONS(1719), - [anon_sym_isz] = ACTIONS(1719), - [anon_sym_usz] = ACTIONS(1719), - [anon_sym_anyfault] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_DOLLARtypeof] = ACTIONS(1719), - [anon_sym_DOLLARtypefrom] = ACTIONS(1719), - [anon_sym_DOLLARevaltype] = ACTIONS(1719), - [anon_sym_DOLLARvatype] = ACTIONS(1719), - [sym_real_literal] = ACTIONS(1721), + [sym_ident] = ACTIONS(1697), + [sym_integer_literal] = ACTIONS(1699), + [anon_sym_SQUOTE] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [anon_sym_BQUOTE] = ACTIONS(1699), + [sym_bytes_literal] = ACTIONS(1699), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1697), + [sym_at_ident] = ACTIONS(1699), + [sym_hash_ident] = ACTIONS(1699), + [sym_type_ident] = ACTIONS(1699), + [sym_ct_type_ident] = ACTIONS(1699), + [sym_const_ident] = ACTIONS(1697), + [sym_builtin] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1697), + [anon_sym_tlocal] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_fn] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_var] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_defer] = ACTIONS(1697), + [anon_sym_assert] = ACTIONS(1697), + [anon_sym_nextcase] = ACTIONS(1697), + [anon_sym_switch] = ACTIONS(1697), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_foreach] = ACTIONS(1697), + [anon_sym_foreach_r] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_do] = ACTIONS(1697), + [anon_sym_int] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_asm] = ACTIONS(1697), + [anon_sym_DOLLARassert] = ACTIONS(1697), + [anon_sym_DOLLARerror] = ACTIONS(1697), + [anon_sym_DOLLARecho] = ACTIONS(1697), + [anon_sym_DOLLARif] = ACTIONS(1697), + [anon_sym_DOLLARswitch] = ACTIONS(1697), + [anon_sym_DOLLARfor] = ACTIONS(1697), + [anon_sym_DOLLARforeach] = ACTIONS(1697), + [anon_sym_DOLLARalignof] = ACTIONS(1697), + [anon_sym_DOLLARextnameof] = ACTIONS(1697), + [anon_sym_DOLLARnameof] = ACTIONS(1697), + [anon_sym_DOLLARoffsetof] = ACTIONS(1697), + [anon_sym_DOLLARqnameof] = ACTIONS(1697), + [anon_sym_DOLLARvaconst] = ACTIONS(1697), + [anon_sym_DOLLARvaarg] = ACTIONS(1697), + [anon_sym_DOLLARvaref] = ACTIONS(1697), + [anon_sym_DOLLARvaexpr] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_null] = ACTIONS(1697), + [anon_sym_DOLLARvacount] = ACTIONS(1697), + [anon_sym_DOLLAReval] = ACTIONS(1697), + [anon_sym_DOLLARis_const] = ACTIONS(1697), + [anon_sym_DOLLARsizeof] = ACTIONS(1697), + [anon_sym_DOLLARstringify] = ACTIONS(1697), + [anon_sym_DOLLARappend] = ACTIONS(1697), + [anon_sym_DOLLARconcat] = ACTIONS(1697), + [anon_sym_DOLLARdefined] = ACTIONS(1697), + [anon_sym_DOLLARembed] = ACTIONS(1697), + [anon_sym_DOLLARand] = ACTIONS(1697), + [anon_sym_DOLLARor] = ACTIONS(1697), + [anon_sym_DOLLARfeature] = ACTIONS(1697), + [anon_sym_DOLLARassignable] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_typeid] = ACTIONS(1697), + [anon_sym_LBRACE_PIPE] = ACTIONS(1699), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_ichar] = ACTIONS(1697), + [anon_sym_short] = ACTIONS(1697), + [anon_sym_ushort] = ACTIONS(1697), + [anon_sym_uint] = ACTIONS(1697), + [anon_sym_long] = ACTIONS(1697), + [anon_sym_ulong] = ACTIONS(1697), + [anon_sym_int128] = ACTIONS(1697), + [anon_sym_uint128] = ACTIONS(1697), + [anon_sym_float] = ACTIONS(1697), + [anon_sym_double] = ACTIONS(1697), + [anon_sym_float16] = ACTIONS(1697), + [anon_sym_bfloat16] = ACTIONS(1697), + [anon_sym_float128] = ACTIONS(1697), + [anon_sym_iptr] = ACTIONS(1697), + [anon_sym_uptr] = ACTIONS(1697), + [anon_sym_isz] = ACTIONS(1697), + [anon_sym_usz] = ACTIONS(1697), + [anon_sym_anyfault] = ACTIONS(1697), + [anon_sym_any] = ACTIONS(1697), + [anon_sym_DOLLARtypeof] = ACTIONS(1697), + [anon_sym_DOLLARtypefrom] = ACTIONS(1697), + [anon_sym_DOLLARevaltype] = ACTIONS(1697), + [anon_sym_DOLLARvatype] = ACTIONS(1697), + [sym_real_literal] = ACTIONS(1699), }, [815] = { [sym_line_comment] = STATE(815), [sym_doc_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_ident] = ACTIONS(1683), - [sym_integer_literal] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1685), - [anon_sym_BQUOTE] = ACTIONS(1685), - [sym_bytes_literal] = ACTIONS(1685), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1683), - [sym_at_ident] = ACTIONS(1685), - [sym_hash_ident] = ACTIONS(1685), - [sym_type_ident] = ACTIONS(1685), - [sym_ct_type_ident] = ACTIONS(1685), - [sym_const_ident] = ACTIONS(1683), - [sym_builtin] = ACTIONS(1685), - [anon_sym_LPAREN] = ACTIONS(1685), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1683), - [anon_sym_tlocal] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1685), - [anon_sym_fn] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_const] = ACTIONS(1683), - [anon_sym_var] = ACTIONS(1683), - [anon_sym_return] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_defer] = ACTIONS(1683), - [anon_sym_assert] = ACTIONS(1683), - [anon_sym_nextcase] = ACTIONS(1683), - [anon_sym_switch] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1683), - [anon_sym_foreach] = ACTIONS(1683), - [anon_sym_foreach_r] = ACTIONS(1683), - [anon_sym_while] = ACTIONS(1683), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_int] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_asm] = ACTIONS(1683), - [anon_sym_DOLLARassert] = ACTIONS(1683), - [anon_sym_DOLLARerror] = ACTIONS(1683), - [anon_sym_DOLLARecho] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1683), - [anon_sym_DOLLARswitch] = ACTIONS(1683), - [anon_sym_DOLLARfor] = ACTIONS(1683), - [anon_sym_DOLLARforeach] = ACTIONS(1683), - [anon_sym_DOLLARalignof] = ACTIONS(1683), - [anon_sym_DOLLARextnameof] = ACTIONS(1683), - [anon_sym_DOLLARnameof] = ACTIONS(1683), - [anon_sym_DOLLARoffsetof] = ACTIONS(1683), - [anon_sym_DOLLARqnameof] = ACTIONS(1683), - [anon_sym_DOLLARvaconst] = ACTIONS(1683), - [anon_sym_DOLLARvaarg] = ACTIONS(1683), - [anon_sym_DOLLARvaref] = ACTIONS(1683), - [anon_sym_DOLLARvaexpr] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_null] = ACTIONS(1683), - [anon_sym_DOLLARvacount] = ACTIONS(1683), - [anon_sym_DOLLAReval] = ACTIONS(1683), - [anon_sym_DOLLARis_const] = ACTIONS(1683), - [anon_sym_DOLLARsizeof] = ACTIONS(1683), - [anon_sym_DOLLARstringify] = ACTIONS(1683), - [anon_sym_DOLLARappend] = ACTIONS(1683), - [anon_sym_DOLLARconcat] = ACTIONS(1683), - [anon_sym_DOLLARdefined] = ACTIONS(1683), - [anon_sym_DOLLARembed] = ACTIONS(1683), - [anon_sym_DOLLARand] = ACTIONS(1683), - [anon_sym_DOLLARor] = ACTIONS(1683), - [anon_sym_DOLLARfeature] = ACTIONS(1683), - [anon_sym_DOLLARassignable] = ACTIONS(1683), - [anon_sym_BANG] = ACTIONS(1685), - [anon_sym_TILDE] = ACTIONS(1685), - [anon_sym_PLUS_PLUS] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1685), - [anon_sym_typeid] = ACTIONS(1683), - [anon_sym_LBRACE_PIPE] = ACTIONS(1685), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_bool] = ACTIONS(1683), - [anon_sym_char] = ACTIONS(1683), - [anon_sym_ichar] = ACTIONS(1683), - [anon_sym_short] = ACTIONS(1683), - [anon_sym_ushort] = ACTIONS(1683), - [anon_sym_uint] = ACTIONS(1683), - [anon_sym_long] = ACTIONS(1683), - [anon_sym_ulong] = ACTIONS(1683), - [anon_sym_int128] = ACTIONS(1683), - [anon_sym_uint128] = ACTIONS(1683), - [anon_sym_float] = ACTIONS(1683), - [anon_sym_double] = ACTIONS(1683), - [anon_sym_float16] = ACTIONS(1683), - [anon_sym_bfloat16] = ACTIONS(1683), - [anon_sym_float128] = ACTIONS(1683), - [anon_sym_iptr] = ACTIONS(1683), - [anon_sym_uptr] = ACTIONS(1683), - [anon_sym_isz] = ACTIONS(1683), - [anon_sym_usz] = ACTIONS(1683), - [anon_sym_anyfault] = ACTIONS(1683), - [anon_sym_any] = ACTIONS(1683), - [anon_sym_DOLLARtypeof] = ACTIONS(1683), - [anon_sym_DOLLARtypefrom] = ACTIONS(1683), - [anon_sym_DOLLARevaltype] = ACTIONS(1683), - [anon_sym_DOLLARvatype] = ACTIONS(1683), - [sym_real_literal] = ACTIONS(1685), + [sym_ident] = ACTIONS(1713), + [sym_integer_literal] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [anon_sym_BQUOTE] = ACTIONS(1715), + [sym_bytes_literal] = ACTIONS(1715), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1713), + [sym_at_ident] = ACTIONS(1715), + [sym_hash_ident] = ACTIONS(1715), + [sym_type_ident] = ACTIONS(1715), + [sym_ct_type_ident] = ACTIONS(1715), + [sym_const_ident] = ACTIONS(1713), + [sym_builtin] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1713), + [anon_sym_tlocal] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_fn] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_var] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_defer] = ACTIONS(1713), + [anon_sym_assert] = ACTIONS(1713), + [anon_sym_nextcase] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_foreach] = ACTIONS(1713), + [anon_sym_foreach_r] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(1713), + [anon_sym_do] = ACTIONS(1713), + [anon_sym_int] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_asm] = ACTIONS(1713), + [anon_sym_DOLLARassert] = ACTIONS(1713), + [anon_sym_DOLLARerror] = ACTIONS(1713), + [anon_sym_DOLLARecho] = ACTIONS(1713), + [anon_sym_DOLLARif] = ACTIONS(1713), + [anon_sym_DOLLARswitch] = ACTIONS(1713), + [anon_sym_DOLLARfor] = ACTIONS(1713), + [anon_sym_DOLLARforeach] = ACTIONS(1713), + [anon_sym_DOLLARalignof] = ACTIONS(1713), + [anon_sym_DOLLARextnameof] = ACTIONS(1713), + [anon_sym_DOLLARnameof] = ACTIONS(1713), + [anon_sym_DOLLARoffsetof] = ACTIONS(1713), + [anon_sym_DOLLARqnameof] = ACTIONS(1713), + [anon_sym_DOLLARvaconst] = ACTIONS(1713), + [anon_sym_DOLLARvaarg] = ACTIONS(1713), + [anon_sym_DOLLARvaref] = ACTIONS(1713), + [anon_sym_DOLLARvaexpr] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_DOLLARvacount] = ACTIONS(1713), + [anon_sym_DOLLAReval] = ACTIONS(1713), + [anon_sym_DOLLARis_const] = ACTIONS(1713), + [anon_sym_DOLLARsizeof] = ACTIONS(1713), + [anon_sym_DOLLARstringify] = ACTIONS(1713), + [anon_sym_DOLLARappend] = ACTIONS(1713), + [anon_sym_DOLLARconcat] = ACTIONS(1713), + [anon_sym_DOLLARdefined] = ACTIONS(1713), + [anon_sym_DOLLARembed] = ACTIONS(1713), + [anon_sym_DOLLARand] = ACTIONS(1713), + [anon_sym_DOLLARor] = ACTIONS(1713), + [anon_sym_DOLLARfeature] = ACTIONS(1713), + [anon_sym_DOLLARassignable] = ACTIONS(1713), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_typeid] = ACTIONS(1713), + [anon_sym_LBRACE_PIPE] = ACTIONS(1715), + [anon_sym_void] = ACTIONS(1713), + [anon_sym_bool] = ACTIONS(1713), + [anon_sym_char] = ACTIONS(1713), + [anon_sym_ichar] = ACTIONS(1713), + [anon_sym_short] = ACTIONS(1713), + [anon_sym_ushort] = ACTIONS(1713), + [anon_sym_uint] = ACTIONS(1713), + [anon_sym_long] = ACTIONS(1713), + [anon_sym_ulong] = ACTIONS(1713), + [anon_sym_int128] = ACTIONS(1713), + [anon_sym_uint128] = ACTIONS(1713), + [anon_sym_float] = ACTIONS(1713), + [anon_sym_double] = ACTIONS(1713), + [anon_sym_float16] = ACTIONS(1713), + [anon_sym_bfloat16] = ACTIONS(1713), + [anon_sym_float128] = ACTIONS(1713), + [anon_sym_iptr] = ACTIONS(1713), + [anon_sym_uptr] = ACTIONS(1713), + [anon_sym_isz] = ACTIONS(1713), + [anon_sym_usz] = ACTIONS(1713), + [anon_sym_anyfault] = ACTIONS(1713), + [anon_sym_any] = ACTIONS(1713), + [anon_sym_DOLLARtypeof] = ACTIONS(1713), + [anon_sym_DOLLARtypefrom] = ACTIONS(1713), + [anon_sym_DOLLARevaltype] = ACTIONS(1713), + [anon_sym_DOLLARvatype] = ACTIONS(1713), + [sym_real_literal] = ACTIONS(1715), }, [816] = { [sym_line_comment] = STATE(816), [sym_doc_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_ident] = ACTIONS(1695), - [sym_integer_literal] = ACTIONS(1697), - [anon_sym_SQUOTE] = ACTIONS(1697), - [anon_sym_DQUOTE] = ACTIONS(1697), - [anon_sym_BQUOTE] = ACTIONS(1697), - [sym_bytes_literal] = ACTIONS(1697), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1695), - [sym_at_ident] = ACTIONS(1697), - [sym_hash_ident] = ACTIONS(1697), - [sym_type_ident] = ACTIONS(1697), - [sym_ct_type_ident] = ACTIONS(1697), - [sym_const_ident] = ACTIONS(1695), - [sym_builtin] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1697), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1695), - [anon_sym_tlocal] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1697), - [anon_sym_fn] = ACTIONS(1695), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_const] = ACTIONS(1695), - [anon_sym_var] = ACTIONS(1695), - [anon_sym_return] = ACTIONS(1695), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_break] = ACTIONS(1695), - [anon_sym_defer] = ACTIONS(1695), - [anon_sym_assert] = ACTIONS(1695), - [anon_sym_nextcase] = ACTIONS(1695), - [anon_sym_switch] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1695), - [anon_sym_for] = ACTIONS(1695), - [anon_sym_foreach] = ACTIONS(1695), - [anon_sym_foreach_r] = ACTIONS(1695), - [anon_sym_while] = ACTIONS(1695), - [anon_sym_do] = ACTIONS(1695), - [anon_sym_int] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_asm] = ACTIONS(1695), - [anon_sym_DOLLARassert] = ACTIONS(1695), - [anon_sym_DOLLARerror] = ACTIONS(1695), - [anon_sym_DOLLARecho] = ACTIONS(1695), - [anon_sym_DOLLARif] = ACTIONS(1695), - [anon_sym_DOLLARswitch] = ACTIONS(1695), - [anon_sym_DOLLARfor] = ACTIONS(1695), - [anon_sym_DOLLARforeach] = ACTIONS(1695), - [anon_sym_DOLLARalignof] = ACTIONS(1695), - [anon_sym_DOLLARextnameof] = ACTIONS(1695), - [anon_sym_DOLLARnameof] = ACTIONS(1695), - [anon_sym_DOLLARoffsetof] = ACTIONS(1695), - [anon_sym_DOLLARqnameof] = ACTIONS(1695), - [anon_sym_DOLLARvaconst] = ACTIONS(1695), - [anon_sym_DOLLARvaarg] = ACTIONS(1695), - [anon_sym_DOLLARvaref] = ACTIONS(1695), - [anon_sym_DOLLARvaexpr] = ACTIONS(1695), - [anon_sym_true] = ACTIONS(1695), - [anon_sym_false] = ACTIONS(1695), - [anon_sym_null] = ACTIONS(1695), - [anon_sym_DOLLARvacount] = ACTIONS(1695), - [anon_sym_DOLLAReval] = ACTIONS(1695), - [anon_sym_DOLLARis_const] = ACTIONS(1695), - [anon_sym_DOLLARsizeof] = ACTIONS(1695), - [anon_sym_DOLLARstringify] = ACTIONS(1695), - [anon_sym_DOLLARappend] = ACTIONS(1695), - [anon_sym_DOLLARconcat] = ACTIONS(1695), - [anon_sym_DOLLARdefined] = ACTIONS(1695), - [anon_sym_DOLLARembed] = ACTIONS(1695), - [anon_sym_DOLLARand] = ACTIONS(1695), - [anon_sym_DOLLARor] = ACTIONS(1695), - [anon_sym_DOLLARfeature] = ACTIONS(1695), - [anon_sym_DOLLARassignable] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1697), - [anon_sym_typeid] = ACTIONS(1695), - [anon_sym_LBRACE_PIPE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1695), - [anon_sym_bool] = ACTIONS(1695), - [anon_sym_char] = ACTIONS(1695), - [anon_sym_ichar] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [anon_sym_ushort] = ACTIONS(1695), - [anon_sym_uint] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_ulong] = ACTIONS(1695), - [anon_sym_int128] = ACTIONS(1695), - [anon_sym_uint128] = ACTIONS(1695), - [anon_sym_float] = ACTIONS(1695), - [anon_sym_double] = ACTIONS(1695), - [anon_sym_float16] = ACTIONS(1695), - [anon_sym_bfloat16] = ACTIONS(1695), - [anon_sym_float128] = ACTIONS(1695), - [anon_sym_iptr] = ACTIONS(1695), - [anon_sym_uptr] = ACTIONS(1695), - [anon_sym_isz] = ACTIONS(1695), - [anon_sym_usz] = ACTIONS(1695), - [anon_sym_anyfault] = ACTIONS(1695), - [anon_sym_any] = ACTIONS(1695), - [anon_sym_DOLLARtypeof] = ACTIONS(1695), - [anon_sym_DOLLARtypefrom] = ACTIONS(1695), - [anon_sym_DOLLARevaltype] = ACTIONS(1695), - [anon_sym_DOLLARvatype] = ACTIONS(1695), - [sym_real_literal] = ACTIONS(1697), - }, - [817] = { - [sym_line_comment] = STATE(817), - [sym_doc_comment] = STATE(817), - [sym_block_comment] = STATE(817), - [sym_ident] = ACTIONS(1699), - [sym_integer_literal] = ACTIONS(1701), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [anon_sym_BQUOTE] = ACTIONS(1701), - [sym_bytes_literal] = ACTIONS(1701), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1699), - [sym_at_ident] = ACTIONS(1701), - [sym_hash_ident] = ACTIONS(1701), - [sym_type_ident] = ACTIONS(1701), - [sym_ct_type_ident] = ACTIONS(1701), - [sym_const_ident] = ACTIONS(1699), - [sym_builtin] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_tlocal] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1701), - [anon_sym_fn] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_defer] = ACTIONS(1699), - [anon_sym_assert] = ACTIONS(1699), - [anon_sym_nextcase] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_foreach] = ACTIONS(1699), - [anon_sym_foreach_r] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_int] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_asm] = ACTIONS(1699), - [anon_sym_DOLLARassert] = ACTIONS(1699), - [anon_sym_DOLLARerror] = ACTIONS(1699), - [anon_sym_DOLLARecho] = ACTIONS(1699), - [anon_sym_DOLLARif] = ACTIONS(1699), - [anon_sym_DOLLARswitch] = ACTIONS(1699), - [anon_sym_DOLLARfor] = ACTIONS(1699), - [anon_sym_DOLLARforeach] = ACTIONS(1699), - [anon_sym_DOLLARalignof] = ACTIONS(1699), - [anon_sym_DOLLARextnameof] = ACTIONS(1699), - [anon_sym_DOLLARnameof] = ACTIONS(1699), - [anon_sym_DOLLARoffsetof] = ACTIONS(1699), - [anon_sym_DOLLARqnameof] = ACTIONS(1699), - [anon_sym_DOLLARvaconst] = ACTIONS(1699), - [anon_sym_DOLLARvaarg] = ACTIONS(1699), - [anon_sym_DOLLARvaref] = ACTIONS(1699), - [anon_sym_DOLLARvaexpr] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1699), - [anon_sym_false] = ACTIONS(1699), - [anon_sym_null] = ACTIONS(1699), - [anon_sym_DOLLARvacount] = ACTIONS(1699), - [anon_sym_DOLLAReval] = ACTIONS(1699), - [anon_sym_DOLLARis_const] = ACTIONS(1699), - [anon_sym_DOLLARsizeof] = ACTIONS(1699), - [anon_sym_DOLLARstringify] = ACTIONS(1699), - [anon_sym_DOLLARappend] = ACTIONS(1699), - [anon_sym_DOLLARconcat] = ACTIONS(1699), - [anon_sym_DOLLARdefined] = ACTIONS(1699), - [anon_sym_DOLLARembed] = ACTIONS(1699), - [anon_sym_DOLLARand] = ACTIONS(1699), - [anon_sym_DOLLARor] = ACTIONS(1699), - [anon_sym_DOLLARfeature] = ACTIONS(1699), - [anon_sym_DOLLARassignable] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [anon_sym_typeid] = ACTIONS(1699), - [anon_sym_LBRACE_PIPE] = ACTIONS(1701), - [anon_sym_void] = ACTIONS(1699), - [anon_sym_bool] = ACTIONS(1699), - [anon_sym_char] = ACTIONS(1699), - [anon_sym_ichar] = ACTIONS(1699), - [anon_sym_short] = ACTIONS(1699), - [anon_sym_ushort] = ACTIONS(1699), - [anon_sym_uint] = ACTIONS(1699), - [anon_sym_long] = ACTIONS(1699), - [anon_sym_ulong] = ACTIONS(1699), - [anon_sym_int128] = ACTIONS(1699), - [anon_sym_uint128] = ACTIONS(1699), - [anon_sym_float] = ACTIONS(1699), - [anon_sym_double] = ACTIONS(1699), - [anon_sym_float16] = ACTIONS(1699), - [anon_sym_bfloat16] = ACTIONS(1699), - [anon_sym_float128] = ACTIONS(1699), - [anon_sym_iptr] = ACTIONS(1699), - [anon_sym_uptr] = ACTIONS(1699), - [anon_sym_isz] = ACTIONS(1699), - [anon_sym_usz] = ACTIONS(1699), - [anon_sym_anyfault] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_DOLLARtypeof] = ACTIONS(1699), - [anon_sym_DOLLARtypefrom] = ACTIONS(1699), - [anon_sym_DOLLARevaltype] = ACTIONS(1699), - [anon_sym_DOLLARvatype] = ACTIONS(1699), - [sym_real_literal] = ACTIONS(1701), - }, - [818] = { - [sym_line_comment] = STATE(818), - [sym_doc_comment] = STATE(818), - [sym_block_comment] = STATE(818), - [sym_ident] = ACTIONS(1687), - [sym_integer_literal] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [anon_sym_BQUOTE] = ACTIONS(1689), - [sym_bytes_literal] = ACTIONS(1689), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1687), - [sym_at_ident] = ACTIONS(1689), - [sym_hash_ident] = ACTIONS(1689), - [sym_type_ident] = ACTIONS(1689), - [sym_ct_type_ident] = ACTIONS(1689), - [sym_const_ident] = ACTIONS(1687), - [sym_builtin] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1687), - [anon_sym_tlocal] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_fn] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_const] = ACTIONS(1687), - [anon_sym_var] = ACTIONS(1687), - [anon_sym_return] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_defer] = ACTIONS(1687), - [anon_sym_assert] = ACTIONS(1687), - [anon_sym_nextcase] = ACTIONS(1687), - [anon_sym_switch] = ACTIONS(1687), - [anon_sym_AMP_AMP] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1687), - [anon_sym_for] = ACTIONS(1687), - [anon_sym_foreach] = ACTIONS(1687), - [anon_sym_foreach_r] = ACTIONS(1687), - [anon_sym_while] = ACTIONS(1687), - [anon_sym_do] = ACTIONS(1687), - [anon_sym_int] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_asm] = ACTIONS(1687), - [anon_sym_DOLLARassert] = ACTIONS(1687), - [anon_sym_DOLLARerror] = ACTIONS(1687), - [anon_sym_DOLLARecho] = ACTIONS(1687), - [anon_sym_DOLLARif] = ACTIONS(1687), - [anon_sym_DOLLARswitch] = ACTIONS(1687), - [anon_sym_DOLLARfor] = ACTIONS(1687), - [anon_sym_DOLLARforeach] = ACTIONS(1687), - [anon_sym_DOLLARalignof] = ACTIONS(1687), - [anon_sym_DOLLARextnameof] = ACTIONS(1687), - [anon_sym_DOLLARnameof] = ACTIONS(1687), - [anon_sym_DOLLARoffsetof] = ACTIONS(1687), - [anon_sym_DOLLARqnameof] = ACTIONS(1687), - [anon_sym_DOLLARvaconst] = ACTIONS(1687), - [anon_sym_DOLLARvaarg] = ACTIONS(1687), - [anon_sym_DOLLARvaref] = ACTIONS(1687), - [anon_sym_DOLLARvaexpr] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1687), - [anon_sym_false] = ACTIONS(1687), - [anon_sym_null] = ACTIONS(1687), - [anon_sym_DOLLARvacount] = ACTIONS(1687), - [anon_sym_DOLLAReval] = ACTIONS(1687), - [anon_sym_DOLLARis_const] = ACTIONS(1687), - [anon_sym_DOLLARsizeof] = ACTIONS(1687), - [anon_sym_DOLLARstringify] = ACTIONS(1687), - [anon_sym_DOLLARappend] = ACTIONS(1687), - [anon_sym_DOLLARconcat] = ACTIONS(1687), - [anon_sym_DOLLARdefined] = ACTIONS(1687), - [anon_sym_DOLLARembed] = ACTIONS(1687), - [anon_sym_DOLLARand] = ACTIONS(1687), - [anon_sym_DOLLARor] = ACTIONS(1687), - [anon_sym_DOLLARfeature] = ACTIONS(1687), - [anon_sym_DOLLARassignable] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [anon_sym_typeid] = ACTIONS(1687), - [anon_sym_LBRACE_PIPE] = ACTIONS(1689), - [anon_sym_void] = ACTIONS(1687), - [anon_sym_bool] = ACTIONS(1687), - [anon_sym_char] = ACTIONS(1687), - [anon_sym_ichar] = ACTIONS(1687), - [anon_sym_short] = ACTIONS(1687), - [anon_sym_ushort] = ACTIONS(1687), - [anon_sym_uint] = ACTIONS(1687), - [anon_sym_long] = ACTIONS(1687), - [anon_sym_ulong] = ACTIONS(1687), - [anon_sym_int128] = ACTIONS(1687), - [anon_sym_uint128] = ACTIONS(1687), - [anon_sym_float] = ACTIONS(1687), - [anon_sym_double] = ACTIONS(1687), - [anon_sym_float16] = ACTIONS(1687), - [anon_sym_bfloat16] = ACTIONS(1687), - [anon_sym_float128] = ACTIONS(1687), - [anon_sym_iptr] = ACTIONS(1687), - [anon_sym_uptr] = ACTIONS(1687), - [anon_sym_isz] = ACTIONS(1687), - [anon_sym_usz] = ACTIONS(1687), - [anon_sym_anyfault] = ACTIONS(1687), - [anon_sym_any] = ACTIONS(1687), - [anon_sym_DOLLARtypeof] = ACTIONS(1687), - [anon_sym_DOLLARtypefrom] = ACTIONS(1687), - [anon_sym_DOLLARevaltype] = ACTIONS(1687), - [anon_sym_DOLLARvatype] = ACTIONS(1687), - [sym_real_literal] = ACTIONS(1689), - }, - [819] = { - [sym_line_comment] = STATE(819), - [sym_doc_comment] = STATE(819), - [sym_block_comment] = STATE(819), [ts_builtin_sym_end] = ACTIONS(1191), [sym_ident] = ACTIONS(1189), [aux_sym_line_comment_token1] = ACTIONS(3), @@ -119936,1225 +119506,1138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARvatype] = ACTIONS(1191), [anon_sym_GT_RBRACK] = ACTIONS(1191), }, - [820] = { - [sym_line_comment] = STATE(820), - [sym_doc_comment] = STATE(820), - [sym_block_comment] = STATE(820), - [ts_builtin_sym_end] = ACTIONS(1375), - [sym_ident] = ACTIONS(1373), + [817] = { + [sym_line_comment] = STATE(817), + [sym_doc_comment] = STATE(817), + [sym_block_comment] = STATE(817), + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_ident] = ACTIONS(1363), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_type_ident] = ACTIONS(1375), - [sym_ct_type_ident] = ACTIONS(1375), - [anon_sym_DOT] = ACTIONS(1373), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_LPAREN_LT] = ACTIONS(1375), - [anon_sym_GT_RPAREN] = ACTIONS(1375), - [anon_sym_EQ] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_RPAREN] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_RBRACK] = ACTIONS(1375), - [anon_sym_tlocal] = ACTIONS(1373), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_def] = ACTIONS(1373), - [anon_sym_distinct] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_bitstruct] = ACTIONS(1373), - [anon_sym_COLON] = ACTIONS(1375), - [anon_sym_DOT_DOT] = ACTIONS(1375), - [anon_sym_fault] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_interface] = ACTIONS(1373), - [anon_sym_macro] = ACTIONS(1373), - [anon_sym_AMP_AMP] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_int] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_LT_LT] = ACTIONS(1373), - [anon_sym_GT_GT] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_DOLLARassert] = ACTIONS(1375), - [anon_sym_DOLLARerror] = ACTIONS(1375), - [anon_sym_DOLLARinclude] = ACTIONS(1375), - [anon_sym_DOLLARexec] = ACTIONS(1375), - [anon_sym_DOLLARecho] = ACTIONS(1375), - [anon_sym_PLUS_EQ] = ACTIONS(1375), - [anon_sym_DASH_EQ] = ACTIONS(1375), - [anon_sym_STAR_EQ] = ACTIONS(1375), - [anon_sym_SLASH_EQ] = ACTIONS(1375), - [anon_sym_PERCENT_EQ] = ACTIONS(1375), - [anon_sym_LT_LT_EQ] = ACTIONS(1375), - [anon_sym_GT_GT_EQ] = ACTIONS(1375), - [anon_sym_AMP_EQ] = ACTIONS(1375), - [anon_sym_CARET_EQ] = ACTIONS(1375), - [anon_sym_PIPE_EQ] = ACTIONS(1375), - [anon_sym_QMARK] = ACTIONS(1373), - [anon_sym_QMARK_COLON] = ACTIONS(1375), - [anon_sym_QMARK_QMARK] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1373), - [anon_sym_PERCENT] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_EQ_EQ] = ACTIONS(1375), - [anon_sym_BANG_EQ] = ACTIONS(1375), - [anon_sym_GT] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(1375), - [anon_sym_LT_EQ] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_PIPE_PIPE] = ACTIONS(1373), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1375), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1375), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_BANG_BANG] = ACTIONS(1375), - [anon_sym_typeid] = ACTIONS(1373), - [anon_sym_void] = ACTIONS(1373), - [anon_sym_bool] = ACTIONS(1373), - [anon_sym_char] = ACTIONS(1373), - [anon_sym_ichar] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [anon_sym_ushort] = ACTIONS(1373), - [anon_sym_uint] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_ulong] = ACTIONS(1373), - [anon_sym_int128] = ACTIONS(1373), - [anon_sym_uint128] = ACTIONS(1373), - [anon_sym_float] = ACTIONS(1373), - [anon_sym_double] = ACTIONS(1373), - [anon_sym_float16] = ACTIONS(1373), - [anon_sym_bfloat16] = ACTIONS(1373), - [anon_sym_float128] = ACTIONS(1373), - [anon_sym_iptr] = ACTIONS(1373), - [anon_sym_uptr] = ACTIONS(1373), - [anon_sym_isz] = ACTIONS(1373), - [anon_sym_usz] = ACTIONS(1373), - [anon_sym_anyfault] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_DOLLARtypeof] = ACTIONS(1375), - [anon_sym_DOLLARtypefrom] = ACTIONS(1375), - [anon_sym_DOLLARevaltype] = ACTIONS(1375), - [anon_sym_DOLLARvatype] = ACTIONS(1375), - [anon_sym_GT_RBRACK] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN_LT] = ACTIONS(1365), + [anon_sym_GT_RPAREN] = ACTIONS(1365), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_import] = ACTIONS(1363), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_distinct] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_struct] = ACTIONS(1363), + [anon_sym_union] = ACTIONS(1363), + [anon_sym_bitstruct] = ACTIONS(1363), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_fault] = ACTIONS(1363), + [anon_sym_enum] = ACTIONS(1363), + [anon_sym_interface] = ACTIONS(1363), + [anon_sym_macro] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1365), + [anon_sym_DOLLARerror] = ACTIONS(1365), + [anon_sym_DOLLARinclude] = ACTIONS(1365), + [anon_sym_DOLLARexec] = ACTIONS(1365), + [anon_sym_DOLLARecho] = ACTIONS(1365), + [anon_sym_PLUS_EQ] = ACTIONS(1365), + [anon_sym_DASH_EQ] = ACTIONS(1365), + [anon_sym_STAR_EQ] = ACTIONS(1365), + [anon_sym_SLASH_EQ] = ACTIONS(1365), + [anon_sym_PERCENT_EQ] = ACTIONS(1365), + [anon_sym_LT_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_GT_EQ] = ACTIONS(1365), + [anon_sym_AMP_EQ] = ACTIONS(1365), + [anon_sym_CARET_EQ] = ACTIONS(1365), + [anon_sym_PIPE_EQ] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1363), + [anon_sym_QMARK_COLON] = ACTIONS(1365), + [anon_sym_QMARK_QMARK] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_PIPE_PIPE] = ACTIONS(1363), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1365), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_BANG_BANG] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1365), + [anon_sym_DOLLARtypefrom] = ACTIONS(1365), + [anon_sym_DOLLARevaltype] = ACTIONS(1365), + [anon_sym_DOLLARvatype] = ACTIONS(1365), + [anon_sym_GT_RBRACK] = ACTIONS(1365), + }, + [818] = { + [sym_line_comment] = STATE(818), + [sym_doc_comment] = STATE(818), + [sym_block_comment] = STATE(818), + [sym_ident] = ACTIONS(1717), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_at_ident] = ACTIONS(1719), + [sym_type_ident] = ACTIONS(1719), + [sym_ct_type_ident] = ACTIONS(1719), + [sym_at_type_ident] = ACTIONS(1719), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_COMMA] = ACTIONS(1719), + [anon_sym_LPAREN_LT] = ACTIONS(1719), + [anon_sym_GT_RPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_RBRACK] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1717), + [anon_sym_int] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_LT_LT] = ACTIONS(1717), + [anon_sym_GT_GT] = ACTIONS(1717), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_PLUS_EQ] = ACTIONS(1719), + [anon_sym_DASH_EQ] = ACTIONS(1719), + [anon_sym_STAR_EQ] = ACTIONS(1719), + [anon_sym_SLASH_EQ] = ACTIONS(1719), + [anon_sym_PERCENT_EQ] = ACTIONS(1719), + [anon_sym_LT_LT_EQ] = ACTIONS(1719), + [anon_sym_GT_GT_EQ] = ACTIONS(1719), + [anon_sym_AMP_EQ] = ACTIONS(1719), + [anon_sym_CARET_EQ] = ACTIONS(1719), + [anon_sym_PIPE_EQ] = ACTIONS(1719), + [anon_sym_QMARK] = ACTIONS(1717), + [anon_sym_QMARK_COLON] = ACTIONS(1719), + [anon_sym_QMARK_QMARK] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_PERCENT] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_EQ_EQ] = ACTIONS(1719), + [anon_sym_BANG_EQ] = ACTIONS(1719), + [anon_sym_GT] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(1719), + [anon_sym_LT_EQ] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_PIPE_PIPE] = ACTIONS(1717), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1719), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_BANG_BANG] = ACTIONS(1719), + [anon_sym_typeid] = ACTIONS(1717), + [anon_sym_void] = ACTIONS(1717), + [anon_sym_bool] = ACTIONS(1717), + [anon_sym_char] = ACTIONS(1717), + [anon_sym_ichar] = ACTIONS(1717), + [anon_sym_short] = ACTIONS(1717), + [anon_sym_ushort] = ACTIONS(1717), + [anon_sym_uint] = ACTIONS(1717), + [anon_sym_long] = ACTIONS(1717), + [anon_sym_ulong] = ACTIONS(1717), + [anon_sym_int128] = ACTIONS(1717), + [anon_sym_uint128] = ACTIONS(1717), + [anon_sym_float] = ACTIONS(1717), + [anon_sym_double] = ACTIONS(1717), + [anon_sym_float16] = ACTIONS(1717), + [anon_sym_bfloat16] = ACTIONS(1717), + [anon_sym_float128] = ACTIONS(1717), + [anon_sym_iptr] = ACTIONS(1717), + [anon_sym_uptr] = ACTIONS(1717), + [anon_sym_isz] = ACTIONS(1717), + [anon_sym_usz] = ACTIONS(1717), + [anon_sym_anyfault] = ACTIONS(1717), + [anon_sym_any] = ACTIONS(1717), + [anon_sym_DOLLARtypeof] = ACTIONS(1719), + [anon_sym_DOLLARtypefrom] = ACTIONS(1719), + [anon_sym_DOLLARevaltype] = ACTIONS(1719), + [anon_sym_DOLLARvatype] = ACTIONS(1719), + [anon_sym_GT_RBRACK] = ACTIONS(1719), + }, + [819] = { + [sym_line_comment] = STATE(819), + [sym_doc_comment] = STATE(819), + [sym_block_comment] = STATE(819), + [sym_ident] = ACTIONS(1721), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_at_ident] = ACTIONS(1723), + [sym_type_ident] = ACTIONS(1723), + [sym_ct_type_ident] = ACTIONS(1723), + [sym_at_type_ident] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1721), + [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_LPAREN_LT] = ACTIONS(1723), + [anon_sym_GT_RPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_RBRACK] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_COLON] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1721), + [anon_sym_int] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LT_LT] = ACTIONS(1721), + [anon_sym_GT_GT] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1723), + [anon_sym_DASH_EQ] = ACTIONS(1723), + [anon_sym_STAR_EQ] = ACTIONS(1723), + [anon_sym_SLASH_EQ] = ACTIONS(1723), + [anon_sym_PERCENT_EQ] = ACTIONS(1723), + [anon_sym_LT_LT_EQ] = ACTIONS(1723), + [anon_sym_GT_GT_EQ] = ACTIONS(1723), + [anon_sym_AMP_EQ] = ACTIONS(1723), + [anon_sym_CARET_EQ] = ACTIONS(1723), + [anon_sym_PIPE_EQ] = ACTIONS(1723), + [anon_sym_QMARK] = ACTIONS(1721), + [anon_sym_QMARK_COLON] = ACTIONS(1723), + [anon_sym_QMARK_QMARK] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1721), + [anon_sym_PLUS_PLUS] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1721), + [anon_sym_PERCENT] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_EQ_EQ] = ACTIONS(1723), + [anon_sym_BANG_EQ] = ACTIONS(1723), + [anon_sym_GT] = ACTIONS(1721), + [anon_sym_GT_EQ] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1721), + [anon_sym_PIPE_PIPE] = ACTIONS(1721), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1723), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1723), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1723), + [anon_sym_BANG_BANG] = ACTIONS(1723), + [anon_sym_typeid] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(1721), + [anon_sym_bool] = ACTIONS(1721), + [anon_sym_char] = ACTIONS(1721), + [anon_sym_ichar] = ACTIONS(1721), + [anon_sym_short] = ACTIONS(1721), + [anon_sym_ushort] = ACTIONS(1721), + [anon_sym_uint] = ACTIONS(1721), + [anon_sym_long] = ACTIONS(1721), + [anon_sym_ulong] = ACTIONS(1721), + [anon_sym_int128] = ACTIONS(1721), + [anon_sym_uint128] = ACTIONS(1721), + [anon_sym_float] = ACTIONS(1721), + [anon_sym_double] = ACTIONS(1721), + [anon_sym_float16] = ACTIONS(1721), + [anon_sym_bfloat16] = ACTIONS(1721), + [anon_sym_float128] = ACTIONS(1721), + [anon_sym_iptr] = ACTIONS(1721), + [anon_sym_uptr] = ACTIONS(1721), + [anon_sym_isz] = ACTIONS(1721), + [anon_sym_usz] = ACTIONS(1721), + [anon_sym_anyfault] = ACTIONS(1721), + [anon_sym_any] = ACTIONS(1721), + [anon_sym_DOLLARtypeof] = ACTIONS(1723), + [anon_sym_DOLLARtypefrom] = ACTIONS(1723), + [anon_sym_DOLLARevaltype] = ACTIONS(1723), + [anon_sym_DOLLARvatype] = ACTIONS(1723), + [anon_sym_GT_RBRACK] = ACTIONS(1723), + }, + [820] = { + [sym_line_comment] = STATE(820), + [sym_doc_comment] = STATE(820), + [sym_block_comment] = STATE(820), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [anon_sym_GT_RBRACK] = ACTIONS(1725), + [sym_real_literal] = ACTIONS(1263), }, [821] = { [sym_line_comment] = STATE(821), [sym_doc_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_ident] = ACTIONS(1723), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_at_ident] = ACTIONS(1725), - [sym_type_ident] = ACTIONS(1725), - [sym_ct_type_ident] = ACTIONS(1725), - [sym_at_type_ident] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1725), - [anon_sym_LPAREN_LT] = ACTIONS(1725), - [anon_sym_GT_RPAREN] = ACTIONS(1725), - [anon_sym_EQ] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1725), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), [anon_sym_RBRACK] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_COLON] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1723), - [anon_sym_int] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_PLUS_EQ] = ACTIONS(1725), - [anon_sym_DASH_EQ] = ACTIONS(1725), - [anon_sym_STAR_EQ] = ACTIONS(1725), - [anon_sym_SLASH_EQ] = ACTIONS(1725), - [anon_sym_PERCENT_EQ] = ACTIONS(1725), - [anon_sym_LT_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_GT_EQ] = ACTIONS(1725), - [anon_sym_AMP_EQ] = ACTIONS(1725), - [anon_sym_CARET_EQ] = ACTIONS(1725), - [anon_sym_PIPE_EQ] = ACTIONS(1725), - [anon_sym_QMARK] = ACTIONS(1723), - [anon_sym_QMARK_COLON] = ACTIONS(1725), - [anon_sym_QMARK_QMARK] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1723), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1725), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1725), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_BANG_BANG] = ACTIONS(1725), - [anon_sym_typeid] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1723), - [anon_sym_bool] = ACTIONS(1723), - [anon_sym_char] = ACTIONS(1723), - [anon_sym_ichar] = ACTIONS(1723), - [anon_sym_short] = ACTIONS(1723), - [anon_sym_ushort] = ACTIONS(1723), - [anon_sym_uint] = ACTIONS(1723), - [anon_sym_long] = ACTIONS(1723), - [anon_sym_ulong] = ACTIONS(1723), - [anon_sym_int128] = ACTIONS(1723), - [anon_sym_uint128] = ACTIONS(1723), - [anon_sym_float] = ACTIONS(1723), - [anon_sym_double] = ACTIONS(1723), - [anon_sym_float16] = ACTIONS(1723), - [anon_sym_bfloat16] = ACTIONS(1723), - [anon_sym_float128] = ACTIONS(1723), - [anon_sym_iptr] = ACTIONS(1723), - [anon_sym_uptr] = ACTIONS(1723), - [anon_sym_isz] = ACTIONS(1723), - [anon_sym_usz] = ACTIONS(1723), - [anon_sym_anyfault] = ACTIONS(1723), - [anon_sym_any] = ACTIONS(1723), - [anon_sym_DOLLARtypeof] = ACTIONS(1725), - [anon_sym_DOLLARtypefrom] = ACTIONS(1725), - [anon_sym_DOLLARevaltype] = ACTIONS(1725), - [anon_sym_DOLLARvatype] = ACTIONS(1725), - [anon_sym_GT_RBRACK] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), }, [822] = { [sym_line_comment] = STATE(822), [sym_doc_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_ident] = ACTIONS(1727), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_at_ident] = ACTIONS(1729), - [sym_type_ident] = ACTIONS(1729), - [sym_ct_type_ident] = ACTIONS(1729), - [sym_at_type_ident] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1727), - [anon_sym_COMMA] = ACTIONS(1729), - [anon_sym_LPAREN_LT] = ACTIONS(1729), - [anon_sym_GT_RPAREN] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_RBRACK] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1727), - [anon_sym_int] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_LT_LT] = ACTIONS(1727), - [anon_sym_GT_GT] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_PLUS_EQ] = ACTIONS(1729), - [anon_sym_DASH_EQ] = ACTIONS(1729), - [anon_sym_STAR_EQ] = ACTIONS(1729), - [anon_sym_SLASH_EQ] = ACTIONS(1729), - [anon_sym_PERCENT_EQ] = ACTIONS(1729), - [anon_sym_LT_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_GT_EQ] = ACTIONS(1729), - [anon_sym_AMP_EQ] = ACTIONS(1729), - [anon_sym_CARET_EQ] = ACTIONS(1729), - [anon_sym_PIPE_EQ] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1727), - [anon_sym_QMARK_COLON] = ACTIONS(1729), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1727), - [anon_sym_PERCENT] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_PIPE_PIPE] = ACTIONS(1727), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_AMP_AMP_AMP] = ACTIONS(1729), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_BANG_BANG] = ACTIONS(1729), - [anon_sym_typeid] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_bool] = ACTIONS(1727), - [anon_sym_char] = ACTIONS(1727), - [anon_sym_ichar] = ACTIONS(1727), - [anon_sym_short] = ACTIONS(1727), - [anon_sym_ushort] = ACTIONS(1727), - [anon_sym_uint] = ACTIONS(1727), - [anon_sym_long] = ACTIONS(1727), - [anon_sym_ulong] = ACTIONS(1727), - [anon_sym_int128] = ACTIONS(1727), - [anon_sym_uint128] = ACTIONS(1727), - [anon_sym_float] = ACTIONS(1727), - [anon_sym_double] = ACTIONS(1727), - [anon_sym_float16] = ACTIONS(1727), - [anon_sym_bfloat16] = ACTIONS(1727), - [anon_sym_float128] = ACTIONS(1727), - [anon_sym_iptr] = ACTIONS(1727), - [anon_sym_uptr] = ACTIONS(1727), - [anon_sym_isz] = ACTIONS(1727), - [anon_sym_usz] = ACTIONS(1727), - [anon_sym_anyfault] = ACTIONS(1727), - [anon_sym_any] = ACTIONS(1727), - [anon_sym_DOLLARtypeof] = ACTIONS(1729), - [anon_sym_DOLLARtypefrom] = ACTIONS(1729), - [anon_sym_DOLLARevaltype] = ACTIONS(1729), - [anon_sym_DOLLARvatype] = ACTIONS(1729), - [anon_sym_GT_RBRACK] = ACTIONS(1729), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), }, [823] = { [sym_line_comment] = STATE(823), [sym_doc_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_ident] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_bytes_literal] = ACTIONS(1269), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1267), - [sym_at_ident] = ACTIONS(1269), - [sym_hash_ident] = ACTIONS(1269), - [sym_type_ident] = ACTIONS(1269), - [sym_ct_type_ident] = ACTIONS(1269), - [sym_const_ident] = ACTIONS(1267), - [sym_builtin] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_RBRACK] = ACTIONS(1731), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_int] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_DOLLARalignof] = ACTIONS(1267), - [anon_sym_DOLLARextnameof] = ACTIONS(1267), - [anon_sym_DOLLARnameof] = ACTIONS(1267), - [anon_sym_DOLLARoffsetof] = ACTIONS(1267), - [anon_sym_DOLLARqnameof] = ACTIONS(1267), - [anon_sym_DOLLARvaconst] = ACTIONS(1267), - [anon_sym_DOLLARvaarg] = ACTIONS(1267), - [anon_sym_DOLLARvaref] = ACTIONS(1267), - [anon_sym_DOLLARvaexpr] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_null] = ACTIONS(1267), - [anon_sym_DOLLARvacount] = ACTIONS(1267), - [anon_sym_DOLLAReval] = ACTIONS(1267), - [anon_sym_DOLLARis_const] = ACTIONS(1267), - [anon_sym_DOLLARsizeof] = ACTIONS(1267), - [anon_sym_DOLLARstringify] = ACTIONS(1267), - [anon_sym_DOLLARappend] = ACTIONS(1267), - [anon_sym_DOLLARconcat] = ACTIONS(1267), - [anon_sym_DOLLARdefined] = ACTIONS(1267), - [anon_sym_DOLLARembed] = ACTIONS(1267), - [anon_sym_DOLLARand] = ACTIONS(1267), - [anon_sym_DOLLARor] = ACTIONS(1267), - [anon_sym_DOLLARfeature] = ACTIONS(1267), - [anon_sym_DOLLARassignable] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_typeid] = ACTIONS(1267), - [anon_sym_LBRACE_PIPE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_ichar] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_ushort] = ACTIONS(1267), - [anon_sym_uint] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_ulong] = ACTIONS(1267), - [anon_sym_int128] = ACTIONS(1267), - [anon_sym_uint128] = ACTIONS(1267), - [anon_sym_float] = ACTIONS(1267), - [anon_sym_double] = ACTIONS(1267), - [anon_sym_float16] = ACTIONS(1267), - [anon_sym_bfloat16] = ACTIONS(1267), - [anon_sym_float128] = ACTIONS(1267), - [anon_sym_iptr] = ACTIONS(1267), - [anon_sym_uptr] = ACTIONS(1267), - [anon_sym_isz] = ACTIONS(1267), - [anon_sym_usz] = ACTIONS(1267), - [anon_sym_anyfault] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_DOLLARtypeof] = ACTIONS(1267), - [anon_sym_DOLLARtypefrom] = ACTIONS(1267), - [anon_sym_DOLLARevaltype] = ACTIONS(1267), - [anon_sym_DOLLARvatype] = ACTIONS(1267), - [sym_real_literal] = ACTIONS(1269), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [anon_sym_GT_RBRACK] = ACTIONS(1727), + [sym_real_literal] = ACTIONS(1263), }, [824] = { [sym_line_comment] = STATE(824), [sym_doc_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_ident] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_bytes_literal] = ACTIONS(1269), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1267), - [sym_at_ident] = ACTIONS(1269), - [sym_hash_ident] = ACTIONS(1269), - [sym_type_ident] = ACTIONS(1269), - [sym_ct_type_ident] = ACTIONS(1269), - [sym_const_ident] = ACTIONS(1267), - [sym_builtin] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_int] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_DOLLARalignof] = ACTIONS(1267), - [anon_sym_DOLLARextnameof] = ACTIONS(1267), - [anon_sym_DOLLARnameof] = ACTIONS(1267), - [anon_sym_DOLLARoffsetof] = ACTIONS(1267), - [anon_sym_DOLLARqnameof] = ACTIONS(1267), - [anon_sym_DOLLARvaconst] = ACTIONS(1267), - [anon_sym_DOLLARvaarg] = ACTIONS(1267), - [anon_sym_DOLLARvaref] = ACTIONS(1267), - [anon_sym_DOLLARvaexpr] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_null] = ACTIONS(1267), - [anon_sym_DOLLARvacount] = ACTIONS(1267), - [anon_sym_DOLLAReval] = ACTIONS(1267), - [anon_sym_DOLLARis_const] = ACTIONS(1267), - [anon_sym_DOLLARsizeof] = ACTIONS(1267), - [anon_sym_DOLLARstringify] = ACTIONS(1267), - [anon_sym_DOLLARappend] = ACTIONS(1267), - [anon_sym_DOLLARconcat] = ACTIONS(1267), - [anon_sym_DOLLARdefined] = ACTIONS(1267), - [anon_sym_DOLLARembed] = ACTIONS(1267), - [anon_sym_DOLLARand] = ACTIONS(1267), - [anon_sym_DOLLARor] = ACTIONS(1267), - [anon_sym_DOLLARfeature] = ACTIONS(1267), - [anon_sym_DOLLARassignable] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_typeid] = ACTIONS(1267), - [anon_sym_LBRACE_PIPE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_ichar] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_ushort] = ACTIONS(1267), - [anon_sym_uint] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_ulong] = ACTIONS(1267), - [anon_sym_int128] = ACTIONS(1267), - [anon_sym_uint128] = ACTIONS(1267), - [anon_sym_float] = ACTIONS(1267), - [anon_sym_double] = ACTIONS(1267), - [anon_sym_float16] = ACTIONS(1267), - [anon_sym_bfloat16] = ACTIONS(1267), - [anon_sym_float128] = ACTIONS(1267), - [anon_sym_iptr] = ACTIONS(1267), - [anon_sym_uptr] = ACTIONS(1267), - [anon_sym_isz] = ACTIONS(1267), - [anon_sym_usz] = ACTIONS(1267), - [anon_sym_anyfault] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_DOLLARtypeof] = ACTIONS(1267), - [anon_sym_DOLLARtypefrom] = ACTIONS(1267), - [anon_sym_DOLLARevaltype] = ACTIONS(1267), - [anon_sym_DOLLARvatype] = ACTIONS(1267), - [anon_sym_GT_RBRACK] = ACTIONS(1731), - [sym_real_literal] = ACTIONS(1269), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [anon_sym_GT_RBRACK] = ACTIONS(1729), + [sym_real_literal] = ACTIONS(1263), }, [825] = { [sym_line_comment] = STATE(825), [sym_doc_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_ident] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_bytes_literal] = ACTIONS(1269), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1267), - [sym_at_ident] = ACTIONS(1269), - [sym_hash_ident] = ACTIONS(1269), - [sym_type_ident] = ACTIONS(1269), - [sym_ct_type_ident] = ACTIONS(1269), - [sym_const_ident] = ACTIONS(1267), - [sym_builtin] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_int] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_DOLLARalignof] = ACTIONS(1267), - [anon_sym_DOLLARextnameof] = ACTIONS(1267), - [anon_sym_DOLLARnameof] = ACTIONS(1267), - [anon_sym_DOLLARoffsetof] = ACTIONS(1267), - [anon_sym_DOLLARqnameof] = ACTIONS(1267), - [anon_sym_DOLLARvaconst] = ACTIONS(1267), - [anon_sym_DOLLARvaarg] = ACTIONS(1267), - [anon_sym_DOLLARvaref] = ACTIONS(1267), - [anon_sym_DOLLARvaexpr] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_null] = ACTIONS(1267), - [anon_sym_DOLLARvacount] = ACTIONS(1267), - [anon_sym_DOLLAReval] = ACTIONS(1267), - [anon_sym_DOLLARis_const] = ACTIONS(1267), - [anon_sym_DOLLARsizeof] = ACTIONS(1267), - [anon_sym_DOLLARstringify] = ACTIONS(1267), - [anon_sym_DOLLARappend] = ACTIONS(1267), - [anon_sym_DOLLARconcat] = ACTIONS(1267), - [anon_sym_DOLLARdefined] = ACTIONS(1267), - [anon_sym_DOLLARembed] = ACTIONS(1267), - [anon_sym_DOLLARand] = ACTIONS(1267), - [anon_sym_DOLLARor] = ACTIONS(1267), - [anon_sym_DOLLARfeature] = ACTIONS(1267), - [anon_sym_DOLLARassignable] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_typeid] = ACTIONS(1267), - [anon_sym_LBRACE_PIPE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_ichar] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_ushort] = ACTIONS(1267), - [anon_sym_uint] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_ulong] = ACTIONS(1267), - [anon_sym_int128] = ACTIONS(1267), - [anon_sym_uint128] = ACTIONS(1267), - [anon_sym_float] = ACTIONS(1267), - [anon_sym_double] = ACTIONS(1267), - [anon_sym_float16] = ACTIONS(1267), - [anon_sym_bfloat16] = ACTIONS(1267), - [anon_sym_float128] = ACTIONS(1267), - [anon_sym_iptr] = ACTIONS(1267), - [anon_sym_uptr] = ACTIONS(1267), - [anon_sym_isz] = ACTIONS(1267), - [anon_sym_usz] = ACTIONS(1267), - [anon_sym_anyfault] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_DOLLARtypeof] = ACTIONS(1267), - [anon_sym_DOLLARtypefrom] = ACTIONS(1267), - [anon_sym_DOLLARevaltype] = ACTIONS(1267), - [anon_sym_DOLLARvatype] = ACTIONS(1267), - [anon_sym_GT_RBRACK] = ACTIONS(1733), - [sym_real_literal] = ACTIONS(1269), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1729), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), }, [826] = { [sym_line_comment] = STATE(826), [sym_doc_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_ident] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_bytes_literal] = ACTIONS(1269), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1267), - [sym_at_ident] = ACTIONS(1269), - [sym_hash_ident] = ACTIONS(1269), - [sym_type_ident] = ACTIONS(1269), - [sym_ct_type_ident] = ACTIONS(1269), - [sym_const_ident] = ACTIONS(1267), - [sym_builtin] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_int] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_DOLLARalignof] = ACTIONS(1267), - [anon_sym_DOLLARextnameof] = ACTIONS(1267), - [anon_sym_DOLLARnameof] = ACTIONS(1267), - [anon_sym_DOLLARoffsetof] = ACTIONS(1267), - [anon_sym_DOLLARqnameof] = ACTIONS(1267), - [anon_sym_DOLLARvaconst] = ACTIONS(1267), - [anon_sym_DOLLARvaarg] = ACTIONS(1267), - [anon_sym_DOLLARvaref] = ACTIONS(1267), - [anon_sym_DOLLARvaexpr] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_null] = ACTIONS(1267), - [anon_sym_DOLLARvacount] = ACTIONS(1267), - [anon_sym_DOLLAReval] = ACTIONS(1267), - [anon_sym_DOLLARis_const] = ACTIONS(1267), - [anon_sym_DOLLARsizeof] = ACTIONS(1267), - [anon_sym_DOLLARstringify] = ACTIONS(1267), - [anon_sym_DOLLARappend] = ACTIONS(1267), - [anon_sym_DOLLARconcat] = ACTIONS(1267), - [anon_sym_DOLLARdefined] = ACTIONS(1267), - [anon_sym_DOLLARembed] = ACTIONS(1267), - [anon_sym_DOLLARand] = ACTIONS(1267), - [anon_sym_DOLLARor] = ACTIONS(1267), - [anon_sym_DOLLARfeature] = ACTIONS(1267), - [anon_sym_DOLLARassignable] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_typeid] = ACTIONS(1267), - [anon_sym_LBRACE_PIPE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_ichar] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_ushort] = ACTIONS(1267), - [anon_sym_uint] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_ulong] = ACTIONS(1267), - [anon_sym_int128] = ACTIONS(1267), - [anon_sym_uint128] = ACTIONS(1267), - [anon_sym_float] = ACTIONS(1267), - [anon_sym_double] = ACTIONS(1267), - [anon_sym_float16] = ACTIONS(1267), - [anon_sym_bfloat16] = ACTIONS(1267), - [anon_sym_float128] = ACTIONS(1267), - [anon_sym_iptr] = ACTIONS(1267), - [anon_sym_uptr] = ACTIONS(1267), - [anon_sym_isz] = ACTIONS(1267), - [anon_sym_usz] = ACTIONS(1267), - [anon_sym_anyfault] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_DOLLARtypeof] = ACTIONS(1267), - [anon_sym_DOLLARtypefrom] = ACTIONS(1267), - [anon_sym_DOLLARevaltype] = ACTIONS(1267), - [anon_sym_DOLLARvatype] = ACTIONS(1267), - [sym_real_literal] = ACTIONS(1269), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), }, [827] = { [sym_line_comment] = STATE(827), [sym_doc_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_ident] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_bytes_literal] = ACTIONS(1269), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1267), - [sym_at_ident] = ACTIONS(1269), - [sym_hash_ident] = ACTIONS(1269), - [sym_type_ident] = ACTIONS(1269), - [sym_ct_type_ident] = ACTIONS(1269), - [sym_const_ident] = ACTIONS(1267), - [sym_builtin] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_RBRACK] = ACTIONS(1737), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_int] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_DOLLARalignof] = ACTIONS(1267), - [anon_sym_DOLLARextnameof] = ACTIONS(1267), - [anon_sym_DOLLARnameof] = ACTIONS(1267), - [anon_sym_DOLLARoffsetof] = ACTIONS(1267), - [anon_sym_DOLLARqnameof] = ACTIONS(1267), - [anon_sym_DOLLARvaconst] = ACTIONS(1267), - [anon_sym_DOLLARvaarg] = ACTIONS(1267), - [anon_sym_DOLLARvaref] = ACTIONS(1267), - [anon_sym_DOLLARvaexpr] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_null] = ACTIONS(1267), - [anon_sym_DOLLARvacount] = ACTIONS(1267), - [anon_sym_DOLLAReval] = ACTIONS(1267), - [anon_sym_DOLLARis_const] = ACTIONS(1267), - [anon_sym_DOLLARsizeof] = ACTIONS(1267), - [anon_sym_DOLLARstringify] = ACTIONS(1267), - [anon_sym_DOLLARappend] = ACTIONS(1267), - [anon_sym_DOLLARconcat] = ACTIONS(1267), - [anon_sym_DOLLARdefined] = ACTIONS(1267), - [anon_sym_DOLLARembed] = ACTIONS(1267), - [anon_sym_DOLLARand] = ACTIONS(1267), - [anon_sym_DOLLARor] = ACTIONS(1267), - [anon_sym_DOLLARfeature] = ACTIONS(1267), - [anon_sym_DOLLARassignable] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_typeid] = ACTIONS(1267), - [anon_sym_LBRACE_PIPE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_ichar] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_ushort] = ACTIONS(1267), - [anon_sym_uint] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_ulong] = ACTIONS(1267), - [anon_sym_int128] = ACTIONS(1267), - [anon_sym_uint128] = ACTIONS(1267), - [anon_sym_float] = ACTIONS(1267), - [anon_sym_double] = ACTIONS(1267), - [anon_sym_float16] = ACTIONS(1267), - [anon_sym_bfloat16] = ACTIONS(1267), - [anon_sym_float128] = ACTIONS(1267), - [anon_sym_iptr] = ACTIONS(1267), - [anon_sym_uptr] = ACTIONS(1267), - [anon_sym_isz] = ACTIONS(1267), - [anon_sym_usz] = ACTIONS(1267), - [anon_sym_anyfault] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_DOLLARtypeof] = ACTIONS(1267), - [anon_sym_DOLLARtypefrom] = ACTIONS(1267), - [anon_sym_DOLLARevaltype] = ACTIONS(1267), - [anon_sym_DOLLARvatype] = ACTIONS(1267), - [sym_real_literal] = ACTIONS(1269), + [sym_ident] = ACTIONS(1733), + [sym_integer_literal] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_bytes_literal] = ACTIONS(1735), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1733), + [sym_at_ident] = ACTIONS(1735), + [sym_hash_ident] = ACTIONS(1735), + [sym_type_ident] = ACTIONS(1735), + [sym_ct_type_ident] = ACTIONS(1735), + [sym_const_ident] = ACTIONS(1733), + [sym_builtin] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_fn] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_int] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_STAR] = ACTIONS(1735), + [anon_sym_DOLLARalignof] = ACTIONS(1733), + [anon_sym_DOLLARextnameof] = ACTIONS(1733), + [anon_sym_DOLLARnameof] = ACTIONS(1733), + [anon_sym_DOLLARoffsetof] = ACTIONS(1733), + [anon_sym_DOLLARqnameof] = ACTIONS(1733), + [anon_sym_DOLLARvaconst] = ACTIONS(1733), + [anon_sym_DOLLARvaarg] = ACTIONS(1733), + [anon_sym_DOLLARvaref] = ACTIONS(1733), + [anon_sym_DOLLARvaexpr] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_DOLLARvacount] = ACTIONS(1733), + [anon_sym_DOLLAReval] = ACTIONS(1733), + [anon_sym_DOLLARis_const] = ACTIONS(1733), + [anon_sym_DOLLARsizeof] = ACTIONS(1733), + [anon_sym_DOLLARstringify] = ACTIONS(1733), + [anon_sym_DOLLARappend] = ACTIONS(1733), + [anon_sym_DOLLARconcat] = ACTIONS(1733), + [anon_sym_DOLLARdefined] = ACTIONS(1733), + [anon_sym_DOLLARembed] = ACTIONS(1733), + [anon_sym_DOLLARand] = ACTIONS(1733), + [anon_sym_DOLLARor] = ACTIONS(1733), + [anon_sym_DOLLARfeature] = ACTIONS(1733), + [anon_sym_DOLLARassignable] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1735), + [anon_sym_PLUS_PLUS] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [anon_sym_typeid] = ACTIONS(1733), + [anon_sym_LBRACE_PIPE] = ACTIONS(1735), + [anon_sym_void] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_ichar] = ACTIONS(1733), + [anon_sym_short] = ACTIONS(1733), + [anon_sym_ushort] = ACTIONS(1733), + [anon_sym_uint] = ACTIONS(1733), + [anon_sym_long] = ACTIONS(1733), + [anon_sym_ulong] = ACTIONS(1733), + [anon_sym_int128] = ACTIONS(1733), + [anon_sym_uint128] = ACTIONS(1733), + [anon_sym_float] = ACTIONS(1733), + [anon_sym_double] = ACTIONS(1733), + [anon_sym_float16] = ACTIONS(1733), + [anon_sym_bfloat16] = ACTIONS(1733), + [anon_sym_float128] = ACTIONS(1733), + [anon_sym_iptr] = ACTIONS(1733), + [anon_sym_uptr] = ACTIONS(1733), + [anon_sym_isz] = ACTIONS(1733), + [anon_sym_usz] = ACTIONS(1733), + [anon_sym_anyfault] = ACTIONS(1733), + [anon_sym_any] = ACTIONS(1733), + [anon_sym_DOLLARtypeof] = ACTIONS(1733), + [anon_sym_DOLLARtypefrom] = ACTIONS(1733), + [anon_sym_DOLLARevaltype] = ACTIONS(1733), + [anon_sym_DOLLARvatype] = ACTIONS(1733), + [sym_real_literal] = ACTIONS(1735), }, [828] = { [sym_line_comment] = STATE(828), [sym_doc_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_ident] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_bytes_literal] = ACTIONS(1269), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1267), - [sym_at_ident] = ACTIONS(1269), - [sym_hash_ident] = ACTIONS(1269), - [sym_type_ident] = ACTIONS(1269), - [sym_ct_type_ident] = ACTIONS(1269), - [sym_const_ident] = ACTIONS(1267), - [sym_builtin] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_int] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_DOLLARalignof] = ACTIONS(1267), - [anon_sym_DOLLARextnameof] = ACTIONS(1267), - [anon_sym_DOLLARnameof] = ACTIONS(1267), - [anon_sym_DOLLARoffsetof] = ACTIONS(1267), - [anon_sym_DOLLARqnameof] = ACTIONS(1267), - [anon_sym_DOLLARvaconst] = ACTIONS(1267), - [anon_sym_DOLLARvaarg] = ACTIONS(1267), - [anon_sym_DOLLARvaref] = ACTIONS(1267), - [anon_sym_DOLLARvaexpr] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_null] = ACTIONS(1267), - [anon_sym_DOLLARvacount] = ACTIONS(1267), - [anon_sym_DOLLAReval] = ACTIONS(1267), - [anon_sym_DOLLARis_const] = ACTIONS(1267), - [anon_sym_DOLLARsizeof] = ACTIONS(1267), - [anon_sym_DOLLARstringify] = ACTIONS(1267), - [anon_sym_DOLLARappend] = ACTIONS(1267), - [anon_sym_DOLLARconcat] = ACTIONS(1267), - [anon_sym_DOLLARdefined] = ACTIONS(1267), - [anon_sym_DOLLARembed] = ACTIONS(1267), - [anon_sym_DOLLARand] = ACTIONS(1267), - [anon_sym_DOLLARor] = ACTIONS(1267), - [anon_sym_DOLLARfeature] = ACTIONS(1267), - [anon_sym_DOLLARassignable] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_typeid] = ACTIONS(1267), - [anon_sym_LBRACE_PIPE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_ichar] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_ushort] = ACTIONS(1267), - [anon_sym_uint] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_ulong] = ACTIONS(1267), - [anon_sym_int128] = ACTIONS(1267), - [anon_sym_uint128] = ACTIONS(1267), - [anon_sym_float] = ACTIONS(1267), - [anon_sym_double] = ACTIONS(1267), - [anon_sym_float16] = ACTIONS(1267), - [anon_sym_bfloat16] = ACTIONS(1267), - [anon_sym_float128] = ACTIONS(1267), - [anon_sym_iptr] = ACTIONS(1267), - [anon_sym_uptr] = ACTIONS(1267), - [anon_sym_isz] = ACTIONS(1267), - [anon_sym_usz] = ACTIONS(1267), - [anon_sym_anyfault] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_DOLLARtypeof] = ACTIONS(1267), - [anon_sym_DOLLARtypefrom] = ACTIONS(1267), - [anon_sym_DOLLARevaltype] = ACTIONS(1267), - [anon_sym_DOLLARvatype] = ACTIONS(1267), - [anon_sym_GT_RBRACK] = ACTIONS(1737), - [sym_real_literal] = ACTIONS(1269), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), }, [829] = { [sym_line_comment] = STATE(829), [sym_doc_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_ident] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_bytes_literal] = ACTIONS(1269), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1267), - [sym_at_ident] = ACTIONS(1269), - [sym_hash_ident] = ACTIONS(1269), - [sym_type_ident] = ACTIONS(1269), - [sym_ct_type_ident] = ACTIONS(1269), - [sym_const_ident] = ACTIONS(1267), - [sym_builtin] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_RBRACK] = ACTIONS(1733), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_int] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_DOLLARalignof] = ACTIONS(1267), - [anon_sym_DOLLARextnameof] = ACTIONS(1267), - [anon_sym_DOLLARnameof] = ACTIONS(1267), - [anon_sym_DOLLARoffsetof] = ACTIONS(1267), - [anon_sym_DOLLARqnameof] = ACTIONS(1267), - [anon_sym_DOLLARvaconst] = ACTIONS(1267), - [anon_sym_DOLLARvaarg] = ACTIONS(1267), - [anon_sym_DOLLARvaref] = ACTIONS(1267), - [anon_sym_DOLLARvaexpr] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_null] = ACTIONS(1267), - [anon_sym_DOLLARvacount] = ACTIONS(1267), - [anon_sym_DOLLAReval] = ACTIONS(1267), - [anon_sym_DOLLARis_const] = ACTIONS(1267), - [anon_sym_DOLLARsizeof] = ACTIONS(1267), - [anon_sym_DOLLARstringify] = ACTIONS(1267), - [anon_sym_DOLLARappend] = ACTIONS(1267), - [anon_sym_DOLLARconcat] = ACTIONS(1267), - [anon_sym_DOLLARdefined] = ACTIONS(1267), - [anon_sym_DOLLARembed] = ACTIONS(1267), - [anon_sym_DOLLARand] = ACTIONS(1267), - [anon_sym_DOLLARor] = ACTIONS(1267), - [anon_sym_DOLLARfeature] = ACTIONS(1267), - [anon_sym_DOLLARassignable] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_typeid] = ACTIONS(1267), - [anon_sym_LBRACE_PIPE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_ichar] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_ushort] = ACTIONS(1267), - [anon_sym_uint] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_ulong] = ACTIONS(1267), - [anon_sym_int128] = ACTIONS(1267), - [anon_sym_uint128] = ACTIONS(1267), - [anon_sym_float] = ACTIONS(1267), - [anon_sym_double] = ACTIONS(1267), - [anon_sym_float16] = ACTIONS(1267), - [anon_sym_bfloat16] = ACTIONS(1267), - [anon_sym_float128] = ACTIONS(1267), - [anon_sym_iptr] = ACTIONS(1267), - [anon_sym_uptr] = ACTIONS(1267), - [anon_sym_isz] = ACTIONS(1267), - [anon_sym_usz] = ACTIONS(1267), - [anon_sym_anyfault] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_DOLLARtypeof] = ACTIONS(1267), - [anon_sym_DOLLARtypefrom] = ACTIONS(1267), - [anon_sym_DOLLARevaltype] = ACTIONS(1267), - [anon_sym_DOLLARvatype] = ACTIONS(1267), - [sym_real_literal] = ACTIONS(1269), - }, - [830] = { - [sym_line_comment] = STATE(830), - [sym_doc_comment] = STATE(830), - [sym_block_comment] = STATE(830), - [sym_ident] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1269), - [anon_sym_DQUOTE] = ACTIONS(1269), - [anon_sym_BQUOTE] = ACTIONS(1269), - [sym_bytes_literal] = ACTIONS(1269), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1267), - [sym_at_ident] = ACTIONS(1269), - [sym_hash_ident] = ACTIONS(1269), - [sym_type_ident] = ACTIONS(1269), - [sym_ct_type_ident] = ACTIONS(1269), - [sym_const_ident] = ACTIONS(1267), - [sym_builtin] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_int] = ACTIONS(1267), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_DOLLARalignof] = ACTIONS(1267), - [anon_sym_DOLLARextnameof] = ACTIONS(1267), - [anon_sym_DOLLARnameof] = ACTIONS(1267), - [anon_sym_DOLLARoffsetof] = ACTIONS(1267), - [anon_sym_DOLLARqnameof] = ACTIONS(1267), - [anon_sym_DOLLARvaconst] = ACTIONS(1267), - [anon_sym_DOLLARvaarg] = ACTIONS(1267), - [anon_sym_DOLLARvaref] = ACTIONS(1267), - [anon_sym_DOLLARvaexpr] = ACTIONS(1267), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_null] = ACTIONS(1267), - [anon_sym_DOLLARvacount] = ACTIONS(1267), - [anon_sym_DOLLAReval] = ACTIONS(1267), - [anon_sym_DOLLARis_const] = ACTIONS(1267), - [anon_sym_DOLLARsizeof] = ACTIONS(1267), - [anon_sym_DOLLARstringify] = ACTIONS(1267), - [anon_sym_DOLLARappend] = ACTIONS(1267), - [anon_sym_DOLLARconcat] = ACTIONS(1267), - [anon_sym_DOLLARdefined] = ACTIONS(1267), - [anon_sym_DOLLARembed] = ACTIONS(1267), - [anon_sym_DOLLARand] = ACTIONS(1267), - [anon_sym_DOLLARor] = ACTIONS(1267), - [anon_sym_DOLLARfeature] = ACTIONS(1267), - [anon_sym_DOLLARassignable] = ACTIONS(1267), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1269), - [anon_sym_typeid] = ACTIONS(1267), - [anon_sym_LBRACE_PIPE] = ACTIONS(1269), - [anon_sym_void] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_ichar] = ACTIONS(1267), - [anon_sym_short] = ACTIONS(1267), - [anon_sym_ushort] = ACTIONS(1267), - [anon_sym_uint] = ACTIONS(1267), - [anon_sym_long] = ACTIONS(1267), - [anon_sym_ulong] = ACTIONS(1267), - [anon_sym_int128] = ACTIONS(1267), - [anon_sym_uint128] = ACTIONS(1267), - [anon_sym_float] = ACTIONS(1267), - [anon_sym_double] = ACTIONS(1267), - [anon_sym_float16] = ACTIONS(1267), - [anon_sym_bfloat16] = ACTIONS(1267), - [anon_sym_float128] = ACTIONS(1267), - [anon_sym_iptr] = ACTIONS(1267), - [anon_sym_uptr] = ACTIONS(1267), - [anon_sym_isz] = ACTIONS(1267), - [anon_sym_usz] = ACTIONS(1267), - [anon_sym_anyfault] = ACTIONS(1267), - [anon_sym_any] = ACTIONS(1267), - [anon_sym_DOLLARtypeof] = ACTIONS(1267), - [anon_sym_DOLLARtypefrom] = ACTIONS(1267), - [anon_sym_DOLLARevaltype] = ACTIONS(1267), - [anon_sym_DOLLARvatype] = ACTIONS(1267), - [sym_real_literal] = ACTIONS(1269), - }, - [831] = { - [sym_line_comment] = STATE(831), - [sym_doc_comment] = STATE(831), - [sym_block_comment] = STATE(831), - [sym_ident] = ACTIONS(1739), - [sym_integer_literal] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_BQUOTE] = ACTIONS(1741), - [sym_bytes_literal] = ACTIONS(1741), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1739), - [sym_at_ident] = ACTIONS(1741), - [sym_hash_ident] = ACTIONS(1741), - [sym_type_ident] = ACTIONS(1741), - [sym_ct_type_ident] = ACTIONS(1741), - [sym_const_ident] = ACTIONS(1739), - [sym_builtin] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_fn] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_int] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_DOLLARalignof] = ACTIONS(1739), - [anon_sym_DOLLARextnameof] = ACTIONS(1739), - [anon_sym_DOLLARnameof] = ACTIONS(1739), - [anon_sym_DOLLARoffsetof] = ACTIONS(1739), - [anon_sym_DOLLARqnameof] = ACTIONS(1739), - [anon_sym_DOLLARvaconst] = ACTIONS(1739), - [anon_sym_DOLLARvaarg] = ACTIONS(1739), - [anon_sym_DOLLARvaref] = ACTIONS(1739), - [anon_sym_DOLLARvaexpr] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1739), - [anon_sym_false] = ACTIONS(1739), - [anon_sym_null] = ACTIONS(1739), - [anon_sym_DOLLARvacount] = ACTIONS(1739), - [anon_sym_DOLLAReval] = ACTIONS(1739), - [anon_sym_DOLLARis_const] = ACTIONS(1739), - [anon_sym_DOLLARsizeof] = ACTIONS(1739), - [anon_sym_DOLLARstringify] = ACTIONS(1739), - [anon_sym_DOLLARappend] = ACTIONS(1739), - [anon_sym_DOLLARconcat] = ACTIONS(1739), - [anon_sym_DOLLARdefined] = ACTIONS(1739), - [anon_sym_DOLLARembed] = ACTIONS(1739), - [anon_sym_DOLLARand] = ACTIONS(1739), - [anon_sym_DOLLARor] = ACTIONS(1739), - [anon_sym_DOLLARfeature] = ACTIONS(1739), - [anon_sym_DOLLARassignable] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_typeid] = ACTIONS(1739), - [anon_sym_LBRACE_PIPE] = ACTIONS(1741), - [anon_sym_void] = ACTIONS(1739), - [anon_sym_bool] = ACTIONS(1739), - [anon_sym_char] = ACTIONS(1739), - [anon_sym_ichar] = ACTIONS(1739), - [anon_sym_short] = ACTIONS(1739), - [anon_sym_ushort] = ACTIONS(1739), - [anon_sym_uint] = ACTIONS(1739), - [anon_sym_long] = ACTIONS(1739), - [anon_sym_ulong] = ACTIONS(1739), - [anon_sym_int128] = ACTIONS(1739), - [anon_sym_uint128] = ACTIONS(1739), - [anon_sym_float] = ACTIONS(1739), - [anon_sym_double] = ACTIONS(1739), - [anon_sym_float16] = ACTIONS(1739), - [anon_sym_bfloat16] = ACTIONS(1739), - [anon_sym_float128] = ACTIONS(1739), - [anon_sym_iptr] = ACTIONS(1739), - [anon_sym_uptr] = ACTIONS(1739), - [anon_sym_isz] = ACTIONS(1739), - [anon_sym_usz] = ACTIONS(1739), - [anon_sym_anyfault] = ACTIONS(1739), - [anon_sym_any] = ACTIONS(1739), - [anon_sym_DOLLARtypeof] = ACTIONS(1739), - [anon_sym_DOLLARtypefrom] = ACTIONS(1739), - [anon_sym_DOLLARevaltype] = ACTIONS(1739), - [anon_sym_DOLLARvatype] = ACTIONS(1739), - [sym_real_literal] = ACTIONS(1741), - }, - [832] = { - [sym_line_comment] = STATE(832), - [sym_doc_comment] = STATE(832), - [sym_block_comment] = STATE(832), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1500), - [sym_global_storage] = STATE(1194), - [sym_module] = STATE(915), - [sym_import_declaration] = STATE(915), - [sym_define_declaration] = STATE(915), - [sym_distinct_declaration] = STATE(915), - [sym_const_declaration] = STATE(915), - [sym_global_declaration] = STATE(915), - [sym__struct_or_union] = STATE(2248), - [sym_struct_declaration] = STATE(915), - [sym_bitstruct_declaration] = STATE(915), - [sym_fault_declaration] = STATE(915), - [sym_enum_declaration] = STATE(915), - [sym_interface_declaration] = STATE(915), - [sym_func_declaration] = STATE(915), - [sym_func_definition] = STATE(915), - [sym_macro_declaration] = STATE(915), - [sym_ct_assert_stmt] = STATE(915), - [sym_ct_include_stmt] = STATE(915), - [sym_ct_exec_stmt] = STATE(915), - [sym_ct_echo_stmt] = STATE(915), - [sym_module_type_ident] = STATE(1052), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1977), - [aux_sym_source_file_repeat1] = STATE(832), - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_ident] = ACTIONS(1745), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_LT_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_type_ident] = ACTIONS(1748), - [sym_ct_type_ident] = ACTIONS(1751), - [anon_sym_tlocal] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1760), - [anon_sym_import] = ACTIONS(1763), - [anon_sym_fn] = ACTIONS(1766), - [anon_sym_def] = ACTIONS(1769), - [anon_sym_distinct] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1778), - [anon_sym_union] = ACTIONS(1778), - [anon_sym_bitstruct] = ACTIONS(1781), - [anon_sym_fault] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1787), - [anon_sym_interface] = ACTIONS(1790), - [anon_sym_macro] = ACTIONS(1793), - [anon_sym_int] = ACTIONS(1796), - [anon_sym_DOLLARassert] = ACTIONS(1799), - [anon_sym_DOLLARerror] = ACTIONS(1802), - [anon_sym_DOLLARinclude] = ACTIONS(1805), - [anon_sym_DOLLARexec] = ACTIONS(1808), - [anon_sym_DOLLARecho] = ACTIONS(1811), - [anon_sym_typeid] = ACTIONS(1796), - [anon_sym_void] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_ichar] = ACTIONS(1796), - [anon_sym_short] = ACTIONS(1796), - [anon_sym_ushort] = ACTIONS(1796), - [anon_sym_uint] = ACTIONS(1796), - [anon_sym_long] = ACTIONS(1796), - [anon_sym_ulong] = ACTIONS(1796), - [anon_sym_int128] = ACTIONS(1796), - [anon_sym_uint128] = ACTIONS(1796), - [anon_sym_float] = ACTIONS(1796), - [anon_sym_double] = ACTIONS(1796), - [anon_sym_float16] = ACTIONS(1796), - [anon_sym_bfloat16] = ACTIONS(1796), - [anon_sym_float128] = ACTIONS(1796), - [anon_sym_iptr] = ACTIONS(1796), - [anon_sym_uptr] = ACTIONS(1796), - [anon_sym_isz] = ACTIONS(1796), - [anon_sym_usz] = ACTIONS(1796), - [anon_sym_anyfault] = ACTIONS(1796), - [anon_sym_any] = ACTIONS(1796), - [anon_sym_DOLLARtypeof] = ACTIONS(1814), - [anon_sym_DOLLARtypefrom] = ACTIONS(1814), - [anon_sym_DOLLARevaltype] = ACTIONS(1814), - [anon_sym_DOLLARvatype] = ACTIONS(1817), - }, - [833] = { - [sym_line_comment] = STATE(833), - [sym_doc_comment] = STATE(833), - [sym_block_comment] = STATE(833), - [sym_module_resolution] = STATE(1487), - [aux_sym__module_path] = STATE(1500), - [sym_global_storage] = STATE(1194), - [sym_module] = STATE(915), - [sym_import_declaration] = STATE(915), - [sym_define_declaration] = STATE(915), - [sym_distinct_declaration] = STATE(915), - [sym_const_declaration] = STATE(915), - [sym_global_declaration] = STATE(915), - [sym__struct_or_union] = STATE(2248), - [sym_struct_declaration] = STATE(915), - [sym_bitstruct_declaration] = STATE(915), - [sym_fault_declaration] = STATE(915), - [sym_enum_declaration] = STATE(915), - [sym_interface_declaration] = STATE(915), - [sym_func_declaration] = STATE(915), - [sym_func_definition] = STATE(915), - [sym_macro_declaration] = STATE(915), - [sym_ct_assert_stmt] = STATE(915), - [sym_ct_include_stmt] = STATE(915), - [sym_ct_exec_stmt] = STATE(915), - [sym_ct_echo_stmt] = STATE(915), - [sym_module_type_ident] = STATE(1052), - [sym_base_type_name] = STATE(1131), - [sym_base_type] = STATE(1112), - [sym_type] = STATE(1977), - [aux_sym_source_file_repeat1] = STATE(832), - [ts_builtin_sym_end] = ACTIONS(1820), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1541), + [sym_global_storage] = STATE(1183), + [sym_module] = STATE(923), + [sym_import_declaration] = STATE(923), + [sym_define_declaration] = STATE(923), + [sym_distinct_declaration] = STATE(923), + [sym_const_declaration] = STATE(923), + [sym_global_declaration] = STATE(923), + [sym__struct_or_union] = STATE(2086), + [sym_struct_declaration] = STATE(923), + [sym_bitstruct_declaration] = STATE(923), + [sym_fault_declaration] = STATE(923), + [sym_enum_declaration] = STATE(923), + [sym_interface_declaration] = STATE(923), + [sym_func_declaration] = STATE(923), + [sym_func_definition] = STATE(923), + [sym_macro_declaration] = STATE(923), + [sym_ct_assert_stmt] = STATE(923), + [sym_ct_include_stmt] = STATE(923), + [sym_ct_exec_stmt] = STATE(923), + [sym_ct_echo_stmt] = STATE(923), + [sym_module_type_ident] = STATE(1063), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(2094), + [aux_sym_source_file_repeat1] = STATE(830), + [ts_builtin_sym_end] = ACTIONS(1737), [sym_ident] = ACTIONS(11), [aux_sym_line_comment_token1] = ACTIONS(3), [anon_sym_LT_STAR] = ACTIONS(5), @@ -121210,6 +120693,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARevaltype] = ACTIONS(57), [anon_sym_DOLLARvatype] = ACTIONS(59), }, + [830] = { + [sym_line_comment] = STATE(830), + [sym_doc_comment] = STATE(830), + [sym_block_comment] = STATE(830), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1541), + [sym_global_storage] = STATE(1183), + [sym_module] = STATE(923), + [sym_import_declaration] = STATE(923), + [sym_define_declaration] = STATE(923), + [sym_distinct_declaration] = STATE(923), + [sym_const_declaration] = STATE(923), + [sym_global_declaration] = STATE(923), + [sym__struct_or_union] = STATE(2086), + [sym_struct_declaration] = STATE(923), + [sym_bitstruct_declaration] = STATE(923), + [sym_fault_declaration] = STATE(923), + [sym_enum_declaration] = STATE(923), + [sym_interface_declaration] = STATE(923), + [sym_func_declaration] = STATE(923), + [sym_func_definition] = STATE(923), + [sym_macro_declaration] = STATE(923), + [sym_ct_assert_stmt] = STATE(923), + [sym_ct_include_stmt] = STATE(923), + [sym_ct_exec_stmt] = STATE(923), + [sym_ct_echo_stmt] = STATE(923), + [sym_module_type_ident] = STATE(1063), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(2094), + [aux_sym_source_file_repeat1] = STATE(830), + [ts_builtin_sym_end] = ACTIONS(1739), + [sym_ident] = ACTIONS(1741), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_type_ident] = ACTIONS(1744), + [sym_ct_type_ident] = ACTIONS(1747), + [anon_sym_tlocal] = ACTIONS(1750), + [anon_sym_extern] = ACTIONS(1753), + [anon_sym_module] = ACTIONS(1756), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_fn] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_distinct] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1774), + [anon_sym_union] = ACTIONS(1774), + [anon_sym_bitstruct] = ACTIONS(1777), + [anon_sym_fault] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_interface] = ACTIONS(1786), + [anon_sym_macro] = ACTIONS(1789), + [anon_sym_int] = ACTIONS(1792), + [anon_sym_DOLLARassert] = ACTIONS(1795), + [anon_sym_DOLLARerror] = ACTIONS(1798), + [anon_sym_DOLLARinclude] = ACTIONS(1801), + [anon_sym_DOLLARexec] = ACTIONS(1804), + [anon_sym_DOLLARecho] = ACTIONS(1807), + [anon_sym_typeid] = ACTIONS(1792), + [anon_sym_void] = ACTIONS(1792), + [anon_sym_bool] = ACTIONS(1792), + [anon_sym_char] = ACTIONS(1792), + [anon_sym_ichar] = ACTIONS(1792), + [anon_sym_short] = ACTIONS(1792), + [anon_sym_ushort] = ACTIONS(1792), + [anon_sym_uint] = ACTIONS(1792), + [anon_sym_long] = ACTIONS(1792), + [anon_sym_ulong] = ACTIONS(1792), + [anon_sym_int128] = ACTIONS(1792), + [anon_sym_uint128] = ACTIONS(1792), + [anon_sym_float] = ACTIONS(1792), + [anon_sym_double] = ACTIONS(1792), + [anon_sym_float16] = ACTIONS(1792), + [anon_sym_bfloat16] = ACTIONS(1792), + [anon_sym_float128] = ACTIONS(1792), + [anon_sym_iptr] = ACTIONS(1792), + [anon_sym_uptr] = ACTIONS(1792), + [anon_sym_isz] = ACTIONS(1792), + [anon_sym_usz] = ACTIONS(1792), + [anon_sym_anyfault] = ACTIONS(1792), + [anon_sym_any] = ACTIONS(1792), + [anon_sym_DOLLARtypeof] = ACTIONS(1810), + [anon_sym_DOLLARtypefrom] = ACTIONS(1810), + [anon_sym_DOLLARevaltype] = ACTIONS(1810), + [anon_sym_DOLLARvatype] = ACTIONS(1813), + }, }; static const uint16_t ts_small_parse_table[] = { @@ -121224,16 +120794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(69), 1, anon_sym_BQUOTE, - STATE(835), 1, + STATE(832), 1, aux_sym_string_expr_repeat1, - STATE(878), 2, + STATE(874), 2, sym_string_literal, sym_raw_string_literal, - STATE(834), 3, + STATE(831), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1822), 20, + ACTIONS(1816), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -121254,7 +120824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1824), 32, + ACTIONS(1818), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -121294,19 +120864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1826), 1, + ACTIONS(1820), 1, anon_sym_DQUOTE, - ACTIONS(1829), 1, + ACTIONS(1823), 1, anon_sym_BQUOTE, - STATE(878), 2, + STATE(874), 2, sym_string_literal, sym_raw_string_literal, - STATE(835), 4, + STATE(832), 4, sym_line_comment, sym_doc_comment, sym_block_comment, aux_sym_string_expr_repeat1, - ACTIONS(1832), 20, + ACTIONS(1826), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -121327,7 +120897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1834), 32, + ACTIONS(1828), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -121367,17 +120937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1836), 1, + ACTIONS(1830), 1, sym_at_ident, - STATE(861), 1, + STATE(850), 1, aux_sym_call_inline_attributes_repeat1, STATE(887), 1, sym_call_inline_attributes, - STATE(836), 3, + STATE(833), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1838), 20, + ACTIONS(1832), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -121398,7 +120968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1840), 33, + ACTIONS(1834), 33, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -121439,17 +121009,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1836), 1, + ACTIONS(1830), 1, sym_at_ident, - STATE(861), 1, + STATE(850), 1, aux_sym_call_inline_attributes_repeat1, - STATE(899), 1, + STATE(890), 1, sym_call_inline_attributes, - STATE(837), 3, + STATE(834), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1842), 20, + ACTIONS(1836), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -121470,7 +121040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1844), 33, + ACTIONS(1838), 33, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -121504,60 +121074,616 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [328] = 20, + [328] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(835), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 11, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [434] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(836), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 6, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [552] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(837), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 6, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [670] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(838), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 6, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [788] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(839), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 6, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [906] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - STATE(302), 1, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(838), 3, + STATE(840), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 13, + ACTIONS(1846), 6, anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [1024] = 36, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, - anon_sym_AMP_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(1846), 3, + anon_sym_EQ, + anon_sym_QMARK, anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + STATE(841), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1842), 22, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -121578,77 +121704,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [430] = 28, + [1158] = 36, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, + anon_sym_EQ_EQ, ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - STATE(302), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(839), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1852), 6, + ACTIONS(1846), 3, anon_sym_EQ, - anon_sym_AMP_AMP, anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 27, + STATE(842), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1842), 22, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -121669,37 +121802,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, anon_sym_GT_RBRACK, - [548] = 12, + [1292] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1892), 1, + ACTIONS(1898), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(1900), 1, anon_sym_STAR, - ACTIONS(1896), 1, + ACTIONS(1902), 1, anon_sym_BANG, - ACTIONS(1898), 1, + ACTIONS(1904), 1, anon_sym_LBRACK_LT, - STATE(862), 1, + STATE(847), 1, aux_sym_type_repeat1, - STATE(886), 1, + STATE(883), 1, sym_type_suffix, - STATE(840), 3, + STATE(843), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1888), 18, + ACTIONS(1717), 18, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -121718,7 +121846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1890), 31, + ACTIONS(1719), 31, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -121750,79 +121878,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [634] = 34, + [1378] = 34, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1886), 1, + ACTIONS(1880), 1, anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, + ACTIONS(1884), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(841), 3, + STATE(844), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 4, + ACTIONS(1846), 4, anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_PIPE_PIPE, - ACTIONS(1848), 23, + ACTIONS(1842), 23, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -121846,56 +121974,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, anon_sym_GT_RBRACK, - [764] = 25, + [1508] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_CARET, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(842), 3, + STATE(845), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 8, + ACTIONS(1846), 8, anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_PLUS, @@ -121904,7 +122032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1842), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -121933,65 +122061,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [876] = 25, + [1620] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - STATE(302), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(843), 3, + STATE(846), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 8, - anon_sym_EQ, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1906), 9, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -122000,6 +122153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, + anon_sym_GT_RBRACK, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122010,73 +122165,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_GT_RBRACK, - [988] = 22, + [1766] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, - anon_sym_DOT, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, - anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1926), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1929), 1, anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(844), 3, + ACTIONS(1932), 1, + anon_sym_LBRACK_LT, + STATE(883), 1, + sym_type_suffix, + STATE(847), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 11, + aux_sym_type_repeat1, + ACTIONS(1922), 19, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1924), 31, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, anon_sym_RBRACK, @@ -122096,6 +122227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -122103,47 +122235,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [1094] = 20, + [1848] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, anon_sym_BANG_BANG, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(845), 3, + STATE(848), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 13, + ACTIONS(1937), 16, anon_sym_EQ, anon_sym_AMP, anon_sym_AMP_AMP, @@ -122151,13 +122278,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_STAR, anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1935), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -122186,159 +122316,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [1196] = 28, + [1944] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, + anon_sym_EQ_EQ, ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(846), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1852), 6, - anon_sym_EQ, - anon_sym_AMP_AMP, - anon_sym_QMARK, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(1848), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_GT_RBRACK, - [1314] = 28, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1846), 1, - anon_sym_DOT, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, - anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, - anon_sym_AMP, - ACTIONS(1874), 1, - anon_sym_PLUS, - ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, - anon_sym_PIPE, - ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(847), 3, + STATE(849), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 6, - anon_sym_EQ, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(1848), 27, + ACTIONS(1939), 9, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -122347,93 +122408,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, + anon_sym_GT_RBRACK, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_GT_RBRACK, - [1432] = 28, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [2090] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1830), 1, + sym_at_ident, + STATE(859), 1, + aux_sym_call_inline_attributes_repeat1, + STATE(850), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1941), 20, anon_sym_DOT, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + anon_sym_EQ, anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, anon_sym_AMP, - ACTIONS(1874), 1, + anon_sym_AMP_AMP, anon_sym_PLUS, - ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(1878), 1, anon_sym_LT_LT, - ACTIONS(1880), 1, anon_sym_GT_GT, - ACTIONS(1882), 1, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1884), 1, anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(848), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1852), 6, - anon_sym_EQ, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 27, + ACTIONS(1943), 33, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -122449,64 +122480,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [1550] = 17, + [2168] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1860), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1870), 1, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(849), 3, + STATE(851), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 16, + ACTIONS(1846), 11, anon_sym_EQ, anon_sym_AMP, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1842), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -122535,69 +122574,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [1646] = 28, + [2274] = 34, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1884), 1, - anon_sym_CARET, + anon_sym_EQ_EQ, ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - STATE(302), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(850), 3, + STATE(852), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 6, + ACTIONS(1846), 4, anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 27, + ACTIONS(1842), 23, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -122618,89 +122667,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, anon_sym_GT_RBRACK, - [1764] = 36, + [2404] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, - anon_sym_PLUS, ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, anon_sym_PIPE, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, - anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, - anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(1852), 3, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - STATE(851), 3, + STATE(853), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1848), 22, + ACTIONS(1846), 8, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -122721,92 +122749,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [1898] = 41, + [2516] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(854), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1947), 16, + anon_sym_EQ, anon_sym_AMP, - ACTIONS(1874), 1, + anon_sym_AMP_AMP, anon_sym_PLUS, - ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(1878), 1, anon_sym_LT_LT, - ACTIONS(1880), 1, anon_sym_GT_GT, - ACTIONS(1882), 1, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1884), 1, anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1918), 1, - anon_sym_EQ, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(852), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1916), 19, + ACTIONS(1945), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -122825,91 +122826,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [2042] = 41, + [2612] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, - anon_sym_PLUS, ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, anon_sym_PIPE, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, - anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, - anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1918), 1, - anon_sym_EQ, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(853), 3, + STATE(855), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1916), 19, + ACTIONS(1846), 8, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -122928,41 +122913,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [2186] = 17, + [2724] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1860), 1, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1870), 1, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(854), 3, + STATE(856), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 16, + ACTIONS(1846), 13, anon_sym_EQ, anon_sym_AMP, anon_sym_AMP_AMP, @@ -122970,16 +122970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_STAR, anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1842), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -123008,40 +123005,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [2282] = 17, + [2826] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1860), 1, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1870), 1, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(855), 3, + STATE(857), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 16, + ACTIONS(1846), 13, anon_sym_EQ, anon_sym_AMP, anon_sym_AMP_AMP, @@ -123049,16 +123052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_STAR, anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1842), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -123087,79 +123087,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [2378] = 34, + [2928] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, - anon_sym_AMP, - ACTIONS(1874), 1, - anon_sym_PLUS, - ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, - anon_sym_PIPE, - ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, - anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, - anon_sym_LT, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(856), 3, + STATE(858), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 4, + ACTIONS(1846), 16, anon_sym_EQ, + anon_sym_AMP, anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 23, + ACTIONS(1842), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -123180,44 +123158,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [2508] = 17, + [3024] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, - anon_sym_DOT, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, - anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(857), 3, + ACTIONS(1949), 1, + sym_at_ident, + STATE(859), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1932), 16, + aux_sym_call_inline_attributes_repeat1, + ACTIONS(1952), 20, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_AMP_AMP, anon_sym_PLUS, @@ -123226,6 +123192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_STAR, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -123233,12 +123201,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1930), 28, + ACTIONS(1954), 33, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -123254,6 +123225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -123261,66 +123233,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [2604] = 25, + [3100] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - STATE(302), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1958), 1, + anon_sym_EQ, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(858), 3, + STATE(860), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 8, - anon_sym_EQ, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1956), 19, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -123339,72 +123337,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [2716] = 22, + [3244] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(859), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1852), 11, - anon_sym_EQ, + ACTIONS(1870), 1, anon_sym_AMP, - anon_sym_AMP_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1962), 1, + anon_sym_EQ, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(861), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1960), 19, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -123423,92 +123440,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [2822] = 36, + [3388] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, ACTIONS(1912), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK, ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - STATE(302), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1962), 1, + anon_sym_EQ, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(1852), 3, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - STATE(860), 3, + STATE(862), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1848), 22, + ACTIONS(1960), 19, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -123527,29 +123543,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE_PIPE, anon_sym_GT_RBRACK, - [2956] = 8, + [3532] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1836), 1, - sym_at_ident, - STATE(870), 1, - aux_sym_call_inline_attributes_repeat1, - STATE(861), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(863), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1934), 20, - anon_sym_DOT, + ACTIONS(1846), 16, anon_sym_EQ, - anon_sym_LPAREN, anon_sym_AMP, anon_sym_AMP_AMP, anon_sym_PLUS, @@ -123558,8 +123587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_STAR, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -123567,15 +123594,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1936), 33, + ACTIONS(1842), 28, anon_sym_COMMA, - anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -123591,7 +123615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -123599,43 +123622,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [3034] = 12, + [3628] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1892), 1, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, - anon_sym_STAR, - ACTIONS(1898), 1, - anon_sym_LBRACK_LT, - ACTIONS(1938), 1, + ACTIONS(1858), 1, anon_sym_BANG, - STATE(864), 1, - aux_sym_type_repeat1, - STATE(886), 1, - sym_type_suffix, - STATE(862), 3, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(864), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1723), 18, - anon_sym_DOT, + ACTIONS(1846), 16, anon_sym_EQ, - anon_sym_LPAREN, anon_sym_AMP, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -123643,9 +123673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1725), 31, + ACTIONS(1842), 28, anon_sym_COMMA, - anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, anon_sym_RBRACK, @@ -123665,7 +123694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -123673,92 +123701,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [3120] = 42, + [3724] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(865), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 11, + anon_sym_EQ, anon_sym_AMP, - ACTIONS(1874), 1, + anon_sym_AMP_AMP, anon_sym_PLUS, - ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1884), 1, anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(863), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1940), 9, + ACTIONS(1842), 28, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -123767,8 +123766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_GT_RBRACK, - ACTIONS(1944), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123779,27 +123776,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [3266] = 10, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [3830] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1950), 1, + ACTIONS(1898), 1, anon_sym_LBRACK, - ACTIONS(1953), 1, + ACTIONS(1900), 1, anon_sym_STAR, - ACTIONS(1956), 1, + ACTIONS(1904), 1, anon_sym_LBRACK_LT, - STATE(886), 1, + ACTIONS(1968), 1, + anon_sym_BANG, + STATE(843), 1, + aux_sym_type_repeat1, + STATE(883), 1, sym_type_suffix, - STATE(864), 4, + STATE(866), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_type_repeat1, - ACTIONS(1946), 19, + ACTIONS(1964), 18, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -123810,7 +123820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, @@ -123819,7 +123828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1948), 31, + ACTIONS(1966), 31, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -123851,166 +123860,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [3348] = 42, + [3916] = 28, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, - anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, - anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(865), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1959), 9, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_GT_RBRACK, - ACTIONS(1944), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [3494] = 22, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1846), 1, - anon_sym_DOT, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, - anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, - STATE(302), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(866), 3, + STATE(867), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 11, + ACTIONS(1846), 6, anon_sym_EQ, - anon_sym_AMP, anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 28, + ACTIONS(1842), 27, anon_sym_COMMA, anon_sym_GT_RPAREN, anon_sym_RPAREN, @@ -124037,95 +123949,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [3600] = 41, + [4034] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + STATE(868), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1972), 20, anon_sym_DOT, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + anon_sym_EQ, anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, anon_sym_AMP, - ACTIONS(1874), 1, + anon_sym_AMP_AMP, anon_sym_PLUS, - ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(1878), 1, anon_sym_LT_LT, - ACTIONS(1880), 1, anon_sym_GT_GT, - ACTIONS(1882), 1, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1884), 1, anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1963), 1, - anon_sym_EQ, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(867), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1961), 19, + ACTIONS(1970), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -124141,42 +124005,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [3744] = 17, + [4107] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_compound_stmt, + STATE(869), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1974), 20, anon_sym_DOT, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + anon_sym_EQ, anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1860), 1, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(1862), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1976), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - ACTIONS(1870), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(868), 3, + anon_sym_GT_RBRACK, + [4184] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1980), 1, + sym_bytes_literal, + STATE(870), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1967), 16, + aux_sym_bytes_expr_repeat1, + ACTIONS(1983), 20, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_AMP_AMP, anon_sym_PLUS, @@ -124185,6 +124112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_STAR, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -124192,10 +124121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1965), 28, + ACTIONS(1985), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -124213,6 +124144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -124220,73 +124152,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [3840] = 28, + [4259] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, - anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + STATE(891), 1, + sym_generic_arguments, + STATE(871), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1987), 21, + anon_sym_DOT, + anon_sym_EQ, anon_sym_LPAREN, - ACTIONS(1856), 1, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(1858), 1, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_STAR, - ACTIONS(1860), 1, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(1862), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, anon_sym_SLASH, - ACTIONS(1868), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, - anon_sym_AMP, - ACTIONS(1874), 1, - anon_sym_PLUS, - ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, anon_sym_PIPE, - ACTIONS(1884), 1, anon_sym_CARET, - ACTIONS(1886), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1989), 31, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(869), 3, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [4336] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1991), 2, + anon_sym_DQUOTE, + anon_sym_BQUOTE, + STATE(872), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 6, + ACTIONS(1993), 20, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1848), 27, + ACTIONS(1995), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -124304,28 +124281,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_PIPE_PIPE_PIPE, anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [3958] = 7, + [4411] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1969), 1, - sym_at_ident, - STATE(870), 4, + ACTIONS(71), 1, + sym_bytes_literal, + STATE(870), 1, + aux_sym_bytes_expr_repeat1, + STATE(873), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_call_inline_attributes_repeat1, - ACTIONS(1972), 20, + ACTIONS(1997), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -124346,7 +124327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1974), 33, + ACTIONS(1999), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -124354,7 +124335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -124380,22 +124360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [4034] = 8, + [4488] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - STATE(922), 1, - sym_compound_stmt, - STATE(871), 3, + STATE(874), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1976), 20, + ACTIONS(2001), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -124416,7 +124392,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1978), 32, + ACTIONS(1991), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -124449,18 +124427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [4111] = 6, + [4561] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(872), 3, + STATE(875), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1984), 20, + ACTIONS(2005), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -124481,7 +124459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1982), 34, + ACTIONS(2003), 34, anon_sym_DQUOTE, anon_sym_BQUOTE, anon_sym_COMMA, @@ -124516,18 +124494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [4184] = 6, + [4634] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(873), 3, + STATE(876), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1988), 20, + ACTIONS(2009), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -124548,8 +124526,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1986), 34, - sym_at_ident, + ACTIONS(2007), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -124557,7 +124536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -124583,18 +124561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [4257] = 6, + [4707] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(874), 3, + STATE(877), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1992), 20, + ACTIONS(2013), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -124615,9 +124593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1990), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, + ACTIONS(2011), 34, + sym_at_ident, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -124625,6 +124602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -124650,22 +124628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [4330] = 8, + [4780] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - STATE(888), 1, - sym_generic_arguments, - STATE(875), 3, + STATE(878), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1994), 21, + ACTIONS(2015), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -124687,8 +124661,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1996), 31, + ACTIONS(2017), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, anon_sym_RBRACK, @@ -124719,25 +124694,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_BANG, anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [4407] = 7, + [4852] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1998), 1, - sym_bytes_literal, - STATE(876), 4, + STATE(879), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_bytes_expr_repeat1, - ACTIONS(2001), 20, + ACTIONS(2019), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -124754,12 +124727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2003), 32, + ACTIONS(2021), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -124786,27 +124758,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [4482] = 8, + [4924] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(71), 1, - sym_bytes_literal, - STATE(876), 1, - aux_sym_bytes_expr_repeat1, - STATE(877), 3, + STATE(880), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2005), 20, + ACTIONS(2023), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -124823,12 +124793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2007), 32, + ACTIONS(2025), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -124855,23 +124824,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [4559] = 6, + [4996] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(878), 3, + STATE(881), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2011), 20, + ACTIONS(2027), 13, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2029), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [5068] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(882), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2023), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -124888,14 +124925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2009), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, + ACTIONS(2025), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -124922,26 +124956,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [4632] = 7, + [5140] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2009), 2, - anon_sym_DQUOTE, - anon_sym_BQUOTE, - STATE(879), 3, + STATE(883), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2013), 20, + ACTIONS(2031), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -124958,12 +124991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2015), 32, + ACTIONS(2033), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -124990,23 +125022,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [4707] = 6, + [5212] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(880), 3, + STATE(884), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2019), 20, + ACTIONS(2015), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -125023,14 +125057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2017), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, + ACTIONS(2017), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -125057,24 +125088,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [4780] = 6, + [5284] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(881), 3, + STATE(885), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2021), 21, + ACTIONS(2037), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -125091,11 +125122,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2023), 32, + ACTIONS(2035), 33, + sym_bytes_literal, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -125122,91 +125155,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [4852] = 6, + [5356] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(882), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2025), 13, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2027), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [4924] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(883), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + STATE(886), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2029), 21, + ACTIONS(2041), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -125223,15 +125191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2031), 32, + ACTIONS(2043), 31, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -125254,91 +125222,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [4996] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(884), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2033), 13, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2035), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [5068] = 6, + [5430] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(885), 3, + STATE(887), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2037), 21, + ACTIONS(2045), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -125355,13 +125255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2039), 32, + ACTIONS(2047), 33, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -125386,20 +125288,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5140] = 6, + [5502] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(886), 3, + STATE(888), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2041), 21, + ACTIONS(2049), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -125421,7 +125322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2043), 32, + ACTIONS(2051), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -125454,18 +125355,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_BANG, anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5212] = 6, + [5574] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(887), 3, + STATE(889), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1842), 20, + ACTIONS(2053), 13, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2055), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [5646] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(890), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1832), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -125486,7 +125453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1844), 33, + ACTIONS(1834), 33, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -125520,18 +125487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [5284] = 6, + [5718] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(888), 3, + STATE(891), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2045), 21, + ACTIONS(2057), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -125553,7 +125520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2047), 32, + ACTIONS(2059), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -125586,18 +125553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_BANG, anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5356] = 6, + [5790] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(889), 3, + STATE(892), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2049), 21, + ACTIONS(2061), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -125619,7 +125586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2051), 32, + ACTIONS(2063), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -125652,18 +125619,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_BANG, anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5428] = 6, + [5862] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(890), 3, + STATE(893), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2049), 21, + ACTIONS(2065), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -125685,7 +125652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2051), 32, + ACTIONS(2067), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -125718,25 +125685,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_BANG, anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5500] = 7, + [5934] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - STATE(891), 3, + STATE(894), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2055), 21, + ACTIONS(1987), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -125753,15 +125718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2057), 31, + ACTIONS(1989), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_DOT_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -125784,23 +125749,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5574] = 6, + [6006] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(892), 3, + STATE(895), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2061), 20, + ACTIONS(2069), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -125817,13 +125784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2059), 33, - sym_bytes_literal, + ACTIONS(2071), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -125850,19 +125815,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5646] = 6, + [6078] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(893), 3, + STATE(896), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2063), 21, + ACTIONS(2073), 21, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -125884,7 +125850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2065), 32, + ACTIONS(2075), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -125917,23 +125883,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_BANG, anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5718] = 6, + [6150] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(894), 3, + STATE(897), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2067), 21, + ACTIONS(2077), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2079), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [6221] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(898), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2081), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -125950,11 +125980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2069), 32, + ACTIONS(2083), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -125981,25 +126012,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5790] = 6, + [6292] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(895), 3, + STATE(899), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1994), 21, + ACTIONS(1993), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1995), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6363] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(900), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2085), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -126016,11 +126110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1996), 32, + ACTIONS(2087), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -126047,25 +126142,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5862] = 6, + [6434] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(901), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2089), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2091), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [6505] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(896), 3, + STATE(902), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2071), 21, + ACTIONS(2093), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -126082,11 +126240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2073), 32, + ACTIONS(2095), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -126113,25 +126272,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [5934] = 6, + [6576] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(897), 3, + STATE(903), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2063), 21, + ACTIONS(2097), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -126148,11 +126305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2065), 32, + ACTIONS(2099), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -126179,25 +126337,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [6006] = 6, + [6647] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(898), 3, + STATE(904), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2075), 21, + ACTIONS(2101), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, @@ -126214,11 +126370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2077), 32, + ACTIONS(2103), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, @@ -126245,20 +126402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - anon_sym_LBRACK_LT, anon_sym_GT_RBRACK, - [6078] = 6, + [6718] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(899), 3, + STATE(905), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2079), 20, + ACTIONS(2105), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -126279,7 +126435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2081), 33, + ACTIONS(2107), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -126287,7 +126443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, @@ -126313,473 +126468,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [6150] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(900), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1615), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(1613), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6221] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(901), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1551), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(1549), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6292] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(902), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2083), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2085), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6363] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(903), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2087), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2089), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6434] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(904), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2091), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2093), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6505] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(905), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1381), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(1379), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6576] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(906), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2095), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2097), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6647] = 6, + [6789] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(907), 3, + STATE(906), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2099), 20, + ACTIONS(2041), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -126800,7 +126500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2101), 32, + ACTIONS(2043), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -126833,18 +126533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [6718] = 6, + [6860] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(908), 3, + STATE(907), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2013), 20, + ACTIONS(2109), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -126865,7 +126565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2015), 32, + ACTIONS(2111), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -126898,136 +126598,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [6789] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(909), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2103), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2105), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6860] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(910), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2107), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2109), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, [6931] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -127035,64 +126605,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(911), 3, + STATE(908), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2111), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2113), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, + ACTIONS(2113), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2115), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, [7002] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -127100,141 +126670,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(912), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2115), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2117), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [7073] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(913), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2119), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2121), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [7144] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(914), 3, + STATE(909), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2123), 20, + ACTIONS(2117), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -127255,7 +126695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2125), 32, + ACTIONS(2119), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -127288,148 +126728,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7215] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(915), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2127), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2129), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [7286] = 6, + [7073] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(916), 3, + STATE(910), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2131), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2133), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [7357] = 6, + ACTIONS(2121), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2123), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7144] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(917), 3, + STATE(911), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2135), 12, + ACTIONS(2125), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -127442,7 +126817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2137), 40, + ACTIONS(2127), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -127483,18 +126858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [7428] = 6, + [7215] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(918), 3, + STATE(912), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2139), 12, + ACTIONS(2129), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -127507,7 +126882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2141), 40, + ACTIONS(2131), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -127548,6 +126923,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, + [7286] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(913), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2133), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2135), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7357] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(914), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2137), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2139), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7428] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(915), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2141), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2143), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, [7499] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -127555,64 +127125,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(919), 3, + STATE(916), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2143), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2145), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, + ACTIONS(2145), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2147), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, [7570] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -127620,64 +127190,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(920), 3, + STATE(917), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2147), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2149), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, + ACTIONS(2145), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2147), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, [7641] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -127685,11 +127255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(921), 3, + STATE(918), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2151), 12, + ACTIONS(2149), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -127702,7 +127272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2153), 40, + ACTIONS(2151), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -127750,11 +127320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(922), 3, + STATE(919), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2155), 20, + ACTIONS(2153), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -127775,7 +127345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2157), 32, + ACTIONS(2155), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -127815,11 +127385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(923), 3, + STATE(920), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2159), 12, + ACTIONS(2157), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -127832,7 +127402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2161), 40, + ACTIONS(2159), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -127880,11 +127450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(924), 3, + STATE(921), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2163), 12, + ACTIONS(2161), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -127897,7 +127467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2165), 40, + ACTIONS(2163), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -127945,11 +127515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(925), 3, + STATE(922), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2167), 12, + ACTIONS(2165), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -127962,7 +127532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2169), 40, + ACTIONS(2167), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128010,11 +127580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(926), 3, + STATE(923), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2171), 12, + ACTIONS(2169), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128027,7 +127597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2173), 40, + ACTIONS(2171), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128075,11 +127645,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(927), 3, + STATE(924), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1611), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1609), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [8138] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(925), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2175), 12, + ACTIONS(2173), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128092,7 +127727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2177), 40, + ACTIONS(2175), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128133,7 +127768,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8138] = 6, + [8209] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(926), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2177), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2179), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [8280] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(927), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2181), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2183), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [8351] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128144,7 +127909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2179), 12, + ACTIONS(1375), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128157,7 +127922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2181), 40, + ACTIONS(1373), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128198,7 +127963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8209] = 6, + [8422] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128209,7 +127974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2183), 12, + ACTIONS(2185), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128222,7 +127987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2185), 40, + ACTIONS(2187), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128263,7 +128028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8280] = 6, + [8493] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128274,7 +128039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2187), 12, + ACTIONS(2189), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128287,7 +128052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2189), 40, + ACTIONS(2191), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128328,7 +128093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8351] = 6, + [8564] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128339,7 +128104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2191), 12, + ACTIONS(2193), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128352,7 +128117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2193), 40, + ACTIONS(2195), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128393,7 +128158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8422] = 6, + [8635] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128404,7 +128169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2195), 12, + ACTIONS(2197), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128417,7 +128182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2197), 40, + ACTIONS(2199), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128458,7 +128223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8493] = 6, + [8706] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128469,7 +128234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2199), 12, + ACTIONS(2201), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128482,7 +128247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2201), 40, + ACTIONS(2203), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128523,7 +128288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8564] = 6, + [8777] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128534,7 +128299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2203), 12, + ACTIONS(2205), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128547,7 +128312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2205), 40, + ACTIONS(2207), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128588,7 +128353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8635] = 6, + [8848] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128599,7 +128364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2207), 20, + ACTIONS(1195), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -128620,7 +128385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2209), 32, + ACTIONS(1193), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -128653,7 +128418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [8706] = 6, + [8919] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128664,7 +128429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2211), 12, + ACTIONS(2209), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128677,7 +128442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2213), 40, + ACTIONS(2211), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128718,7 +128483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8777] = 6, + [8990] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128729,7 +128494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2215), 12, + ACTIONS(2213), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128742,7 +128507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2217), 40, + ACTIONS(2215), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128783,7 +128548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8848] = 6, + [9061] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -128794,7 +128559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1643), 12, + ACTIONS(2217), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128807,7 +128572,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(1641), 40, + ACTIONS(2219), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9132] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(939), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2221), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2223), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9203] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(940), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2225), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2227), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128848,18 +128743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8919] = 6, + [9274] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(939), 3, + STATE(941), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1531), 12, + ACTIONS(2229), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128872,7 +128767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(1529), 40, + ACTIONS(2231), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128913,18 +128808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8990] = 6, + [9345] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(940), 3, + STATE(942), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2219), 12, + ACTIONS(2233), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -128937,7 +128832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2221), 40, + ACTIONS(2235), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -128978,18 +128873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9061] = 6, + [9416] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(941), 3, + STATE(943), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2223), 12, + ACTIONS(2237), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129002,7 +128897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2225), 40, + ACTIONS(2239), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129043,18 +128938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9132] = 6, + [9487] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(942), 3, + STATE(944), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2227), 12, + ACTIONS(1523), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129067,7 +128962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2229), 40, + ACTIONS(1521), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129108,18 +129003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9203] = 6, + [9558] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(943), 3, + STATE(945), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2231), 12, + ACTIONS(2241), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129132,7 +129027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2233), 40, + ACTIONS(2243), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129173,18 +129068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9274] = 6, + [9629] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(944), 3, + STATE(946), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2235), 12, + ACTIONS(2245), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129197,7 +129092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2237), 40, + ACTIONS(2247), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129238,18 +129133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9345] = 6, + [9700] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(945), 3, + STATE(947), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2239), 12, + ACTIONS(2249), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129262,7 +129157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2241), 40, + ACTIONS(2251), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129303,18 +129198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9416] = 6, + [9771] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(946), 3, + STATE(948), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2243), 12, + ACTIONS(2253), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129327,7 +129222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2245), 40, + ACTIONS(2255), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129368,18 +129263,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9487] = 6, + [9842] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(947), 3, + STATE(949), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2247), 12, + ACTIONS(2257), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129392,7 +129287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2249), 40, + ACTIONS(2259), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129433,137 +129328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9558] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(948), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2251), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2253), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9629] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(949), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2255), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2257), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9700] = 6, + [9913] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -129574,7 +129339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2259), 20, + ACTIONS(2261), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -129595,7 +129360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2261), 32, + ACTIONS(2263), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -129628,7 +129393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9771] = 6, + [9984] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -129639,137 +129404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2259), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9842] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(952), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2259), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2261), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9913] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(953), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2263), 12, + ACTIONS(2265), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -129782,7 +129417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2265), 40, + ACTIONS(2267), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -129823,83 +129458,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9984] = 6, + [10055] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(954), 3, + STATE(952), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2267), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2269), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [10055] = 6, + ACTIONS(2141), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2143), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [10126] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(955), 3, + STATE(953), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2271), 20, + ACTIONS(2269), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -129920,7 +129555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2273), 32, + ACTIONS(2271), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -129953,18 +129588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10126] = 6, + [10197] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(956), 3, + STATE(954), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1195), 20, + ACTIONS(2273), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -129985,7 +129620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(1193), 32, + ACTIONS(2275), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -130018,18 +129653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10197] = 6, + [10268] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(957), 3, + STATE(955), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2275), 12, + ACTIONS(2277), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130042,7 +129677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2277), 40, + ACTIONS(2279), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130083,83 +129718,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10268] = 6, + [10339] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(958), 3, + STATE(956), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2279), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2281), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [10339] = 6, + ACTIONS(1615), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1613), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10410] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(959), 3, + STATE(957), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2283), 12, + ACTIONS(1639), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130172,7 +129807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2285), 40, + ACTIONS(1637), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130213,18 +129848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10410] = 6, + [10481] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(960), 3, + STATE(958), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1743), 12, + ACTIONS(2281), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130237,7 +129872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2287), 40, + ACTIONS(2283), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130278,18 +129913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10481] = 6, + [10552] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(961), 3, + STATE(959), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2289), 20, + ACTIONS(2285), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -130310,7 +129945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2291), 32, + ACTIONS(2287), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -130343,213 +129978,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10552] = 6, + [10623] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(962), 3, + STATE(960), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2293), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2295), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [10623] = 6, + ACTIONS(2289), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2291), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10694] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(963), 3, + STATE(961), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2297), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2299), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [10694] = 6, + ACTIONS(2293), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2295), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10765] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(964), 3, + STATE(962), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2301), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2303), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [10765] = 6, + ACTIONS(1615), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1613), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10836] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(963), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2297), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2299), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10907] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(965), 3, + STATE(964), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2305), 12, + ACTIONS(1619), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130562,7 +130262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2307), 40, + ACTIONS(1617), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130603,18 +130303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10836] = 6, + [10978] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(966), 3, + STATE(965), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2309), 12, + ACTIONS(2301), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130627,7 +130327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2311), 40, + ACTIONS(2303), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130668,18 +130368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10907] = 6, + [11049] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(967), 3, + STATE(966), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2313), 20, + ACTIONS(2081), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -130700,7 +130400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2315), 32, + ACTIONS(2083), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -130733,18 +130433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [10978] = 6, + [11120] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(968), 3, + STATE(967), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2317), 12, + ACTIONS(2305), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130757,7 +130457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2319), 40, + ACTIONS(2307), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130798,18 +130498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11049] = 6, + [11191] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(969), 3, + STATE(968), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2321), 12, + ACTIONS(2309), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -130822,7 +130522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2323), 40, + ACTIONS(2311), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -130863,136 +130563,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11120] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(970), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2013), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2015), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [11191] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(971), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2325), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2327), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, [11262] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -131000,64 +130570,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(972), 3, + STATE(969), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2329), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2331), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, + ACTIONS(2313), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2315), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, [11333] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -131065,64 +130635,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(973), 3, + STATE(970), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2333), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2335), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, + ACTIONS(2317), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2319), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, [11404] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -131130,64 +130700,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(974), 3, + STATE(971), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2337), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2339), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, + ACTIONS(2321), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2323), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, [11475] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -131195,11 +130765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(975), 3, + STATE(972), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1579), 12, + ACTIONS(2325), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131212,7 +130782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(1577), 40, + ACTIONS(2327), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131260,11 +130830,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(976), 3, + STATE(973), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2341), 12, + ACTIONS(2329), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131277,7 +130847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2343), 40, + ACTIONS(2331), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131325,11 +130895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(977), 3, + STATE(974), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2345), 12, + ACTIONS(1643), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131342,7 +130912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2347), 40, + ACTIONS(1641), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131390,11 +130960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(978), 3, + STATE(975), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2349), 12, + ACTIONS(1647), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131407,7 +130977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2351), 40, + ACTIONS(1645), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131455,11 +131025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(979), 3, + STATE(976), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2353), 12, + ACTIONS(2333), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131472,7 +131042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2355), 40, + ACTIONS(2335), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131520,11 +131090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(980), 3, + STATE(977), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2357), 12, + ACTIONS(2337), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131537,7 +131107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2359), 40, + ACTIONS(2339), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131585,11 +131155,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(981), 3, + STATE(978), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2361), 12, + ACTIONS(2341), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131602,7 +131172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2363), 40, + ACTIONS(2343), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131650,11 +131220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(982), 3, + STATE(979), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2365), 12, + ACTIONS(2345), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131667,7 +131237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2367), 40, + ACTIONS(2347), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131715,11 +131285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(983), 3, + STATE(980), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2369), 12, + ACTIONS(2349), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131732,7 +131302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2371), 40, + ACTIONS(2351), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131780,11 +131350,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(984), 3, + STATE(981), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2373), 12, + ACTIONS(2353), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131797,7 +131367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2375), 40, + ACTIONS(2355), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131845,11 +131415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(985), 3, + STATE(982), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2377), 12, + ACTIONS(2357), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131862,7 +131432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2379), 40, + ACTIONS(2359), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131910,11 +131480,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(986), 3, + STATE(983), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2381), 12, + ACTIONS(2361), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131927,7 +131497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2383), 40, + ACTIONS(2363), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -131975,11 +131545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(987), 3, + STATE(984), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2385), 12, + ACTIONS(2365), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -131992,7 +131562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2387), 40, + ACTIONS(2367), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132040,11 +131610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(988), 3, + STATE(985), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2389), 12, + ACTIONS(2369), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132057,7 +131627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2391), 40, + ACTIONS(2371), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132105,11 +131675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(989), 3, + STATE(986), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1515), 12, + ACTIONS(2373), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132122,7 +131692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(1513), 40, + ACTIONS(2375), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132170,11 +131740,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(990), 3, + STATE(987), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2393), 12, + ACTIONS(2377), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2379), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [12611] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(988), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2381), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132187,7 +131822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2395), 40, + ACTIONS(2383), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132228,18 +131863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12611] = 6, + [12682] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(991), 3, + STATE(989), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2397), 12, + ACTIONS(2385), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132252,7 +131887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2399), 40, + ACTIONS(2387), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132293,18 +131928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12682] = 6, + [12753] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(992), 3, + STATE(990), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2401), 12, + ACTIONS(2389), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132317,7 +131952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2403), 40, + ACTIONS(2391), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132358,83 +131993,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12753] = 6, + [12824] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(993), 3, + STATE(991), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2055), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2057), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [12824] = 6, + ACTIONS(2393), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2395), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12895] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(994), 3, + STATE(992), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2405), 12, + ACTIONS(2397), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132447,7 +132082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2407), 40, + ACTIONS(2399), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132488,18 +132123,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12895] = 6, + [12966] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(995), 3, + STATE(993), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2409), 12, + ACTIONS(2401), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -132512,7 +132147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2411), 40, + ACTIONS(2403), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -132553,71 +132188,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12966] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(996), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2413), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2415), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, [13037] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -132625,64 +132195,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(997), 3, + STATE(994), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2417), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2419), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, + ACTIONS(2405), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2407), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, [13108] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -132690,336 +132260,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(998), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2421), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2423), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [13179] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(999), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2425), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2427), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [13250] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1000), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2425), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2427), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [13321] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1001), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2429), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2431), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [13392] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1002), 3, + STATE(995), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2433), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2435), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [13463] = 6, + ACTIONS(2409), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2411), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13179] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1003), 3, + STATE(996), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2437), 12, + ACTIONS(1623), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133032,7 +132342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2439), 40, + ACTIONS(1621), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133073,213 +132383,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [13534] = 6, + [13250] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1004), 3, + STATE(997), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2441), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2443), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [13605] = 6, + ACTIONS(1627), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1625), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13321] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1005), 3, + STATE(998), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2421), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2423), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [13676] = 6, + ACTIONS(1631), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1629), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13392] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1006), 3, + STATE(999), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2445), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2447), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [13747] = 6, + ACTIONS(2413), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2415), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13463] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1007), 3, + STATE(1000), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2449), 20, + ACTIONS(2417), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -133300,7 +132610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2451), 32, + ACTIONS(2419), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -133333,18 +132643,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [13818] = 6, + [13534] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1008), 3, + STATE(1001), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1453), 12, + ACTIONS(2421), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133357,7 +132667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(1451), 40, + ACTIONS(2423), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133398,18 +132708,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [13889] = 6, + [13605] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1009), 3, + STATE(1002), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2453), 12, + ACTIONS(2425), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133422,7 +132732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2455), 40, + ACTIONS(2427), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133463,83 +132773,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [13960] = 6, + [13676] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1010), 3, + STATE(1003), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2457), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2459), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [14031] = 6, + ACTIONS(2429), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2431), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13747] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1011), 3, + STATE(1004), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2461), 12, + ACTIONS(2433), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133552,7 +132862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2463), 40, + ACTIONS(2435), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133593,18 +132903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14102] = 6, + [13818] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1012), 3, + STATE(1005), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1485), 12, + ACTIONS(2437), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133617,7 +132927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(1483), 40, + ACTIONS(2439), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133658,18 +132968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14173] = 6, + [13889] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1013), 3, + STATE(1006), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2465), 12, + ACTIONS(2441), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133682,7 +132992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2467), 40, + ACTIONS(2443), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133723,18 +133033,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14244] = 6, + [13960] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1014), 3, + STATE(1007), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1539), 12, + ACTIONS(1739), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133747,7 +133057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(1537), 40, + ACTIONS(2445), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133788,18 +133098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14315] = 6, + [14031] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1015), 3, + STATE(1008), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2469), 12, + ACTIONS(2447), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133812,7 +133122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2471), 40, + ACTIONS(2449), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133853,18 +133163,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14386] = 6, + [14102] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1016), 3, + STATE(1009), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2473), 12, + ACTIONS(2451), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133877,7 +133187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2475), 40, + ACTIONS(2453), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133918,18 +133228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14457] = 6, + [14173] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1017), 3, + STATE(1010), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2477), 12, + ACTIONS(2455), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -133942,7 +133252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2479), 40, + ACTIONS(2457), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -133983,18 +133293,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14528] = 6, + [14244] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1018), 3, + STATE(1011), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2459), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2461), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14315] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1012), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2481), 12, + ACTIONS(2463), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134007,7 +133382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2483), 40, + ACTIONS(2465), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134048,18 +133423,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14599] = 6, + [14386] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1019), 3, + STATE(1013), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2485), 12, + ACTIONS(2467), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134072,7 +133447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2487), 40, + ACTIONS(2469), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134113,18 +133488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14670] = 6, + [14457] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1020), 3, + STATE(1014), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2489), 12, + ACTIONS(2471), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134137,7 +133512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2491), 40, + ACTIONS(2473), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134178,18 +133553,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14741] = 6, + [14528] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1021), 3, + STATE(1015), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2475), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2477), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14599] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1016), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2479), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2481), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14670] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1017), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2493), 12, + ACTIONS(2483), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134202,7 +133707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2495), 40, + ACTIONS(2485), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134243,18 +133748,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14812] = 6, + [14741] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1022), 3, + STATE(1018), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2497), 12, + ACTIONS(2487), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134267,7 +133772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2499), 40, + ACTIONS(2489), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134308,18 +133813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [14883] = 6, + [14812] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1023), 3, + STATE(1019), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2501), 12, + ACTIONS(2491), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134332,7 +133837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2503), 40, + ACTIONS(2493), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134373,6 +133878,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, + [14883] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1020), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2495), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2497), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, [14954] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -134380,64 +133950,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1024), 3, + STATE(1021), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2505), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2507), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, + ACTIONS(2499), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, [15025] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -134445,11 +134015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1025), 3, + STATE(1022), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2509), 20, + ACTIONS(1993), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -134470,7 +134040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2511), 32, + ACTIONS(1995), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -134510,11 +134080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1026), 3, + STATE(1023), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1453), 12, + ACTIONS(2503), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134527,7 +134097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(1451), 40, + ACTIONS(2505), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134575,11 +134145,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1027), 3, + STATE(1024), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2513), 12, + ACTIONS(2507), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134592,7 +134162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2515), 40, + ACTIONS(2509), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134640,11 +134210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1028), 3, + STATE(1025), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1457), 12, + ACTIONS(2511), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134657,7 +134227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(1455), 40, + ACTIONS(2513), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134705,64 +134275,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1029), 3, + STATE(1026), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2517), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2519), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, + ACTIONS(2515), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, [15380] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -134770,64 +134340,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1030), 3, + STATE(1027), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2521), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(2523), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, + ACTIONS(2519), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, [15451] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, @@ -134835,11 +134405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1031), 3, + STATE(1028), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2525), 20, + ACTIONS(2081), 20, anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, @@ -134860,7 +134430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2527), 32, + ACTIONS(2083), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -134900,11 +134470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1032), 3, + STATE(1029), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2529), 12, + ACTIONS(2523), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -134917,7 +134487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2531), 40, + ACTIONS(2525), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -134965,288 +134535,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, + ACTIONS(1840), 1, anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, - anon_sym_AMP, - ACTIONS(1874), 1, - anon_sym_PLUS, - ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, - anon_sym_PIPE, - ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, - anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, - anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(1033), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2533), 4, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(1944), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [15734] = 44, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, - anon_sym_LPAREN, - ACTIONS(1856), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, - anon_sym_AMP, - ACTIONS(1874), 1, - anon_sym_PLUS, - ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(1878), 1, + ACTIONS(1852), 1, anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, - anon_sym_PIPE, - ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, - anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, - anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, - anon_sym_DOT, - ACTIONS(2537), 1, - anon_sym_COMMA, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(1538), 1, - aux_sym_assert_stmt_repeat1, - ACTIONS(2539), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1034), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1944), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [15879] = 42, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1846), 1, - anon_sym_DOT, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, ACTIONS(1854), 1, - anon_sym_LPAREN, + anon_sym_GT_GT, ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1035), 3, + STATE(1030), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2541), 4, + ACTIONS(2527), 4, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135257,96 +134627,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [16020] = 44, + [15734] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, - anon_sym_DOT, - ACTIONS(2543), 1, - anon_sym_COMMA, - ACTIONS(2545), 1, - anon_sym_GT_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1627), 1, - aux_sym__generic_arg_list_repeat1, - STATE(1036), 3, + STATE(1031), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(2529), 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135357,94 +134726,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [16164] = 42, + [15875] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + ACTIONS(2533), 1, + anon_sym_COMMA, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2547), 3, - anon_sym_COMMA, + STATE(1613), 1, + aux_sym_assert_stmt_repeat1, + ACTIONS(2535), 2, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1037), 3, + STATE(1032), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135455,96 +134827,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [16304] = 44, + [16020] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2533), 1, anon_sym_COMMA, - ACTIONS(2549), 1, + ACTIONS(2537), 1, anon_sym_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1718), 1, + STATE(1726), 1, aux_sym_assert_stmt_repeat1, - STATE(1038), 3, + STATE(1033), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135555,94 +134927,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [16448] = 42, + [16164] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2551), 3, + ACTIONS(2539), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1039), 3, + STATE(1034), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135653,94 +135025,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [16588] = 42, + [16304] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + ACTIONS(2541), 1, + anon_sym_COMMA, + ACTIONS(2543), 1, + anon_sym_GT_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2553), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1040), 3, + STATE(1711), 1, + aux_sym__generic_arg_list_repeat1, + STATE(1035), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135751,94 +135125,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [16728] = 42, + [16448] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2555), 3, + ACTIONS(2545), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1041), 3, + STATE(1036), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135849,94 +135223,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [16868] = 42, + [16588] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1886), 1, + ACTIONS(1880), 1, anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(2547), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2557), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1042), 3, + STATE(1619), 1, + aux_sym_assert_stmt_repeat1, + STATE(1037), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135947,95 +135323,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17008] = 43, + [16732] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2561), 1, - anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2559), 2, + ACTIONS(2549), 3, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1043), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1038), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136046,96 +135421,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17150] = 44, + [16872] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2533), 1, anon_sym_COMMA, - ACTIONS(2563), 1, + ACTIONS(2551), 1, anon_sym_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1731), 1, + STATE(1687), 1, aux_sym_assert_stmt_repeat1, - STATE(1044), 3, + STATE(1039), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136146,94 +135521,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17294] = 42, + [17016] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2565), 3, + ACTIONS(2553), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1045), 3, + STATE(1040), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136244,96 +135619,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17434] = 44, + [17156] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2537), 1, - anon_sym_COMMA, - ACTIONS(2567), 1, - anon_sym_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1722), 1, - aux_sym_assert_stmt_repeat1, - STATE(1046), 3, + ACTIONS(2555), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1041), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136344,96 +135717,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17578] = 44, + [17296] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2537), 1, - anon_sym_COMMA, - ACTIONS(2569), 1, - anon_sym_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1684), 1, - aux_sym_assert_stmt_repeat1, - STATE(1047), 3, + ACTIONS(2557), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1042), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136444,96 +135815,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17722] = 44, + [17436] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2533), 1, anon_sym_COMMA, - ACTIONS(2571), 1, + ACTIONS(2559), 1, anon_sym_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1737), 1, + STATE(1708), 1, aux_sym_assert_stmt_repeat1, - STATE(1048), 3, + STATE(1043), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136544,94 +135915,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [17866] = 42, + [17580] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(2561), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2573), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1049), 3, + STATE(1718), 1, + aux_sym_assert_stmt_repeat1, + STATE(1044), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136642,96 +136015,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18006] = 44, + [17724] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2537), 1, - anon_sym_COMMA, - ACTIONS(2575), 1, - anon_sym_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1740), 1, - aux_sym_assert_stmt_repeat1, - STATE(1050), 3, + ACTIONS(2563), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1045), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136742,96 +136113,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18150] = 44, + [17864] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2537), 1, + ACTIONS(2533), 1, anon_sym_COMMA, - ACTIONS(2577), 1, + ACTIONS(2565), 1, anon_sym_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1635), 1, + STATE(1733), 1, aux_sym_assert_stmt_repeat1, - STATE(1051), 3, + STATE(1046), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136842,156 +136213,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18294] = 8, + [18008] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2579), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - STATE(1125), 1, - sym_generic_arguments, - STATE(1052), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1996), 19, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - anon_sym_LBRACK_LT, - ACTIONS(1994), 27, - sym_ident, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18365] = 42, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, ACTIONS(1850), 1, - anon_sym_LPAREN_LT, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, ACTIONS(1854), 1, - anon_sym_LPAREN, + anon_sym_GT_GT, ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(2567), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2581), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1053), 3, + STATE(1738), 1, + aux_sym_assert_stmt_repeat1, + STATE(1047), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137002,93 +136313,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18504] = 42, + [18152] = 43, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2585), 1, - anon_sym_AMP_AMP, - STATE(302), 1, + ACTIONS(2571), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2583), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1054), 3, + ACTIONS(2569), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1048), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137099,94 +136412,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18643] = 43, + [18294] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, - anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2587), 1, - anon_sym_COLON, - ACTIONS(2589), 1, - anon_sym_DOT_DOT, - STATE(302), 1, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1055), 3, + ACTIONS(2573), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1049), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137197,25 +136509,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18784] = 7, + [18433] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1056), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2575), 1, + anon_sym_COLON, + STATE(1050), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2591), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(2099), 20, - anon_sym_DOT, + ACTIONS(2041), 19, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -137235,9 +136544,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2101), 23, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, + ACTIONS(2043), 27, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [18504] = 43, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2577), 1, + anon_sym_COLON, + ACTIONS(2579), 1, + anon_sym_DOT_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1051), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137248,57 +136670,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - [18853] = 6, + [18645] = 43, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1057), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2013), 20, + ACTIONS(1840), 1, anon_sym_DOT, - anon_sym_EQ, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, anon_sym_BANG, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(2015), 28, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2581), 1, + anon_sym_RBRACK, + ACTIONS(2583), 1, anon_sym_DOT_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1052), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137309,104 +136768,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - [18920] = 42, + [18786] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2595), 1, - anon_sym_AMP_AMP, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2593), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1058), 3, + ACTIONS(2585), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1053), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137417,155 +136865,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19059] = 7, + [18925] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1059), 3, + ACTIONS(2587), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_STAR, + ACTIONS(2593), 1, + anon_sym_LBRACK_LT, + STATE(1126), 1, + sym_type_suffix, + STATE(1054), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2597), 5, + aux_sym_type_repeat1, + ACTIONS(1924), 18, + sym_at_ident, + sym_type_ident, + sym_ct_type_ident, + sym_at_type_ident, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_AMP, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(2433), 20, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2435), 23, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - [19128] = 42, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1922), 25, + sym_ident, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [19000] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2601), 1, - anon_sym_AMP_AMP, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2599), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1060), 3, + ACTIONS(2596), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + STATE(1055), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137576,93 +137027,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19267] = 42, + [19139] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1886), 1, + ACTIONS(1880), 1, anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, + ACTIONS(1884), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + ACTIONS(2600), 1, + anon_sym_AMP_AMP, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2603), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - STATE(1061), 3, + ACTIONS(2598), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1056), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137673,93 +137124,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19406] = 42, + [19278] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2559), 2, + ACTIONS(2569), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1062), 3, + STATE(1057), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137770,93 +137221,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19545] = 42, + [19417] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1886), 1, + ACTIONS(1880), 1, anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, + ACTIONS(1884), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2607), 1, + ACTIONS(2604), 1, anon_sym_AMP_AMP, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - ACTIONS(2605), 2, + ACTIONS(2602), 2, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1063), 3, + STATE(1058), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137867,94 +137318,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19684] = 43, + [19556] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1846), 1, - anon_sym_DOT, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1886), 1, + ACTIONS(1880), 1, anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, + ACTIONS(1884), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2609), 1, - anon_sym_RBRACK, - ACTIONS(2611), 1, - anon_sym_DOT_DOT, - STATE(302), 1, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2608), 1, + anon_sym_AMP_AMP, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1064), 3, + ACTIONS(2606), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1059), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137965,22 +137415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [19825] = 8, + [19695] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - ACTIONS(2613), 1, - anon_sym_COLON, - STATE(1065), 3, + STATE(1060), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2055), 19, + ACTIONS(1993), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -138000,13 +137447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2057), 27, - anon_sym_DOT, + ACTIONS(1995), 28, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DOT_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138028,157 +137476,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - [19896] = 10, + [19762] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2615), 1, - anon_sym_LBRACK, - ACTIONS(2618), 1, - anon_sym_STAR, - ACTIONS(2621), 1, - anon_sym_LBRACK_LT, - STATE(1132), 1, - sym_type_suffix, - STATE(1066), 4, + STATE(1061), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_type_repeat1, - ACTIONS(1948), 18, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_DOT, + ACTIONS(2610), 5, anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(1946), 25, - sym_ident, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19971] = 42, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + anon_sym_DOT_DOT, + ACTIONS(2133), 20, + anon_sym_DOT, + anon_sym_EQ, anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, anon_sym_AMP, - ACTIONS(1874), 1, + anon_sym_AMP_AMP, anon_sym_PLUS, - ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(1878), 1, anon_sym_LT_LT, - ACTIONS(1880), 1, anon_sym_GT_GT, - ACTIONS(1882), 1, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1884), 1, anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_RBRACK, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(1067), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(2135), 23, + anon_sym_LPAREN_LT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138189,116 +137527,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20109] = 42, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, - anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, - anon_sym_AMP, - ACTIONS(1874), 1, - anon_sym_PLUS, - ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, - anon_sym_PIPE, - ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, - anon_sym_GT, - ACTIONS(1906), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, - anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, - anon_sym_DOT, - ACTIONS(2626), 1, - anon_sym_RPAREN, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(1068), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1944), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [20247] = 7, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [19831] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2628), 1, - anon_sym_COLON, - STATE(1069), 3, + STATE(1062), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2337), 19, + ACTIONS(2612), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(2499), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -138318,13 +137576,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2339), 27, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(2501), 23, anon_sym_LPAREN_LT, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_SEMI, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138346,92 +137600,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - [20315] = 42, + [19900] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(2614), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + STATE(1125), 1, + sym_generic_arguments, + STATE(1063), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 19, + sym_at_ident, + sym_type_ident, + sym_ct_type_ident, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(1987), 27, + sym_ident, anon_sym_LPAREN, - ACTIONS(1856), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [19971] = 42, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, - ACTIONS(1878), 1, - anon_sym_LT_LT, - ACTIONS(1880), 1, - anon_sym_GT_GT, - ACTIONS(1882), 1, + ACTIONS(1876), 1, anon_sym_PIPE, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_CARET, - ACTIONS(1886), 1, + ACTIONS(1880), 1, anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, + ACTIONS(1884), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2630), 1, - anon_sym_RPAREN, - STATE(302), 1, + ACTIONS(2618), 1, + anon_sym_AMP_AMP, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1070), 3, + ACTIONS(2616), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1064), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138442,92 +137760,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20453] = 42, + [20110] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2632), 1, + ACTIONS(2620), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1071), 3, + STATE(1065), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138538,92 +137856,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20591] = 42, + [20248] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2634), 1, - anon_sym_RPAREN, - STATE(302), 1, + ACTIONS(2622), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1072), 3, + STATE(1066), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138634,92 +137952,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20729] = 42, + [20386] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2636), 1, - anon_sym_RBRACK, - STATE(302), 1, + ACTIONS(2624), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1073), 3, + STATE(1067), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138730,92 +138048,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [20867] = 42, + [20524] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(2626), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_STAR, + ACTIONS(2630), 1, + anon_sym_BANG, + ACTIONS(2632), 1, + anon_sym_LBRACK_LT, + STATE(1080), 1, + aux_sym_type_repeat1, + STATE(1126), 1, + sym_type_suffix, + STATE(1068), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1966), 16, + sym_at_ident, + sym_type_ident, + sym_ct_type_ident, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1964), 25, + sym_ident, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [20602] = 42, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2638), 1, + ACTIONS(2634), 1, anon_sym_RBRACK, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1074), 3, + STATE(1069), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138826,92 +138210,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21005] = 42, + [20740] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2640), 1, - anon_sym_GT_RBRACK, - STATE(302), 1, + ACTIONS(2636), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1075), 3, + STATE(1070), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138922,92 +138306,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21143] = 42, + [20878] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2642), 1, - anon_sym_SEMI, - STATE(302), 1, + ACTIONS(2638), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1076), 3, + STATE(1071), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139018,92 +138402,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21281] = 42, + [21016] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2644), 1, - anon_sym_SEMI, - STATE(302), 1, + ACTIONS(2640), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1077), 3, + STATE(1072), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139114,92 +138498,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21419] = 42, + [21154] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2561), 1, - anon_sym_SEMI, - STATE(302), 1, + ACTIONS(2642), 1, + anon_sym_RBRACK, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1078), 3, + STATE(1073), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139210,92 +138594,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21557] = 42, + [21292] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2646), 1, - anon_sym_SEMI, - STATE(302), 1, + ACTIONS(2644), 1, + anon_sym_RBRACK, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1079), 3, + STATE(1074), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139306,92 +138690,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21695] = 42, + [21430] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_SEMI, - STATE(302), 1, + ACTIONS(2646), 1, + anon_sym_RBRACK, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1080), 3, + STATE(1075), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139402,92 +138786,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21833] = 42, + [21568] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2650), 1, - anon_sym_RPAREN, - STATE(302), 1, + ACTIONS(2648), 1, + anon_sym_GT_RBRACK, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1081), 3, + STATE(1076), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139498,92 +138882,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [21971] = 42, + [21706] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2652), 1, - anon_sym_RBRACK, - STATE(302), 1, + ACTIONS(2650), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1082), 3, + STATE(1077), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139594,92 +138978,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22109] = 42, + [21844] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2654), 1, - anon_sym_RBRACK, - STATE(302), 1, + ACTIONS(2652), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1083), 3, + STATE(1078), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139690,92 +139074,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22247] = 42, + [21982] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2656), 1, - anon_sym_GT_RBRACK, - STATE(302), 1, + ACTIONS(2654), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1084), 3, + STATE(1079), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139786,92 +139170,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22385] = 42, + [22120] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, - anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(2628), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(2632), 1, + anon_sym_LBRACK_LT, + ACTIONS(2656), 1, anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, + STATE(1054), 1, + aux_sym_type_repeat1, + STATE(1126), 1, + sym_type_suffix, + STATE(1080), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1719), 16, + sym_at_ident, + sym_type_ident, + sym_ct_type_ident, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1717), 25, + sym_ident, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [22198] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2658), 1, + anon_sym_EQ, + STATE(1081), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2041), 18, + anon_sym_LPAREN, anon_sym_AMP, - ACTIONS(1874), 1, + anon_sym_AMP_AMP, anon_sym_PLUS, - ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(1878), 1, anon_sym_LT_LT, - ACTIONS(1880), 1, anon_sym_GT_GT, - ACTIONS(1882), 1, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1884), 1, anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2043), 27, anon_sym_DOT, - ACTIONS(2658), 1, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_SEMI, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(1085), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1944), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139882,92 +139287,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22523] = 42, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [22268] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2660), 1, - anon_sym_SEMI, - STATE(302), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1086), 3, + STATE(1082), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139978,92 +139394,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22661] = 42, + [22406] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, - anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(2662), 1, + anon_sym_COLON, + STATE(1083), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2097), 19, + anon_sym_EQ, anon_sym_LPAREN, - ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - anon_sym_BANG, - ACTIONS(1862), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, - anon_sym_DASH_DASH, - ACTIONS(1866), 1, - anon_sym_SLASH, - ACTIONS(1868), 1, - anon_sym_PERCENT, - ACTIONS(1870), 1, - anon_sym_BANG_BANG, - ACTIONS(1872), 1, anon_sym_AMP, - ACTIONS(1874), 1, + anon_sym_AMP_AMP, anon_sym_PLUS, - ACTIONS(1876), 1, anon_sym_DASH, - ACTIONS(1878), 1, anon_sym_LT_LT, - ACTIONS(1880), 1, anon_sym_GT_GT, - ACTIONS(1882), 1, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(1884), 1, anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, - anon_sym_EQ_EQ, - ACTIONS(1902), 1, - anon_sym_BANG_EQ, - ACTIONS(1904), 1, anon_sym_GT, - ACTIONS(1906), 1, - anon_sym_GT_EQ, - ACTIONS(1908), 1, - anon_sym_LT_EQ, - ACTIONS(1910), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, - anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, - anon_sym_QMARK, - ACTIONS(1922), 1, - anon_sym_QMARK_COLON, - ACTIONS(1924), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, - anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2099), 27, anon_sym_DOT, - ACTIONS(2662), 1, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_SEMI, - STATE(302), 1, - sym__assignment_op, - STATE(871), 1, - sym_call_invocation, - STATE(1006), 1, - sym_generic_arguments, - STATE(1087), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1944), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140074,92 +139444,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22799] = 42, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [22474] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2664), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1088), 3, + STATE(1084), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140170,92 +139551,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22937] = 42, + [22612] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2666), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1089), 3, + STATE(1085), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140266,92 +139647,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23075] = 42, + [22750] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2668), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1090), 3, + STATE(1086), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140362,92 +139743,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23213] = 42, + [22888] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2670), 1, anon_sym_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1091), 3, + STATE(1087), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140458,92 +139839,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23351] = 42, + [23026] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2672), 1, - anon_sym_RPAREN, - STATE(302), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1092), 3, + STATE(1088), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140554,92 +139935,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23489] = 42, + [23164] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2674), 1, - anon_sym_SEMI, - STATE(302), 1, + anon_sym_RBRACK, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1093), 3, + STATE(1089), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140650,92 +140031,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23627] = 42, + [23302] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2676), 1, - anon_sym_SEMI, - STATE(302), 1, + anon_sym_RBRACK, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1094), 3, + STATE(1090), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140746,92 +140127,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23765] = 42, + [23440] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2678), 1, - anon_sym_SEMI, - STATE(302), 1, + anon_sym_COLON, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1095), 3, + STATE(1091), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140842,92 +140223,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23903] = 42, + [23578] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2680), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1096), 3, + STATE(1092), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140938,152 +140319,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24041] = 6, + [23716] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1097), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2069), 20, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - anon_sym_LBRACK_LT, - ACTIONS(2067), 27, - sym_ident, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [24107] = 42, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, ACTIONS(1850), 1, - anon_sym_LPAREN_LT, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, ACTIONS(1854), 1, - anon_sym_LPAREN, + anon_sym_GT_GT, ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2682), 1, - anon_sym_RBRACK, - STATE(302), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1098), 3, + STATE(1093), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141094,92 +140415,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24245] = 42, + [23854] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2684), 1, - anon_sym_GT_RBRACK, - STATE(302), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1099), 3, + STATE(1094), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141190,92 +140511,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24383] = 42, + [23992] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2686), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1100), 3, + STATE(1095), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141286,92 +140607,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24521] = 42, + [24130] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2688), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1101), 3, + STATE(1096), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141382,47 +140703,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24659] = 8, + [24268] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - ACTIONS(2690), 1, - anon_sym_EQ, - STATE(1102), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2055), 18, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, anon_sym_BANG, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(2057), 27, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(2690), 1, anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1097), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141433,103 +140799,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - [24729] = 42, + [24406] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2692), 1, - anon_sym_COLON, - STATE(302), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1103), 3, + STATE(1098), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141540,92 +140895,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24867] = 42, + [24544] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, ACTIONS(2694), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1104), 3, + STATE(1099), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141636,158 +140991,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25005] = 12, + [24682] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(91), 1, - anon_sym_LBRACK, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(2698), 1, - anon_sym_RPAREN, - STATE(1451), 1, - sym_param_path_element, - STATE(1483), 1, - aux_sym_param_path_repeat1, - STATE(2258), 1, - sym_param_path, - STATE(1105), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2099), 19, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2101), 22, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - [25083] = 42, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + ACTIONS(1848), 1, + anon_sym_LPAREN, ACTIONS(1850), 1, - anon_sym_LPAREN_LT, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, ACTIONS(1854), 1, - anon_sym_LPAREN, + anon_sym_GT_GT, ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2700), 1, + ACTIONS(2696), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1106), 3, + STATE(1100), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141798,92 +141087,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25221] = 42, + [24820] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2571), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1107), 3, + STATE(1101), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141894,92 +141183,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25359] = 42, + [24958] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2704), 1, - anon_sym_RPAREN, - STATE(302), 1, + ACTIONS(2698), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1108), 3, + STATE(1102), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141990,92 +141279,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25497] = 42, + [25096] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2706), 1, - anon_sym_RBRACK, - STATE(302), 1, + ACTIONS(2700), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1109), 3, + STATE(1103), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142086,92 +141375,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25635] = 42, + [25234] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2708), 1, - anon_sym_COMMA, - STATE(302), 1, + ACTIONS(2702), 1, + anon_sym_RBRACK, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1110), 3, + STATE(1104), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142182,92 +141471,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25773] = 42, + [25372] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2710), 1, - anon_sym_SEMI, - STATE(302), 1, + ACTIONS(2704), 1, + anon_sym_COMMA, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1111), 3, + STATE(1105), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142278,158 +141567,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25911] = 12, + [25510] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2712), 1, - anon_sym_LBRACK, - ACTIONS(2714), 1, - anon_sym_STAR, - ACTIONS(2716), 1, - anon_sym_BANG, - ACTIONS(2718), 1, - anon_sym_LBRACK_LT, - STATE(1115), 1, - aux_sym_type_repeat1, - STATE(1132), 1, - sym_type_suffix, - STATE(1112), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1890), 16, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(1888), 25, - sym_ident, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [25989] = 42, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, ACTIONS(1850), 1, - anon_sym_LPAREN_LT, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, ACTIONS(1854), 1, - anon_sym_LPAREN, + anon_sym_GT_GT, ACTIONS(1856), 1, - anon_sym_LBRACK, - ACTIONS(1858), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2720), 1, + ACTIONS(2706), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1113), 3, + STATE(1106), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142440,254 +141663,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26127] = 42, + [25648] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2722), 1, + ACTIONS(2708), 1, anon_sym_RPAREN, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1114), 3, + STATE(1107), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26265] = 12, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2712), 1, - anon_sym_LBRACK, - ACTIONS(2714), 1, - anon_sym_STAR, - ACTIONS(2718), 1, - anon_sym_LBRACK_LT, - ACTIONS(2724), 1, - anon_sym_BANG, - STATE(1066), 1, - aux_sym_type_repeat1, - STATE(1132), 1, - sym_type_suffix, - STATE(1115), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1725), 16, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - ACTIONS(1723), 25, - sym_ident, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [26343] = 42, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25786] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2726), 1, - anon_sym_COLON, - STATE(302), 1, + ACTIONS(2710), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1116), 3, + STATE(1108), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142698,92 +141855,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26481] = 42, + [25924] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2728), 1, + ACTIONS(2712), 1, anon_sym_RBRACK, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1117), 3, + STATE(1109), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142794,92 +141951,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26619] = 42, + [26062] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2730), 1, - anon_sym_RPAREN, - STATE(302), 1, + ACTIONS(2714), 1, + anon_sym_GT_RBRACK, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1118), 3, + STATE(1110), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142890,92 +142047,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26757] = 42, + [26200] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2732), 1, + ACTIONS(2716), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1119), 3, + STATE(1111), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142986,92 +142143,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26895] = 42, + [26338] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2734), 1, - anon_sym_RPAREN, - STATE(302), 1, + ACTIONS(2718), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1120), 3, + STATE(1112), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143082,92 +142239,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27033] = 42, + [26476] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - ACTIONS(2736), 1, - anon_sym_RPAREN, - STATE(302), 1, + ACTIONS(2720), 1, + anon_sym_COLON, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1121), 3, + STATE(1113), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143178,159 +142335,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27171] = 6, + [26614] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1122), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2039), 20, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - anon_sym_LBRACK_LT, - ACTIONS(2037), 26, - sym_ident, - anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [27236] = 25, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARvatype, - ACTIONS(2738), 1, - sym_ident, - ACTIONS(2740), 1, - sym_ct_ident, - ACTIONS(2742), 1, - sym_hash_ident, - ACTIONS(2744), 1, - sym_ct_type_ident, - ACTIONS(2746), 1, - anon_sym_RPAREN, - ACTIONS(2748), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(2752), 1, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2722), 1, anon_sym_SEMI, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, - sym_module_type_ident, - STATE(1237), 1, - sym_base_type_name, - STATE(1357), 1, - sym_type, - STATE(1397), 1, - sym__parameter, - STATE(1487), 1, - sym_module_resolution, - STATE(1510), 1, - sym_parameter, - STATE(1568), 1, - aux_sym__module_path, - STATE(1832), 1, - sym__parameters, - ACTIONS(171), 3, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - STATE(1123), 3, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1114), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [27339] = 8, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26752] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - ACTIONS(2754), 1, - anon_sym_EQ, - STATE(1124), 3, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(2724), 1, + anon_sym_DOT, + ACTIONS(2726), 1, + anon_sym_RPAREN, + STATE(1435), 1, + sym_param_path_element, + STATE(1453), 1, + aux_sym_param_path_repeat1, + STATE(2139), 1, + sym_param_path, + STATE(1115), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2055), 18, + ACTIONS(2499), 19, + anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, anon_sym_AMP_AMP, @@ -143349,12 +142474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2057), 26, - anon_sym_DOT, + ACTIONS(2501), 22, anon_sym_LPAREN_LT, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_SEMI, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143376,26 +142497,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - [27408] = 6, + [26830] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1125), 3, + STATE(1116), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2047), 20, + ACTIONS(2067), 20, sym_at_ident, sym_type_ident, sym_ct_type_ident, sym_at_type_ident, anon_sym_DOT, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_AMP, anon_sym_SEMI, @@ -143408,8 +142529,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, anon_sym_LBRACK_LT, - ACTIONS(2045), 26, + ACTIONS(2065), 27, sym_ident, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, @@ -143435,208 +142557,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [27473] = 6, + [26896] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1126), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2031), 20, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - anon_sym_LBRACK_LT, - ACTIONS(2029), 26, - sym_ident, - anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [27538] = 6, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2728), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1117), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27034] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1127), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2730), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1118), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2051), 20, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27172] = 42, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, anon_sym_BANG, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARevaltype, - anon_sym_DOLLARvatype, - anon_sym_LBRACK_LT, - ACTIONS(2049), 26, - sym_ident, - anon_sym_LBRACK, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [27603] = 41, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2732), 1, + anon_sym_GT_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1119), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27310] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1850), 1, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, - ACTIONS(1854), 1, + ACTIONS(1848), 1, anon_sym_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1858), 1, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - ACTIONS(1860), 1, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(1862), 1, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, - ACTIONS(1864), 1, + ACTIONS(1862), 1, anon_sym_DASH_DASH, - ACTIONS(1866), 1, + ACTIONS(1864), 1, anon_sym_SLASH, - ACTIONS(1868), 1, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(1870), 1, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(1872), 1, + ACTIONS(1870), 1, anon_sym_AMP, - ACTIONS(1874), 1, + ACTIONS(1872), 1, anon_sym_PLUS, - ACTIONS(1876), 1, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, ACTIONS(1878), 1, - anon_sym_LT_LT, + anon_sym_CARET, ACTIONS(1880), 1, - anon_sym_GT_GT, + anon_sym_PLUS_PLUS_PLUS, ACTIONS(1882), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(1884), 1, - anon_sym_CARET, - ACTIONS(1886), 1, - anon_sym_PLUS_PLUS_PLUS, - ACTIONS(1900), 1, anon_sym_EQ_EQ, - ACTIONS(1902), 1, + ACTIONS(1886), 1, anon_sym_BANG_EQ, - ACTIONS(1904), 1, + ACTIONS(1888), 1, anon_sym_GT, - ACTIONS(1906), 1, + ACTIONS(1890), 1, anon_sym_GT_EQ, - ACTIONS(1908), 1, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(1910), 1, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1912), 1, - anon_sym_AMP_AMP, - ACTIONS(1914), 1, + ACTIONS(1896), 1, anon_sym_AMP_AMP_AMP, - ACTIONS(1920), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, anon_sym_QMARK, - ACTIONS(1922), 1, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, - ACTIONS(1924), 1, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(1926), 1, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - ACTIONS(1928), 1, + ACTIONS(1920), 1, anon_sym_PIPE_PIPE_PIPE, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(2535), 1, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(302), 1, + STATE(291), 1, sym__assignment_op, - STATE(871), 1, + STATE(869), 1, sym_call_invocation, - STATE(1006), 1, + STATE(954), 1, sym_generic_arguments, - STATE(1128), 3, + STATE(1120), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1944), 10, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143647,18 +142939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27738] = 6, + [27445] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1129), 3, + STATE(1121), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2073), 20, + ACTIONS(2063), 20, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -143679,7 +142971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, anon_sym_LBRACK_LT, - ACTIONS(2071), 26, + ACTIONS(2061), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -143706,18 +142998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [27803] = 6, + [27510] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1130), 3, + STATE(1122), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2051), 20, + ACTIONS(2025), 20, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -143738,7 +143030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, anon_sym_LBRACK_LT, - ACTIONS(2049), 26, + ACTIONS(2023), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -143765,18 +143057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [27868] = 6, + [27575] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1131), 3, + STATE(1123), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1996), 20, + ACTIONS(2075), 20, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -143797,7 +143089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, anon_sym_LBRACK_LT, - ACTIONS(1994), 26, + ACTIONS(2073), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -143824,18 +143116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [27933] = 6, + [27640] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1132), 3, + STATE(1124), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2043), 20, + ACTIONS(2017), 20, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -143856,7 +143148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, anon_sym_LBRACK_LT, - ACTIONS(2041), 26, + ACTIONS(2015), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -143883,18 +143175,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [27998] = 6, + [27705] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1133), 3, + STATE(1125), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2077), 20, + ACTIONS(2059), 20, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -143915,7 +143207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, anon_sym_LBRACK_LT, - ACTIONS(2075), 26, + ACTIONS(2057), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -143942,18 +143234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28063] = 6, + [27770] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1134), 3, + STATE(1126), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2065), 20, + ACTIONS(2033), 20, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -143974,7 +143266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, anon_sym_LBRACK_LT, - ACTIONS(2063), 26, + ACTIONS(2031), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -144001,18 +143293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28128] = 6, + [27835] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1135), 3, + STATE(1127), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2065), 20, + ACTIONS(2025), 20, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -144033,7 +143325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, anon_sym_LBRACK_LT, - ACTIONS(2063), 26, + ACTIONS(2023), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -144060,18 +143352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28193] = 6, + [27900] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1136), 3, + STATE(1128), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2023), 20, + ACTIONS(1989), 20, sym_at_ident, sym_type_ident, sym_ct_type_ident, @@ -144092,7 +143384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, anon_sym_LBRACK_LT, - ACTIONS(2021), 26, + ACTIONS(1987), 26, sym_ident, anon_sym_LBRACK, anon_sym_int, @@ -144119,57 +143411,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28258] = 23, + [27965] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(59), 1, + ACTIONS(173), 1, anon_sym_DOLLARvatype, - ACTIONS(2756), 1, + ACTIONS(2734), 1, sym_ident, - ACTIONS(2758), 1, - anon_sym_RBRACE, - ACTIONS(2760), 1, - anon_sym_inline, - ACTIONS(2762), 1, - anon_sym_bitstruct, - STATE(1052), 1, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2742), 1, + anon_sym_RPAREN, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + ACTIONS(2748), 1, + anon_sym_SEMI, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1143), 1, - aux_sym_struct_body_repeat1, - STATE(1205), 1, - sym_struct_member_declaration, - STATE(1297), 1, - sym__struct_or_union, - STATE(1487), 1, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(1814), 1, - sym_type, - ACTIONS(33), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(57), 3, + STATE(1616), 1, + sym_parameter, + STATE(1843), 1, + sym__parameters, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1137), 3, + STATE(1129), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -144194,22 +143489,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28356] = 7, + [28068] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2764), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1138), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2750), 1, + anon_sym_EQ, + STATE(1130), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2413), 19, - anon_sym_EQ, + ACTIONS(2041), 18, anon_sym_LPAREN, anon_sym_AMP, anon_sym_AMP_AMP, @@ -144228,10 +143523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2415), 24, + ACTIONS(2043), 26, anon_sym_DOT, anon_sym_LPAREN_LT, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144253,115 +143550,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - [28422] = 8, + [28137] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2768), 1, - anon_sym_EQ, - STATE(1139), 3, + STATE(1131), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2766), 4, + ACTIONS(2021), 20, + sym_at_ident, + sym_type_ident, + sym_ct_type_ident, + sym_at_type_ident, anon_sym_DOT, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACE, - ACTIONS(2099), 18, + anon_sym_GT_RPAREN, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_STAR, - anon_sym_QMARK, anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2101), 22, - anon_sym_LPAREN_LT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - [28490] = 21, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(11), 1, - sym_ident, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(17), 1, - anon_sym_tlocal, - ACTIONS(25), 1, - anon_sym_fn, - ACTIONS(31), 1, - anon_sym_const, - ACTIONS(59), 1, - anon_sym_DOLLARvatype, - STATE(1052), 1, - sym_module_type_ident, - STATE(1112), 1, - sym_base_type, - STATE(1131), 1, - sym_base_type_name, - STATE(1194), 1, - sym_global_storage, - STATE(1487), 1, - sym_module_resolution, - STATE(1500), 1, - aux_sym__module_path, - STATE(1977), 1, - sym_type, - ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1140), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - STATE(960), 4, - sym_const_declaration, - sym_global_declaration, - sym_func_declaration, - sym_func_definition, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2019), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -144386,58 +143609,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28584] = 24, + [28202] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + STATE(1132), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2071), 20, + sym_at_ident, sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARvatype, - ACTIONS(2738), 1, - sym_ident, - ACTIONS(2740), 1, - sym_ct_ident, - ACTIONS(2742), 1, - sym_hash_ident, - ACTIONS(2744), 1, sym_ct_type_ident, - ACTIONS(2748), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, - anon_sym_AMP, - ACTIONS(2770), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, - sym_module_type_ident, - STATE(1237), 1, - sym_base_type_name, - STATE(1357), 1, - sym_type, - STATE(1397), 1, - sym__parameter, - STATE(1487), 1, - sym_module_resolution, - STATE(1510), 1, - sym_parameter, - STATE(1568), 1, - aux_sym__module_path, - STATE(2038), 1, - sym__parameters, - ACTIONS(171), 3, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1141), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(137), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2069), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -144462,58 +143668,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28684] = 24, + [28267] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + STATE(1133), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2017), 20, + sym_at_ident, sym_type_ident, - ACTIONS(173), 1, - anon_sym_DOLLARvatype, - ACTIONS(2738), 1, - sym_ident, - ACTIONS(2740), 1, - sym_ct_ident, - ACTIONS(2742), 1, - sym_hash_ident, - ACTIONS(2744), 1, sym_ct_type_ident, - ACTIONS(2748), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, - anon_sym_AMP, - ACTIONS(2772), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, - sym_module_type_ident, - STATE(1237), 1, - sym_base_type_name, - STATE(1357), 1, - sym_type, - STATE(1397), 1, - sym__parameter, - STATE(1487), 1, - sym_module_resolution, - STATE(1510), 1, - sym_parameter, - STATE(1568), 1, - aux_sym__module_path, - STATE(2255), 1, - sym__parameters, - ACTIONS(171), 3, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1142), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(137), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2015), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -144538,57 +143727,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28784] = 23, + [28332] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1134), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2051), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(59), 1, - anon_sym_DOLLARvatype, - ACTIONS(2756), 1, - sym_ident, - ACTIONS(2760), 1, - anon_sym_inline, - ACTIONS(2762), 1, - anon_sym_bitstruct, - ACTIONS(2774), 1, - anon_sym_RBRACE, - STATE(1052), 1, - sym_module_type_ident, - STATE(1112), 1, - sym_base_type, - STATE(1131), 1, - sym_base_type_name, - STATE(1145), 1, - aux_sym_struct_body_repeat1, - STATE(1205), 1, - sym_struct_member_declaration, - STATE(1297), 1, - sym__struct_or_union, - STATE(1487), 1, - sym_module_resolution, - STATE(1500), 1, - aux_sym__module_path, - STATE(1814), 1, - sym_type, - ACTIONS(33), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(57), 3, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1143), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2049), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -144613,7 +143786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28882] = 24, + [28397] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -144624,43 +143797,43 @@ static const uint16_t ts_small_parse_table[] = { sym_type_ident, ACTIONS(173), 1, anon_sym_DOLLARvatype, - ACTIONS(1233), 1, - anon_sym_RPAREN, - ACTIONS(2738), 1, + ACTIONS(2734), 1, sym_ident, - ACTIONS(2740), 1, + ACTIONS(2736), 1, sym_ct_ident, - ACTIONS(2742), 1, + ACTIONS(2738), 1, sym_hash_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(2748), 1, + ACTIONS(2744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_AMP, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + ACTIONS(2752), 1, + anon_sym_RPAREN, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1357), 1, + STATE(1352), 1, sym_type, - STATE(1397), 1, + STATE(1408), 1, sym__parameter, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1510), 1, - sym_parameter, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(1975), 1, + STATE(1616), 1, + sym_parameter, + STATE(1965), 1, sym__parameters, ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1144), 3, + STATE(1135), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -144689,56 +143862,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [28982] = 22, + [28497] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2776), 1, - sym_ident, - ACTIONS(2779), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(2782), 1, - sym_ct_type_ident, - ACTIONS(2785), 1, - anon_sym_RBRACE, - ACTIONS(2787), 1, - anon_sym_inline, - ACTIONS(2793), 1, - anon_sym_bitstruct, - ACTIONS(2802), 1, + ACTIONS(173), 1, anon_sym_DOLLARvatype, - STATE(1052), 1, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1205), 1, - sym_struct_member_declaration, - STATE(1297), 1, - sym__struct_or_union, - STATE(1487), 1, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(1814), 1, - sym_type, - ACTIONS(2790), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(2799), 3, + STATE(1658), 1, + sym_parameter, + ACTIONS(2754), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1145), 4, + STATE(1136), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_struct_body_repeat1, - ACTIONS(2796), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -144763,58 +143937,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [29078] = 24, + [28595] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(173), 1, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(1247), 1, - anon_sym_RPAREN, - ACTIONS(2738), 1, + ACTIONS(2756), 1, sym_ident, - ACTIONS(2740), 1, - sym_ct_ident, - ACTIONS(2742), 1, - sym_hash_ident, - ACTIONS(2744), 1, - sym_ct_type_ident, - ACTIONS(2748), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, - anon_sym_AMP, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + ACTIONS(2758), 1, + anon_sym_RBRACE, + ACTIONS(2760), 1, + anon_sym_inline, + ACTIONS(2762), 1, + anon_sym_bitstruct, + STATE(1063), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1357), 1, - sym_type, - STATE(1397), 1, - sym__parameter, - STATE(1487), 1, + STATE(1139), 1, + aux_sym_struct_body_repeat1, + STATE(1201), 1, + sym_struct_member_declaration, + STATE(1303), 1, + sym__struct_or_union, + STATE(1461), 1, sym_module_resolution, - STATE(1510), 1, - sym_parameter, - STATE(1568), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2254), 1, - sym__parameters, - ACTIONS(171), 3, + STATE(1828), 1, + sym_type, + ACTIONS(33), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1146), 3, + STATE(1137), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -144839,57 +144012,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [29178] = 23, + [28693] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(173), 1, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2738), 1, + ACTIONS(2756), 1, sym_ident, - ACTIONS(2740), 1, - sym_ct_ident, - ACTIONS(2742), 1, - sym_hash_ident, - ACTIONS(2744), 1, - sym_ct_type_ident, - ACTIONS(2748), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, - anon_sym_AMP, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + ACTIONS(2760), 1, + anon_sym_inline, + ACTIONS(2762), 1, + anon_sym_bitstruct, + ACTIONS(2764), 1, + anon_sym_RBRACE, + STATE(1063), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1357), 1, - sym_type, - STATE(1397), 1, - sym__parameter, - STATE(1487), 1, + STATE(1143), 1, + aux_sym_struct_body_repeat1, + STATE(1201), 1, + sym_struct_member_declaration, + STATE(1303), 1, + sym__struct_or_union, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1742), 1, - sym_parameter, - ACTIONS(2805), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(171), 3, + STATE(1828), 1, + sym_type, + ACTIONS(33), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1147), 3, + STATE(1138), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -144914,7 +144087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [29276] = 23, + [28791] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -144933,25 +144106,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, ACTIONS(2762), 1, anon_sym_bitstruct, - ACTIONS(2807), 1, + ACTIONS(2766), 1, anon_sym_RBRACE, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1145), 1, + STATE(1144), 1, aux_sym_struct_body_repeat1, - STATE(1205), 1, + STATE(1201), 1, sym_struct_member_declaration, - STATE(1297), 1, + STATE(1303), 1, sym__struct_or_union, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1814), 1, + STATE(1828), 1, sym_type, ACTIONS(33), 2, anon_sym_struct, @@ -144960,7 +144133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1148), 3, + STATE(1139), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -144989,7 +144162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [29374] = 24, + [28889] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145000,43 +144173,43 @@ static const uint16_t ts_small_parse_table[] = { sym_type_ident, ACTIONS(173), 1, anon_sym_DOLLARvatype, - ACTIONS(2738), 1, + ACTIONS(2734), 1, sym_ident, - ACTIONS(2740), 1, + ACTIONS(2736), 1, sym_ct_ident, - ACTIONS(2742), 1, + ACTIONS(2738), 1, sym_hash_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(2748), 1, + ACTIONS(2744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_AMP, - ACTIONS(2809), 1, + ACTIONS(2768), 1, anon_sym_RPAREN, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1357), 1, + STATE(1352), 1, sym_type, - STATE(1397), 1, + STATE(1408), 1, sym__parameter, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1510), 1, - sym_parameter, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2212), 1, + STATE(1616), 1, + sym_parameter, + STATE(2029), 1, sym__parameters, ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1149), 3, + STATE(1140), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145065,79 +144238,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [29474] = 7, + [28989] = 21, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2811), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1150), 3, + ACTIONS(11), 1, + sym_ident, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(17), 1, + anon_sym_tlocal, + ACTIONS(25), 1, + anon_sym_fn, + ACTIONS(31), 1, + anon_sym_const, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1183), 1, + sym_global_storage, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2094), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1141), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2449), 19, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2451), 24, - anon_sym_DOT, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - [29540] = 7, + STATE(1007), 4, + sym_const_declaration, + sym_global_declaration, + sym_func_declaration, + sym_func_definition, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29083] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2813), 1, + ACTIONS(2770), 1, anon_sym_COLON, - STATE(1151), 3, + STATE(1142), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2055), 19, + ACTIONS(2041), 19, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, @@ -145157,7 +144344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2057), 25, + ACTIONS(2043), 25, anon_sym_DOT, anon_sym_LPAREN_LT, anon_sym_LBRACK, @@ -145183,66 +144370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - [29606] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2815), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1152), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2251), 19, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE_PIPE, - ACTIONS(2253), 24, - anon_sym_DOT, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP_AMP, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_BANG_BANG, - [29672] = 23, + [29149] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145261,25 +144389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, ACTIONS(2762), 1, anon_sym_bitstruct, - ACTIONS(2817), 1, + ACTIONS(2772), 1, anon_sym_RBRACE, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1148), 1, + STATE(1144), 1, aux_sym_struct_body_repeat1, - STATE(1205), 1, + STATE(1201), 1, sym_struct_member_declaration, - STATE(1297), 1, + STATE(1303), 1, sym__struct_or_union, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1814), 1, + STATE(1828), 1, sym_type, ACTIONS(33), 2, anon_sym_struct, @@ -145288,7 +144416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1153), 3, + STATE(1143), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145317,7 +144445,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [29770] = 23, + [29247] = 22, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2774), 1, + sym_ident, + ACTIONS(2777), 1, + sym_type_ident, + ACTIONS(2780), 1, + sym_ct_type_ident, + ACTIONS(2783), 1, + anon_sym_RBRACE, + ACTIONS(2785), 1, + anon_sym_inline, + ACTIONS(2791), 1, + anon_sym_bitstruct, + ACTIONS(2800), 1, + anon_sym_DOLLARvatype, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1201), 1, + sym_struct_member_declaration, + STATE(1303), 1, + sym__struct_or_union, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1828), 1, + sym_type, + ACTIONS(2788), 2, + anon_sym_struct, + anon_sym_union, + ACTIONS(2797), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1144), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_struct_body_repeat1, + ACTIONS(2794), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29343] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145328,42 +144530,119 @@ static const uint16_t ts_small_parse_table[] = { sym_type_ident, ACTIONS(173), 1, anon_sym_DOLLARvatype, - ACTIONS(2738), 1, + ACTIONS(1241), 1, + anon_sym_RPAREN, + ACTIONS(2734), 1, sym_ident, - ACTIONS(2740), 1, + ACTIONS(2736), 1, sym_ct_ident, - ACTIONS(2742), 1, + ACTIONS(2738), 1, sym_hash_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(2748), 1, + ACTIONS(2744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_AMP, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1357), 1, + STATE(1352), 1, sym_type, - STATE(1397), 1, + STATE(1408), 1, sym__parameter, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(1742), 1, + STATE(1616), 1, sym_parameter, - ACTIONS(2819), 2, + STATE(1958), 1, + sym__parameters, + ACTIONS(171), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1145), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29443] = 24, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(1237), 1, anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1616), 1, + sym_parameter, + STATE(2217), 1, + sym__parameters, ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1154), 3, + STATE(1146), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145392,23 +144671,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [29868] = 7, + [29543] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2766), 3, - anon_sym_DOT, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + ACTIONS(2803), 1, anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(1155), 3, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1616), 1, + sym_parameter, + STATE(2207), 1, + sym__parameters, + ACTIONS(171), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1147), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2099), 19, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [29643] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2807), 1, anon_sym_EQ, + STATE(1148), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2805), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(2499), 18, anon_sym_LPAREN, anon_sym_AMP, anon_sym_AMP_AMP, @@ -145427,7 +144784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_PIPE_PIPE, - ACTIONS(2101), 22, + ACTIONS(2501), 22, anon_sym_LPAREN_LT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -145450,7 +144807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - [29933] = 23, + [29711] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145461,41 +144818,42 @@ static const uint16_t ts_small_parse_table[] = { sym_type_ident, ACTIONS(173), 1, anon_sym_DOLLARvatype, - ACTIONS(2738), 1, + ACTIONS(2734), 1, sym_ident, - ACTIONS(2740), 1, + ACTIONS(2736), 1, sym_ct_ident, - ACTIONS(2742), 1, + ACTIONS(2738), 1, sym_hash_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(2748), 1, + ACTIONS(2744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_AMP, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1357), 1, + STATE(1352), 1, sym_type, - STATE(1397), 1, + STATE(1408), 1, sym__parameter, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1510), 1, - sym_parameter, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2196), 1, - sym__parameters, + STATE(1658), 1, + sym_parameter, + ACTIONS(2809), 2, + anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1156), 3, + STATE(1149), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145524,7 +144882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30030] = 22, + [29809] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145535,39 +144893,41 @@ static const uint16_t ts_small_parse_table[] = { sym_type_ident, ACTIONS(173), 1, anon_sym_DOLLARvatype, - ACTIONS(2738), 1, + ACTIONS(2734), 1, sym_ident, - ACTIONS(2740), 1, + ACTIONS(2736), 1, sym_ct_ident, - ACTIONS(2742), 1, + ACTIONS(2738), 1, sym_hash_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(2748), 1, + ACTIONS(2744), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2750), 1, + ACTIONS(2746), 1, anon_sym_AMP, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1357), 1, + STATE(1352), 1, sym_type, - STATE(1397), 1, + STATE(1408), 1, sym__parameter, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(1742), 1, + STATE(1616), 1, sym_parameter, + STATE(2155), 1, + sym__parameters, ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1157), 3, + STATE(1150), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145596,50 +144956,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30124] = 19, + [29906] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(2805), 3, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(1151), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2499), 19, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 22, + anon_sym_LPAREN_LT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [29971] = 22, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(59), 1, + ACTIONS(173), 1, anon_sym_DOLLARvatype, - ACTIONS(2756), 1, + ACTIONS(2734), 1, sym_ident, - ACTIONS(2823), 1, - anon_sym_LPAREN, - STATE(1052), 1, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1435), 1, + STATE(1352), 1, sym_type, - STATE(1487), 1, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(1546), 1, - sym_enum_param_list, - ACTIONS(57), 3, + STATE(1658), 1, + sym_parameter, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - ACTIONS(2821), 3, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - STATE(1158), 3, + STATE(1152), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -145664,7 +145086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30211] = 18, + [30065] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145679,28 +145101,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2825), 1, - anon_sym_fn, - STATE(1052), 1, + ACTIONS(2813), 1, + anon_sym_LPAREN, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1336), 1, - sym_typedef_type, - STATE(1487), 1, + STATE(1407), 1, + sym_type, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1531), 1, + sym_enum_param_list, + STATE(1541), 1, aux_sym__module_path, - STATE(1502), 2, - sym_func_typedef, - sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1159), 3, + ACTIONS(2811), 3, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + STATE(1153), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145729,7 +145154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30294] = 18, + [30152] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145744,28 +145169,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2825), 1, + ACTIONS(2815), 1, anon_sym_fn, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1334), 1, + STATE(1311), 1, sym_typedef_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1502), 2, + STATE(1503), 2, sym_func_typedef, sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1160), 3, + STATE(1154), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145794,7 +145219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30377] = 19, + [30235] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145807,31 +145232,31 @@ static const uint16_t ts_small_parse_table[] = { sym_ct_type_ident, ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2827), 1, + ACTIONS(2817), 1, sym_ident, - ACTIONS(2829), 1, + ACTIONS(2819), 1, sym_at_ident, - ACTIONS(2831), 1, - anon_sym_DOT, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1157), 1, + sym_type, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2027), 1, - sym_type, - STATE(2067), 1, + STATE(1862), 1, + sym_macro_header, + STATE(1972), 1, sym__func_macro_name, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1161), 3, + STATE(1155), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145860,7 +145285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30462] = 19, + [30320] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145873,31 +145298,30 @@ static const uint16_t ts_small_parse_table[] = { sym_ct_type_ident, ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2827), 1, + ACTIONS(2756), 1, sym_ident, - ACTIONS(2829), 1, - sym_at_ident, - STATE(1052), 1, + ACTIONS(2815), 1, + anon_sym_fn, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1161), 1, - sym_type, - STATE(1487), 1, + STATE(1332), 1, + sym_typedef_type, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1879), 1, - sym_macro_header, - STATE(1953), 1, - sym__func_macro_name, + STATE(1503), 2, + sym_func_typedef, + sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1162), 3, + STATE(1156), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145926,7 +145350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30547] = 18, + [30403] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -145939,29 +145363,31 @@ static const uint16_t ts_small_parse_table[] = { sym_ct_type_ident, ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2827), 1, + ACTIONS(2817), 1, sym_ident, - ACTIONS(2829), 1, + ACTIONS(2819), 1, sym_at_ident, - STATE(1052), 1, + ACTIONS(2821), 1, + anon_sym_DOT, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2161), 1, + STATE(2182), 1, sym__func_macro_name, - STATE(2179), 1, + STATE(2192), 1, sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1163), 3, + STATE(1157), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -145990,7 +145416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30629] = 18, + [30488] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146005,27 +145431,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2833), 1, - anon_sym_LPAREN, - STATE(1052), 1, + ACTIONS(2823), 1, + anon_sym_RBRACE, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, - sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1306), 1, - sym_fn_parameter_list, - STATE(1487), 1, + STATE(1162), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1218), 1, + sym_bitstruct_member_declaration, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1909), 1, - sym_type, + STATE(2189), 1, + sym_base_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1164), 3, + STATE(1158), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146054,45 +145480,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30711] = 17, + [30570] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2835), 1, - sym_ident, - ACTIONS(2838), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(2841), 1, + ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(2844), 1, - anon_sym_RBRACE, - ACTIONS(2852), 1, + ACTIONS(59), 1, anon_sym_DOLLARvatype, - STATE(1052), 1, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2825), 1, + anon_sym_LPAREN, + STATE(1063), 1, sym_module_type_ident, - STATE(1131), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1223), 1, - sym_bitstruct_member_declaration, - STATE(1487), 1, + STATE(1289), 1, + sym_fn_parameter_list, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2201), 1, - sym_base_type, - ACTIONS(2849), 3, + STATE(1797), 1, + sym_type, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1165), 4, + STATE(1159), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_bitstruct_body_repeat1, - ACTIONS(2846), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -146117,7 +145544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30791] = 18, + [30652] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146130,29 +145557,29 @@ static const uint16_t ts_small_parse_table[] = { sym_ct_type_ident, ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2855), 1, + ACTIONS(2827), 1, sym_ident, - ACTIONS(2857), 1, + ACTIONS(2829), 1, anon_sym_AMP, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1368), 1, + STATE(1361), 1, sym_base_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1826), 1, - sym_type, - STATE(2222), 1, + STATE(1804), 1, sym_foreach_var, + STATE(1805), 1, + sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1166), 3, + STATE(1160), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146181,7 +145608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30873] = 18, + [30734] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146196,27 +145623,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2859), 1, + ACTIONS(2831), 1, anon_sym_RBRACE, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1172), 1, + STATE(1162), 1, aux_sym_bitstruct_body_repeat1, - STATE(1223), 1, + STATE(1218), 1, sym_bitstruct_member_declaration, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2201), 1, + STATE(2189), 1, sym_base_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1167), 3, + STATE(1161), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146245,7 +145672,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [30955] = 18, + [30816] = 17, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2833), 1, + sym_ident, + ACTIONS(2836), 1, + sym_type_ident, + ACTIONS(2839), 1, + sym_ct_type_ident, + ACTIONS(2842), 1, + anon_sym_RBRACE, + ACTIONS(2850), 1, + anon_sym_DOLLARvatype, + STATE(1063), 1, + sym_module_type_ident, + STATE(1128), 1, + sym_base_type_name, + STATE(1218), 1, + sym_bitstruct_member_declaration, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2189), 1, + sym_base_type, + ACTIONS(2847), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1162), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_bitstruct_body_repeat1, + ACTIONS(2844), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30896] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146258,29 +145748,29 @@ static const uint16_t ts_small_parse_table[] = { sym_ct_type_ident, ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2756), 1, + ACTIONS(2827), 1, sym_ident, - ACTIONS(2861), 1, - anon_sym_RBRACE, - STATE(1052), 1, + ACTIONS(2829), 1, + anon_sym_AMP, + STATE(1063), 1, sym_module_type_ident, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1165), 1, - aux_sym_bitstruct_body_repeat1, - STATE(1223), 1, - sym_bitstruct_member_declaration, - STATE(1487), 1, + STATE(1361), 1, + sym_base_type, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2201), 1, - sym_base_type, + STATE(1805), 1, + sym_type, + STATE(2045), 1, + sym_foreach_var, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1168), 3, + STATE(1163), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146309,7 +145799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31037] = 18, + [30978] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146322,29 +145812,29 @@ static const uint16_t ts_small_parse_table[] = { sym_ct_type_ident, ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2855), 1, + ACTIONS(2756), 1, sym_ident, - ACTIONS(2857), 1, - anon_sym_AMP, - STATE(1052), 1, + ACTIONS(2853), 1, + anon_sym_RPAREN, + STATE(1063), 1, sym_module_type_ident, - STATE(1131), 1, - sym_base_type_name, - STATE(1368), 1, + STATE(1068), 1, sym_base_type, - STATE(1487), 1, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1820), 1, - sym_foreach_var, - STATE(1826), 1, + STATE(1645), 1, + sym_enum_param_declaration, + STATE(2187), 1, sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1169), 3, + STATE(1164), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146373,7 +145863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31119] = 18, + [31060] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146388,27 +145878,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2863), 1, - anon_sym_RPAREN, - STATE(1052), 1, + ACTIONS(2855), 1, + anon_sym_RBRACE, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, - sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1158), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1218), 1, + sym_bitstruct_member_declaration, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1671), 1, - sym_enum_param_declaration, - STATE(2158), 1, - sym_type, + STATE(2189), 1, + sym_base_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1170), 3, + STATE(1165), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146437,7 +145927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31201] = 18, + [31142] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146452,27 +145942,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2865), 1, + ACTIONS(2857), 1, anon_sym_RBRACE, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1168), 1, + STATE(1161), 1, aux_sym_bitstruct_body_repeat1, - STATE(1223), 1, + STATE(1218), 1, sym_bitstruct_member_declaration, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2201), 1, + STATE(2189), 1, sym_base_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1171), 3, + STATE(1166), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146501,7 +145991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31283] = 18, + [31224] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146514,29 +146004,29 @@ static const uint16_t ts_small_parse_table[] = { sym_ct_type_ident, ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2756), 1, + ACTIONS(2817), 1, sym_ident, - ACTIONS(2867), 1, - anon_sym_RBRACE, - STATE(1052), 1, + ACTIONS(2819), 1, + sym_at_ident, + STATE(1063), 1, sym_module_type_ident, - STATE(1131), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1165), 1, - aux_sym_bitstruct_body_repeat1, - STATE(1223), 1, - sym_bitstruct_member_declaration, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2201), 1, - sym_base_type, + STATE(2257), 1, + sym__func_macro_name, + STATE(2265), 1, + sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1172), 3, + STATE(1167), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146565,44 +146055,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31365] = 17, + [31306] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(15), 1, sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2869), 1, - sym_const_ident, - ACTIONS(2873), 1, - anon_sym_DOLLARvatype, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + ACTIONS(2859), 1, + anon_sym_inline, + STATE(1063), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2221), 1, + STATE(2173), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1173), 3, + STATE(1168), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -146627,7 +146117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31444] = 17, + [31385] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146636,31 +146126,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(79), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, - anon_sym_DOLLARvatype, - ACTIONS(2875), 1, + ACTIONS(2861), 1, sym_const_ident, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2175), 1, + STATE(2125), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1174), 3, + STATE(1169), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146689,7 +146179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31523] = 17, + [31464] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146704,25 +146194,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1163), 1, + STATE(1167), 1, sym_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1930), 1, + STATE(1786), 1, sym_func_header, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1175), 3, + STATE(1170), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146751,44 +146241,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31602] = 17, + [31543] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(59), 1, - anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2877), 1, - anon_sym_inline, - STATE(1052), 1, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + ACTIONS(2867), 1, + sym_const_ident, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2261), 1, + STATE(2157), 1, sym_type, - ACTIONS(57), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1176), 3, + STATE(1171), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -146813,7 +146303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31681] = 17, + [31622] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -146828,25 +146318,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1163), 1, + STATE(1167), 1, sym_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1904), 1, + STATE(1833), 1, sym_func_header, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1177), 3, + STATE(1172), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -146875,44 +146365,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31760] = 17, + [31701] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(59), 1, - anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2879), 1, - anon_sym_inline, - STATE(1052), 1, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + ACTIONS(2869), 1, + sym_const_ident, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(1994), 1, + STATE(2215), 1, sym_type, - ACTIONS(57), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1178), 3, + STATE(1173), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -146937,44 +146427,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31839] = 17, + [31780] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(15), 1, sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, - anon_sym_DOLLARvatype, - ACTIONS(2881), 1, - sym_const_ident, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2096), 1, + STATE(1777), 1, + sym_enum_param_declaration, + STATE(2187), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1179), 3, + STATE(1174), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -146999,7 +146489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31918] = 17, + [31859] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147008,31 +146498,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(79), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, + ACTIONS(2865), 1, anon_sym_DOLLARvatype, - ACTIONS(2883), 1, + ACTIONS(2871), 1, sym_const_ident, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2164), 1, + STATE(2186), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1180), 3, + STATE(1175), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147061,7 +146551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [31997] = 17, + [31938] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147070,31 +146560,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(79), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, + ACTIONS(2865), 1, anon_sym_DOLLARvatype, - ACTIONS(2885), 1, + ACTIONS(2873), 1, sym_const_ident, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2134), 1, + STATE(2242), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1181), 3, + STATE(1176), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147123,44 +146613,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32076] = 17, + [32017] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(59), 1, - anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2887), 1, - anon_sym_inline, - STATE(1052), 1, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + ACTIONS(2875), 1, + sym_const_ident, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2066), 1, + STATE(2269), 1, sym_type, - ACTIONS(57), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1182), 3, + STATE(1177), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -147185,44 +146675,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32155] = 17, + [32096] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(15), 1, sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, - anon_sym_DOLLARvatype, - ACTIONS(2889), 1, - sym_const_ident, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + ACTIONS(2877), 1, + anon_sym_inline, + STATE(1063), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2193), 1, + STATE(2057), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1183), 3, + STATE(1178), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -147247,7 +146737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32234] = 17, + [32175] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147256,31 +146746,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(79), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, + ACTIONS(2865), 1, anon_sym_DOLLARvatype, - ACTIONS(2891), 1, + ACTIONS(2879), 1, sym_const_ident, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2250), 1, + STATE(2087), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1184), 3, + STATE(1179), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147309,7 +146799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32313] = 17, + [32254] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147324,25 +146814,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + ACTIONS(2881), 1, + anon_sym_inline, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1859), 1, - sym_enum_param_declaration, - STATE(2158), 1, + STATE(2255), 1, sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1185), 3, + STATE(1180), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147371,7 +146861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32392] = 16, + [32333] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147386,23 +146876,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1311), 1, + STATE(1297), 1, sym_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1186), 3, + STATE(1181), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147431,7 +146921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32468] = 16, + [32409] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147446,23 +146936,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1286), 1, + sym_type, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1994), 1, - sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1187), 3, + STATE(1182), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147491,7 +146981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32544] = 16, + [32485] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147504,25 +146994,25 @@ static const uint16_t ts_small_parse_table[] = { sym_ct_type_ident, ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2756), 1, + ACTIONS(2883), 1, sym_ident, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1632), 1, + STATE(2144), 1, sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1188), 3, + STATE(1183), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147551,42 +147041,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32620] = 16, + [32561] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2756), 1, - sym_ident, - ACTIONS(2893), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(2895), 1, + ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(2901), 1, + ACTIONS(59), 1, anon_sym_DOLLARvatype, - STATE(840), 1, - sym_base_type, - STATE(875), 1, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, sym_module_type_ident, - STATE(895), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(935), 1, - sym_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1543), 1, + STATE(1541), 1, aux_sym__module_path, - ACTIONS(2899), 3, + STATE(1924), 1, + sym_type, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1189), 3, + STATE(1184), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2897), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -147611,7 +147101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32696] = 16, + [32637] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147626,23 +147116,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1954), 1, + STATE(2025), 1, sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1190), 3, + STATE(1185), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147671,7 +147161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32772] = 16, + [32713] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147680,29 +147170,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(79), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, + ACTIONS(2865), 1, anon_sym_DOLLARvatype, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1509), 1, + STATE(1511), 1, sym_type, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - ACTIONS(2871), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1191), 3, + STATE(1186), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147731,7 +147221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32848] = 16, + [32789] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147746,23 +147236,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1301), 1, + STATE(1298), 1, sym_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1192), 3, + STATE(1187), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147791,42 +147281,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [32924] = 16, + [32865] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2885), 1, sym_type_ident, - ACTIONS(15), 1, + ACTIONS(2887), 1, sym_ct_type_ident, - ACTIONS(59), 1, + ACTIONS(2893), 1, anon_sym_DOLLARvatype, - ACTIONS(2756), 1, - sym_ident, - STATE(1052), 1, - sym_module_type_ident, - STATE(1112), 1, + STATE(866), 1, sym_base_type, - STATE(1131), 1, + STATE(871), 1, + sym_module_type_ident, + STATE(894), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1015), 1, + sym_type, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1615), 1, aux_sym__module_path, - STATE(1762), 1, - sym_type, - ACTIONS(57), 3, + ACTIONS(2891), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1193), 3, + STATE(1188), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(2889), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -147851,7 +147341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33000] = 16, + [32941] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -147864,25 +147354,25 @@ static const uint16_t ts_small_parse_table[] = { sym_ct_type_ident, ACTIONS(59), 1, anon_sym_DOLLARvatype, - ACTIONS(2903), 1, + ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(2219), 1, + STATE(2255), 1, sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1194), 3, + STATE(1189), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -147911,42 +147401,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33076] = 16, + [33017] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(59), 1, - anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1293), 1, - sym_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - ACTIONS(57), 3, + STATE(1555), 1, + sym_type, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1195), 3, + STATE(1190), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -147971,42 +147461,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33152] = 16, + [33093] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(59), 1, - anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2100), 1, + STATE(1568), 1, sym_type, - ACTIONS(57), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1196), 3, + STATE(1191), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -148031,7 +147521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33228] = 16, + [33169] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -148046,23 +147536,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1068), 1, sym_base_type, - STATE(1131), 1, + STATE(1128), 1, sym_base_type_name, - STATE(1323), 1, - sym_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1541), 1, aux_sym__module_path, + STATE(2173), 1, + sym_type, ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1197), 3, + STATE(1192), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -148091,42 +147581,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33304] = 16, + [33245] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(59), 1, - anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1307), 1, - sym_type, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - ACTIONS(57), 3, + STATE(1581), 1, + sym_type, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1198), 3, + STATE(1193), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -148151,42 +147641,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33380] = 16, + [33321] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, + ACTIONS(2740), 1, sym_ct_type_ident, - ACTIONS(59), 1, - anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - STATE(1052), 1, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, sym_module_type_ident, - STATE(1112), 1, + STATE(1224), 1, sym_base_type, - STATE(1131), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1500), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2066), 1, + STATE(1593), 1, sym_type, - ACTIONS(57), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1199), 3, + STATE(1194), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -148211,42 +147701,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33456] = 16, + [33397] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(15), 1, sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, - anon_sym_DOLLARvatype, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1570), 1, + STATE(1971), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1200), 3, + STATE(1195), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -148271,42 +147761,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33532] = 16, + [33473] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(15), 1, sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, - anon_sym_DOLLARvatype, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1581), 1, + STATE(1686), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1201), 3, + STATE(1196), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -148331,7 +147821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33608] = 16, + [33549] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -148340,29 +147830,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(79), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(2740), 1, sym_ct_type_ident, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, + ACTIONS(2865), 1, anon_sym_DOLLARvatype, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1222), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(1592), 1, + STATE(1605), 1, sym_type, - ACTIONS(2871), 3, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1202), 3, + STATE(1197), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -148391,42 +147881,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33684] = 16, + [33625] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(15), 1, sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, - anon_sym_DOLLARvatype, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1285), 1, + sym_type, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1605), 1, - sym_type, - ACTIONS(2871), 3, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1203), 3, + STATE(1198), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -148451,42 +147941,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33760] = 16, + [33701] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(13), 1, sym_type_ident, - ACTIONS(2744), 1, + ACTIONS(15), 1, sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, ACTIONS(2756), 1, sym_ident, - ACTIONS(2873), 1, - anon_sym_DOLLARvatype, - STATE(1226), 1, - sym_base_type, - STATE(1229), 1, + STATE(1063), 1, sym_module_type_ident, - STATE(1237), 1, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, sym_base_type_name, - STATE(1487), 1, + STATE(1331), 1, + sym_type, + STATE(1461), 1, sym_module_resolution, - STATE(1568), 1, + STATE(1541), 1, aux_sym__module_path, - STATE(1616), 1, - sym_type, - ACTIONS(2871), 3, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - STATE(1204), 3, + STATE(1199), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(137), 24, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -148511,18 +148001,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33836] = 6, + [33777] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1205), 3, + STATE(1200), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2907), 7, + ACTIONS(2897), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148530,7 +148020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2905), 29, + ACTIONS(2895), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -148560,18 +148050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33891] = 6, + [33832] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1206), 3, + STATE(1201), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2911), 7, + ACTIONS(2901), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148579,7 +148069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2909), 29, + ACTIONS(2899), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -148609,18 +148099,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [33946] = 6, + [33887] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1207), 3, + STATE(1202), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2915), 7, + ACTIONS(2905), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148628,7 +148118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2913), 29, + ACTIONS(2903), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -148658,18 +148148,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34001] = 6, + [33942] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1208), 3, + STATE(1203), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2369), 7, + ACTIONS(2217), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148677,7 +148167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2371), 29, + ACTIONS(2219), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -148707,18 +148197,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34056] = 6, + [33997] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1209), 3, + STATE(1204), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2919), 7, + ACTIONS(2909), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148726,7 +148216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2917), 29, + ACTIONS(2907), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -148756,18 +148246,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34111] = 6, + [34052] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1210), 3, + STATE(1205), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2923), 7, + ACTIONS(2913), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148775,7 +148265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2921), 29, + ACTIONS(2911), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -148805,18 +148295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34166] = 6, + [34107] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1211), 3, + STATE(1206), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2927), 7, + ACTIONS(2917), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148824,7 +148314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2925), 29, + ACTIONS(2915), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -148854,18 +148344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34221] = 6, + [34162] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1212), 3, + STATE(1207), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2393), 7, + ACTIONS(2361), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148873,7 +148363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2395), 29, + ACTIONS(2363), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -148903,18 +148393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34276] = 6, + [34217] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1213), 3, + STATE(1208), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2931), 7, + ACTIONS(2921), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148922,7 +148412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2929), 29, + ACTIONS(2919), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -148952,18 +148442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34331] = 6, + [34272] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1214), 3, + STATE(1209), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2493), 7, + ACTIONS(2925), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -148971,7 +148461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2495), 29, + ACTIONS(2923), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -149001,18 +148491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34386] = 6, + [34327] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1215), 3, + STATE(1210), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2935), 7, + ACTIONS(2309), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -149020,7 +148510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2933), 29, + ACTIONS(2311), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -149050,18 +148540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34441] = 6, + [34382] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1216), 3, + STATE(1211), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2147), 7, + ACTIONS(2929), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -149069,7 +148559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2149), 29, + ACTIONS(2927), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -149099,18 +148589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34496] = 6, + [34437] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1217), 3, + STATE(1212), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2939), 7, + ACTIONS(2933), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -149118,7 +148608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2937), 29, + ACTIONS(2931), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -149148,18 +148638,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34551] = 6, + [34492] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1218), 3, + STATE(1213), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2943), 7, + ACTIONS(2241), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -149167,7 +148657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2941), 29, + ACTIONS(2243), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -149197,18 +148687,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34606] = 6, + [34547] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1219), 3, + STATE(1214), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2947), 7, + ACTIONS(2937), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -149216,7 +148706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2945), 29, + ACTIONS(2935), 29, sym_ident, anon_sym_inline, anon_sym_struct, @@ -149246,18 +148736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34661] = 6, + [34602] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1220), 3, + STATE(1215), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2951), 7, + ACTIONS(2941), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -149265,7 +148755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2949), 25, + ACTIONS(2939), 25, sym_ident, anon_sym_int, anon_sym_typeid, @@ -149291,18 +148781,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34712] = 6, + [34653] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1221), 3, + STATE(1216), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2955), 7, + ACTIONS(2945), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -149310,7 +148800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2953), 25, + ACTIONS(2943), 25, sym_ident, anon_sym_int, anon_sym_typeid, @@ -149336,18 +148826,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34763] = 6, + [34704] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1222), 3, + STATE(1217), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2959), 7, + ACTIONS(2949), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -149355,7 +148845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2957), 25, + ACTIONS(2947), 25, sym_ident, anon_sym_int, anon_sym_typeid, @@ -149381,18 +148871,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34814] = 6, + [34755] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1223), 3, + STATE(1218), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2963), 7, + ACTIONS(2953), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, @@ -149400,7 +148890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2961), 25, + ACTIONS(2951), 25, sym_ident, anon_sym_int, anon_sym_typeid, @@ -149426,25 +148916,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34865] = 6, + [34806] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1224), 3, + STATE(1219), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2967), 6, + ACTIONS(2957), 6, sym_type_ident, sym_ct_type_ident, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2965), 25, + ACTIONS(2955), 25, sym_ident, anon_sym_int, anon_sym_typeid, @@ -149470,25 +148960,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34915] = 6, + [34856] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1225), 3, + STATE(1220), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2971), 6, + ACTIONS(2961), 6, sym_type_ident, sym_ct_type_ident, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, - ACTIONS(2969), 25, + ACTIONS(2959), 25, sym_ident, anon_sym_int, anon_sym_typeid, @@ -149514,32 +149004,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [34965] = 12, + [34906] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1888), 1, + ACTIONS(1717), 1, anon_sym_DOT, - ACTIONS(2973), 1, + ACTIONS(2963), 1, anon_sym_LBRACK, - ACTIONS(2975), 1, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(2977), 1, + ACTIONS(2967), 1, anon_sym_BANG, - ACTIONS(2979), 1, + ACTIONS(2969), 1, anon_sym_LBRACK_LT, - STATE(1228), 1, + STATE(1223), 1, aux_sym_type_repeat1, - STATE(1231), 1, + STATE(1227), 1, sym_type_suffix, - STATE(1226), 3, + STATE(1221), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1890), 11, + ACTIONS(1719), 11, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149551,29 +149041,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - [35014] = 10, + [34955] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1946), 1, + ACTIONS(2971), 1, + anon_sym_LPAREN_LT, + STATE(1242), 1, + sym_generic_arguments, + ACTIONS(1987), 2, anon_sym_DOT, - ACTIONS(2981), 1, anon_sym_LBRACK, - ACTIONS(2984), 1, - anon_sym_STAR, - ACTIONS(2987), 1, - anon_sym_LBRACK_LT, - STATE(1231), 1, - sym_type_suffix, - STATE(1227), 4, + STATE(1222), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_type_repeat1, - ACTIONS(1948), 12, + ACTIONS(1989), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149585,33 +149071,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_STAR, anon_sym_BANG, - [35059] = 12, + anon_sym_LBRACK_LT, + [34996] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1723), 1, + ACTIONS(1922), 1, anon_sym_DOT, ACTIONS(2973), 1, anon_sym_LBRACK, - ACTIONS(2975), 1, + ACTIONS(2976), 1, anon_sym_STAR, ACTIONS(2979), 1, anon_sym_LBRACK_LT, - ACTIONS(2990), 1, - anon_sym_BANG, STATE(1227), 1, - aux_sym_type_repeat1, - STATE(1231), 1, sym_type_suffix, - STATE(1228), 3, + STATE(1223), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1725), 11, + aux_sym_type_repeat1, + ACTIONS(1924), 12, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149623,25 +149108,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - [35108] = 8, + anon_sym_BANG, + [35041] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2992), 1, - anon_sym_LPAREN_LT, - STATE(1236), 1, - sym_generic_arguments, - ACTIONS(1994), 2, + ACTIONS(1964), 1, anon_sym_DOT, + ACTIONS(2963), 1, anon_sym_LBRACK, - STATE(1229), 3, + ACTIONS(2965), 1, + anon_sym_STAR, + ACTIONS(2969), 1, + anon_sym_LBRACK_LT, + ACTIONS(2982), 1, + anon_sym_BANG, + STATE(1221), 1, + aux_sym_type_repeat1, + STATE(1227), 1, + sym_type_suffix, + STATE(1224), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1996), 14, + ACTIONS(1966), 11, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149653,24 +149146,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [35149] = 6, + [35090] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2067), 2, + ACTIONS(2065), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1230), 3, + STATE(1225), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2069), 15, + ACTIONS(2067), 15, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149686,21 +149176,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35185] = 6, + [35126] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2041), 2, + ACTIONS(2019), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1231), 3, + STATE(1226), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2043), 14, + ACTIONS(2021), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149715,64 +149205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35220] = 20, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - ACTIONS(3000), 1, - anon_sym_SEMI, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - STATE(910), 1, - sym_compound_stmt, - STATE(1011), 1, - sym_macro_func_body, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1402), 1, - sym_attributes, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1995), 1, - sym_implies_body, - STATE(1232), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [35283] = 6, + [35161] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2049), 2, + ACTIONS(2031), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1233), 3, + STATE(1227), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2051), 14, + ACTIONS(2033), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149787,21 +149234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35318] = 6, + [35196] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2029), 2, + ACTIONS(2015), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1234), 3, + STATE(1228), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2031), 14, + ACTIONS(2017), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149816,64 +149263,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35353] = 20, + [35231] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3004), 1, - anon_sym_LPAREN, - ACTIONS(3006), 1, - anon_sym_LBRACE, - ACTIONS(3008), 1, - anon_sym_COLON, - STATE(953), 1, - sym_enum_body, - STATE(1243), 1, + ACTIONS(2992), 1, + anon_sym_DOT_DOT_DOT, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1259), 1, - sym_interface_impl, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1308), 1, - sym_enum_spec, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1876), 1, + STATE(1577), 1, sym_attributes, - STATE(1235), 3, + STATE(1229), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35416] = 6, + ACTIONS(2990), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [35288] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2045), 2, + ACTIONS(1987), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1236), 3, + STATE(1230), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2047), 14, + ACTIONS(1989), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149888,21 +149332,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35451] = 6, + [35323] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1994), 2, + ACTIONS(2061), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1237), 3, + STATE(1231), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1996), 14, + ACTIONS(2063), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149917,21 +149361,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35486] = 6, + [35358] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2075), 2, + ACTIONS(2994), 1, + sym_ident, + ACTIONS(2997), 1, + sym_at_ident, + ACTIONS(3000), 1, + sym_at_type_ident, + ACTIONS(3005), 1, + anon_sym_EQ, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1232), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_attributes_repeat1, + ACTIONS(3003), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [35409] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2069), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1238), 3, + STATE(1233), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2077), 14, + ACTIONS(2071), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149946,21 +149427,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35521] = 6, + [35444] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2063), 2, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3007), 1, + anon_sym_COMMA, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3011), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1329), 1, + sym__multi_declaration, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1720), 1, + sym_attributes, + STATE(2128), 1, + sym__assign_right_expr, + STATE(1234), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [35507] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2023), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1239), 3, + STATE(1235), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2065), 14, + ACTIONS(2025), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -149975,21 +149499,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35556] = 6, + [35542] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2071), 2, + ACTIONS(2015), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1240), 3, + STATE(1236), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2073), 14, + ACTIONS(2017), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -150004,21 +149528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35591] = 6, + [35577] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2063), 2, + ACTIONS(2073), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1241), 3, + STATE(1237), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2065), 14, + ACTIONS(2075), 14, sym_ident, sym_ct_ident, sym_hash_ident, @@ -150033,85 +149557,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35626] = 17, + [35612] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - ACTIONS(3012), 1, - anon_sym_DOT_DOT_DOT, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1615), 1, - sym_attributes, - STATE(1242), 3, + ACTIONS(2023), 2, + anon_sym_DOT, + anon_sym_LBRACK, + STATE(1238), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3010), 4, + ACTIONS(2025), 14, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, - [35683] = 15, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [35647] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3016), 1, + ACTIONS(3015), 1, anon_sym_EQ, - STATE(1245), 1, + STATE(1232), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1243), 3, + STATE(1239), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3014), 6, + ACTIONS(3013), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [35736] = 6, + [35700] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -150121,7 +149634,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2049), 2, anon_sym_DOT, anon_sym_LBRACK, - STATE(1244), 3, + STATE(1240), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -150140,2653 +149653,2621 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [35771] = 14, + [35735] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3018), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(3021), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(3024), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3029), 1, - anon_sym_EQ, - STATE(1303), 1, + ACTIONS(3017), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_LBRACE, + ACTIONS(3021), 1, + anon_sym_COLON, + STATE(955), 1, + sym_enum_body, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1258), 1, + sym_interface_impl, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1301), 1, + sym_enum_spec, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1245), 4, + STATE(1788), 1, + sym_attributes, + STATE(1241), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_attributes_repeat1, - ACTIONS(3027), 6, + [35798] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2057), 2, + anon_sym_DOT, + anon_sym_LBRACK, + STATE(1242), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2059), 14, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [35822] = 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [35833] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, + ACTIONS(2039), 1, anon_sym_COLON_COLON, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3031), 1, + ACTIONS(3007), 1, anon_sym_COMMA, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3035), 1, + ACTIONS(3023), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1326), 1, - sym__multi_declaration, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1319), 1, + sym__multi_declaration, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1678), 1, + STATE(1667), 1, sym_attributes, - STATE(2039), 1, + STATE(2137), 1, sym__assign_right_expr, - STATE(1246), 3, + STATE(1243), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35885] = 20, + [35896] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - ACTIONS(2994), 1, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3031), 1, - anon_sym_COMMA, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3037), 1, + ACTIONS(3025), 1, anon_sym_SEMI, - STATE(1243), 1, + ACTIONS(3027), 1, + anon_sym_EQ_GT, + STATE(992), 1, + sym_macro_func_body, + STATE(993), 1, + sym_compound_stmt, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1332), 1, - sym__multi_declaration, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1431), 1, + sym_attributes, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1706), 1, - sym_attributes, - STATE(2055), 1, - sym__assign_right_expr, - STATE(1247), 3, + STATE(2152), 1, + sym_implies_body, + STATE(1244), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35948] = 6, + [35959] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2037), 2, - anon_sym_DOT, - anon_sym_LBRACK, - STATE(1248), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2039), 14, + ACTIONS(2984), 1, sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3007), 1, anon_sym_COMMA, + ACTIONS(3009), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, + ACTIONS(3029), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [35983] = 6, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1327), 1, + sym__multi_declaration, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1695), 1, + sym_attributes, + STATE(1946), 1, + sym__assign_right_expr, + STATE(1245), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [36019] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2021), 2, - anon_sym_DOT, - anon_sym_LBRACK, - STATE(1249), 3, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3027), 1, + anon_sym_EQ_GT, + STATE(993), 1, + sym_compound_stmt, + STATE(1010), 1, + sym_macro_func_body, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1472), 1, + sym_attributes, + STATE(1554), 1, + aux_sym__module_path, + STATE(2152), 1, + sym_implies_body, + STATE(1246), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2023), 14, - sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [36018] = 17, + [36079] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1485), 1, + STATE(1454), 1, sym_attributes, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1723), 1, + STATE(1620), 1, sym__assign_right_expr, - ACTIONS(3039), 3, + ACTIONS(3031), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1250), 3, + STATE(1247), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36074] = 19, + [36135] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3031), 1, + ACTIONS(3007), 1, anon_sym_COMMA, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3041), 1, + ACTIONS(3033), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1322), 1, - sym__multi_declaration, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1324), 1, + sym__multi_declaration, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1739), 1, + STATE(1698), 1, sym_attributes, - STATE(2228), 1, + STATE(2044), 1, sym__assign_right_expr, - STATE(1251), 3, + STATE(1248), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36134] = 19, + [36195] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - STATE(910), 1, - sym_compound_stmt, - STATE(913), 1, - sym_macro_func_body, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(732), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1295), 1, + sym_label, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1481), 1, - sym_attributes, - STATE(1487), 1, + STATE(1337), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1995), 1, - sym_implies_body, - STATE(1252), 3, + STATE(1768), 1, + sym_attribute, + STATE(1249), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36194] = 19, + [36252] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3031), 1, - anon_sym_COMMA, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3043), 1, - anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1317), 1, - sym__multi_declaration, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1732), 1, + STATE(1577), 1, sym_attributes, - STATE(2194), 1, - sym__assign_right_expr, - STATE(1253), 3, + STATE(1250), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36254] = 15, + ACTIONS(2990), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [36303] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1561), 1, + STATE(1492), 1, sym_attributes, - STATE(1254), 3, + STATE(1554), 1, + aux_sym__module_path, + STATE(1251), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3045), 4, + ACTIONS(3041), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - [36305] = 15, + [36354] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3043), 1, + anon_sym_LBRACE, + STATE(488), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1299), 1, + sym_label, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1342), 1, + sym_paren_cond, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1800), 1, + sym_attribute, + STATE(1252), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [36411] = 17, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - STATE(1243), 1, + ACTIONS(3047), 1, + anon_sym_EQ, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1615), 1, + STATE(1512), 1, sym_attributes, - STATE(1255), 3, + STATE(1554), 1, + aux_sym__module_path, + STATE(1849), 1, + sym_enum_arg, + ACTIONS(3045), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1253), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3010), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [36356] = 18, + [36466] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3004), 1, + ACTIONS(3017), 1, anon_sym_LPAREN, - ACTIONS(3047), 1, + ACTIONS(3049), 1, anon_sym_LBRACE, - STATE(1030), 1, + STATE(1029), 1, sym_struct_body, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1313), 1, + STATE(1306), 1, sym_interface_impl, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1838), 1, + STATE(1885), 1, sym_attributes, - STATE(1256), 3, + STATE(1254), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36413] = 18, + [36523] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3049), 1, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1612), 1, + sym_attributes, + STATE(1255), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3051), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [36574] = 18, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3051), 1, + ACTIONS(3037), 1, anon_sym_LPAREN, ACTIONS(3053), 1, anon_sym_LBRACE, - STATE(434), 1, + STATE(659), 1, sym_switch_body, - STATE(1302), 1, - sym_label, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1291), 1, + sym_label, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1352), 1, + STATE(1348), 1, sym_paren_cond, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1805), 1, + STATE(1888), 1, sym_attribute, - STATE(1257), 3, + STATE(1256), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36470] = 18, + [36631] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3051), 1, + ACTIONS(3037), 1, anon_sym_LPAREN, ACTIONS(3055), 1, anon_sym_LBRACE, - STATE(396), 1, + STATE(380), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1309), 1, + STATE(1294), 1, sym_label, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1343), 1, + STATE(1336), 1, sym_paren_cond, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1763), 1, + STATE(1886), 1, sym_attribute, - STATE(1258), 3, + STATE(1257), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36527] = 18, + [36688] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3006), 1, + ACTIONS(3019), 1, anon_sym_LBRACE, - ACTIONS(3008), 1, + ACTIONS(3021), 1, anon_sym_COLON, - STATE(906), 1, + STATE(1005), 1, sym_enum_body, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1305), 1, + STATE(1308), 1, sym_enum_spec, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1810), 1, + STATE(1757), 1, sym_attributes, - STATE(1259), 3, + STATE(1258), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36584] = 18, + [36745] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3051), 1, - anon_sym_LPAREN, - ACTIONS(3057), 1, - anon_sym_LBRACE, - STATE(664), 1, - sym_switch_body, - STATE(1298), 1, - sym_label, - STATE(1303), 1, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1350), 1, - sym_paren_cond, - STATE(1487), 1, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1490), 1, + sym_attributes, + STATE(1554), 1, aux_sym__module_path, - STATE(1895), 1, - sym_attribute, - STATE(1260), 3, + STATE(1259), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36641] = 15, + ACTIONS(3057), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [36796] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, - sym_module_resolution, - STATE(1527), 1, - sym_attributes, - STATE(1544), 1, - aux_sym__module_path, - STATE(1261), 3, + ACTIONS(1987), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_EQ, + STATE(1260), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3059), 4, + ACTIONS(1989), 12, + sym_ident, + sym_ct_ident, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_EQ, + anon_sym_GT_RPAREN, anon_sym_RPAREN, anon_sym_SEMI, - [36692] = 18, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [36831] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3004), 1, + ACTIONS(3017), 1, anon_sym_LPAREN, ACTIONS(3061), 1, anon_sym_LBRACE, - STATE(947), 1, + STATE(934), 1, sym_fault_body, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1291), 1, - sym_interface_impl, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1309), 1, + sym_interface_impl, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1850), 1, + STATE(1848), 1, sym_attributes, - STATE(1262), 3, + STATE(1261), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36749] = 18, + [36888] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3051), 1, + ACTIONS(3037), 1, anon_sym_LPAREN, ACTIONS(3063), 1, anon_sym_LBRACE, - STATE(736), 1, + STATE(593), 1, sym_switch_body, - STATE(1303), 1, - sym__attribute_name, - STATE(1310), 1, + STATE(1287), 1, sym_label, - STATE(1338), 1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1341), 1, + STATE(1339), 1, sym_paren_cond, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1771), 1, + STATE(1807), 1, sym_attribute, - STATE(1263), 3, + STATE(1262), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36806] = 7, + [36945] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1994), 1, - anon_sym_LBRACK, - ACTIONS(3065), 1, - anon_sym_EQ, - STATE(1264), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1527), 1, + sym_attributes, + STATE(1554), 1, + aux_sym__module_path, + STATE(1263), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1996), 12, - sym_ident, - sym_ct_ident, - anon_sym_DOT, + ACTIONS(3065), 4, anon_sym_COMMA, - anon_sym_GT_RPAREN, + anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [36841] = 15, + [36996] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(522), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1302), 1, + sym_label, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, + STATE(1347), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1520), 1, - sym_attributes, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1265), 3, + STATE(1791), 1, + sym_attribute, + STATE(1264), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3067), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [36892] = 15, + [37053] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - STATE(1243), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3069), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1491), 1, - sym_attributes, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1266), 3, + STATE(1688), 1, + sym_attributes, + STATE(1997), 1, + sym__assign_right_expr, + STATE(1265), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3069), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [36943] = 18, + [37107] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3051), 1, - anon_sym_LPAREN, + ACTIONS(3009), 1, + anon_sym_EQ, ACTIONS(3071), 1, - anon_sym_LBRACE, - STATE(570), 1, - sym_switch_body, - STATE(1303), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, sym__attribute_name, - STATE(1304), 1, - sym_label, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1340), 1, - sym_paren_cond, - STATE(1487), 1, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1861), 1, - sym_attribute, + STATE(1635), 1, + sym_attributes, + STATE(2063), 1, + sym__assign_right_expr, + STATE(1266), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [37161] = 11, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3075), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_LBRACK, + ACTIONS(3081), 1, + anon_sym_SEMI, + STATE(1717), 1, + sym_asm_expr, + STATE(1360), 2, + sym_asm_addr, + sym_paren_expr, STATE(1267), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37000] = 18, + ACTIONS(3073), 6, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + [37203] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3051), 1, - anon_sym_LPAREN, - ACTIONS(3073), 1, + ACTIONS(3083), 1, anon_sym_LBRACE, - STATE(598), 1, - sym_switch_body, - STATE(1303), 1, + STATE(1202), 1, + sym_struct_body, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, sym__attribute_name, - STATE(1314), 1, - sym_label, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1345), 1, - sym_paren_cond, - STATE(1487), 1, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1794), 1, - sym_attribute, + STATE(1801), 1, + sym_attributes, STATE(1268), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37057] = 17, + [37257] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3077), 1, + ACTIONS(3009), 1, anon_sym_EQ, - STATE(1243), 1, + ACTIONS(3085), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1501), 1, - sym_attributes, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1878), 1, - sym_enum_arg, - ACTIONS(3075), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(1630), 1, + sym_attributes, + STATE(1988), 1, + sym__assign_right_expr, STATE(1269), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37112] = 17, + [37311] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3079), 1, + ACTIONS(3087), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1655), 1, + STATE(1637), 1, sym_attributes, - STATE(1990), 1, + STATE(2219), 1, sym__assign_right_expr, STATE(1270), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37166] = 17, + [37365] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3081), 1, - anon_sym_LBRACE, - STATE(1211), 1, - sym_struct_body, - STATE(1243), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3089), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1809), 1, + STATE(1648), 1, sym_attributes, + STATE(2253), 1, + sym__assign_right_expr, STATE(1271), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37220] = 11, + [37419] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, - anon_sym_LPAREN, - ACTIONS(3087), 1, - anon_sym_AMP, - ACTIONS(3089), 1, - anon_sym_LBRACK, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3009), 1, + anon_sym_EQ, ACTIONS(3091), 1, anon_sym_SEMI, - STATE(1668), 1, - sym_asm_expr, - STATE(1367), 2, - sym_asm_addr, - sym_paren_expr, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1655), 1, + sym_attributes, + STATE(1970), 1, + sym__assign_right_expr, STATE(1272), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3083), 6, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - [37262] = 17, + [37473] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, ACTIONS(3093), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1633), 1, + STATE(1663), 1, sym_attributes, - STATE(2042), 1, + STATE(2115), 1, sym__assign_right_expr, STATE(1273), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37316] = 17, + [37527] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, ACTIONS(3095), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1644), 1, + STATE(1666), 1, sym_attributes, - STATE(1962), 1, + STATE(2142), 1, sym__assign_right_expr, STATE(1274), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37370] = 17, + [37581] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, ACTIONS(3097), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1696), 1, + STATE(1675), 1, sym_attributes, - STATE(2006), 1, + STATE(2234), 1, sym__assign_right_expr, STATE(1275), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37424] = 17, + [37635] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3004), 1, - anon_sym_LPAREN, - ACTIONS(3099), 1, + ACTIONS(3009), 1, anon_sym_EQ, - STATE(1243), 1, + ACTIONS(3099), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1327), 1, - sym_interface_impl, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2034), 1, + STATE(1679), 1, sym_attributes, + STATE(2266), 1, + sym__assign_right_expr, STATE(1276), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37478] = 17, + [37689] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, - anon_sym_EQ, ACTIONS(3101), 1, + anon_sym_LPAREN_LT, + ACTIONS(3103), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1328), 1, + sym_generic_module_parameters, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1677), 1, + STATE(2112), 1, sym_attributes, - STATE(2245), 1, - sym__assign_right_expr, STATE(1277), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37532] = 17, + [37743] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3103), 1, + ACTIONS(3105), 1, + anon_sym_COMMA, + ACTIONS(3107), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1282), 1, + aux_sym_import_declaration_repeat1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1683), 1, + STATE(2205), 1, sym_attributes, - STATE(1943), 1, - sym__assign_right_expr, STATE(1278), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37586] = 17, + [37797] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3105), 1, + ACTIONS(3109), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1707), 1, + STATE(1692), 1, sym_attributes, - STATE(2046), 1, + STATE(2010), 1, sym__assign_right_expr, STATE(1279), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37640] = 17, + [37851] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3107), 1, + ACTIONS(3111), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1650), 1, + STATE(1702), 1, sym_attributes, - STATE(1952), 1, + STATE(2072), 1, sym__assign_right_expr, STATE(1280), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37694] = 17, + [37905] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3109), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3113), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1286), 1, - aux_sym_import_declaration_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2072), 1, + STATE(1703), 1, sym_attributes, + STATE(2077), 1, + sym__assign_right_expr, STATE(1281), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37748] = 17, + [37959] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3113), 1, + ACTIONS(3105), 1, + anon_sym_COMMA, + ACTIONS(3115), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1399), 1, + aux_sym_import_declaration_repeat1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1700), 1, + STATE(2259), 1, sym_attributes, - STATE(2020), 1, - sym__assign_right_expr, STATE(1282), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37802] = 17, + [38013] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, + ACTIONS(3017), 1, + anon_sym_LPAREN, + ACTIONS(3117), 1, anon_sym_EQ, - ACTIONS(3115), 1, - anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1320), 1, + sym_interface_impl, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1693), 1, + STATE(2106), 1, sym_attributes, - STATE(1966), 1, - sym__assign_right_expr, STATE(1283), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37856] = 17, + [38067] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3117), 1, + ACTIONS(3119), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1662), 1, + STATE(1696), 1, sym_attributes, - STATE(2119), 1, + STATE(1944), 1, sym__assign_right_expr, STATE(1284), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37910] = 17, + [38121] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3119), 1, - anon_sym_SEMI, - STATE(1243), 1, + ACTIONS(3121), 1, + anon_sym_LBRACE, + STATE(1211), 1, + sym_bitstruct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1708), 1, + STATE(1756), 1, sym_attributes, - STATE(2081), 1, - sym__assign_right_expr, STATE(1285), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37964] = 17, + [38172] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3109), 1, - anon_sym_COMMA, - ACTIONS(3121), 1, - anon_sym_SEMI, - STATE(1243), 1, + ACTIONS(3123), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_bitstruct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1391), 1, - aux_sym_import_declaration_repeat1, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2204), 1, + STATE(1744), 1, sym_attributes, STATE(1286), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38018] = 17, + [38223] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3123), 1, - anon_sym_SEMI, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(605), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, + STATE(1338), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1709), 1, - sym_attributes, - STATE(2086), 1, - sym__assign_right_expr, + STATE(1846), 1, + sym_attribute, STATE(1287), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38072] = 17, + [38274] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3125), 1, - anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1669), 1, + STATE(1793), 1, sym_attributes, - STATE(2144), 1, - sym__assign_right_expr, + ACTIONS(3125), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, STATE(1288), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38126] = 17, + [38323] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3127), 1, - anon_sym_LPAREN_LT, - ACTIONS(3129), 1, - anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1320), 1, - sym_generic_module_parameters, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2030), 1, + STATE(1755), 1, sym_attributes, + ACTIONS(3127), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, STATE(1289), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38180] = 6, + [38372] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1723), 1, - anon_sym_DOT, + ACTIONS(3131), 1, + anon_sym_EQ, + ACTIONS(3133), 1, + anon_sym_LPAREN, + STATE(1343), 1, + sym_attribute_param_list, STATE(1290), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1725), 11, + ACTIONS(3129), 9, sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - [38211] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - ACTIONS(3061), 1, - anon_sym_LBRACE, - STATE(903), 1, - sym_fault_body, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1798), 1, - sym_attributes, - STATE(1291), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38262] = 15, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1939), 1, - sym_attributes, - ACTIONS(3131), 2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - STATE(1292), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38311] = 16, + [38407] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3133), 1, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, anon_sym_LBRACE, - STATE(1217), 1, - sym_bitstruct_body, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(675), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, + STATE(1350), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1873), 1, - sym_attributes, - STATE(1293), 3, + STATE(1930), 1, + sym_attribute, + STATE(1291), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38362] = 10, + [38458] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3087), 1, + ACTIONS(3077), 1, anon_sym_AMP, - ACTIONS(3089), 1, + ACTIONS(3079), 1, anon_sym_LBRACK, ACTIONS(3135), 1, anon_sym_LPAREN, - STATE(1547), 1, + STATE(1356), 1, sym_asm_expr, - STATE(1367), 2, + STATE(1360), 2, sym_asm_addr, sym_paren_expr, - STATE(1294), 3, + STATE(1292), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3083), 6, + ACTIONS(3073), 6, sym_real_literal, sym_integer_literal, sym_ident, sym_ct_ident, sym_const_ident, sym_ct_const_ident, - [38401] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(1727), 1, - anon_sym_DOT, - STATE(1295), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1729), 11, - sym_ident, - sym_ct_ident, - sym_hash_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - [38432] = 10, + [38497] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, - anon_sym_LPAREN, - ACTIONS(3087), 1, + ACTIONS(3077), 1, anon_sym_AMP, - ACTIONS(3089), 1, + ACTIONS(3079), 1, anon_sym_LBRACK, - STATE(1783), 1, + ACTIONS(3135), 1, + anon_sym_LPAREN, + STATE(1610), 1, sym_asm_expr, - STATE(1367), 2, + STATE(1360), 2, sym_asm_addr, sym_paren_expr, - STATE(1296), 3, + STATE(1293), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3083), 6, + ACTIONS(3073), 6, sym_real_literal, sym_integer_literal, sym_ident, sym_ct_ident, sym_const_ident, sym_ct_const_ident, - [38471] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - ACTIONS(3081), 1, - anon_sym_LBRACE, - ACTIONS(3137), 1, - sym_ident, - STATE(1218), 1, - sym_struct_body, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1781), 1, - sym_attributes, - STATE(1297), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38522] = 16, + [38536] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3051), 1, + ACTIONS(3037), 1, anon_sym_LPAREN, - ACTIONS(3057), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - STATE(680), 1, + STATE(347), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1342), 1, + STATE(1341), 1, sym_paren_cond, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1938), 1, - sym_attribute, - STATE(1298), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38573] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - ACTIONS(3139), 1, - anon_sym_EQ, - ACTIONS(3141), 1, - anon_sym_LPAREN, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1992), 1, - sym_attributes, - STATE(1299), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38624] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - ACTIONS(3143), 1, - anon_sym_SEMI, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2149), 1, - sym_attributes, - STATE(1300), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38675] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - ACTIONS(3133), 1, - anon_sym_LBRACE, - STATE(1207), 1, - sym_bitstruct_body, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, + STATE(1922), 1, sym_attribute, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1773), 1, - sym_attributes, - STATE(1301), 3, + STATE(1294), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38726] = 16, + [38587] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3051), 1, + ACTIONS(3037), 1, anon_sym_LPAREN, - ACTIONS(3053), 1, + ACTIONS(3039), 1, anon_sym_LBRACE, - STATE(445), 1, + STATE(748), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1344), 1, + STATE(1340), 1, sym_paren_cond, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1813), 1, + STATE(1778), 1, sym_attribute, - STATE(1302), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38777] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3147), 1, - anon_sym_EQ, - ACTIONS(3149), 1, - anon_sym_LPAREN, - STATE(1351), 1, - sym_attribute_param_list, - STATE(1303), 3, + STATE(1295), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3145), 9, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [38812] = 16, + [38638] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3051), 1, - anon_sym_LPAREN, - ACTIONS(3071), 1, - anon_sym_LBRACE, - STATE(555), 1, - sym_switch_body, - STATE(1303), 1, + ACTIONS(3137), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, STATE(1346), 1, - sym_paren_cond, - STATE(1487), 1, + sym_attribute, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1917), 1, - sym_attribute, - STATE(1304), 3, + STATE(1982), 1, + sym_attributes, + STATE(1296), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38863] = 16, + [38689] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3006), 1, + ACTIONS(3121), 1, anon_sym_LBRACE, - STATE(944), 1, - sym_enum_body, - STATE(1243), 1, + STATE(1205), 1, + sym_bitstruct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1899), 1, + STATE(1795), 1, sym_attributes, - STATE(1305), 3, + STATE(1297), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38914] = 15, + [38740] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - STATE(1243), 1, + ACTIONS(3123), 1, + anon_sym_LBRACE, + STATE(976), 1, + sym_bitstruct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1875), 1, + STATE(1830), 1, sym_attributes, - ACTIONS(3151), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(1306), 3, + STATE(1298), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38963] = 16, + [38791] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3153), 1, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3043), 1, anon_sym_LBRACE, - STATE(940), 1, - sym_bitstruct_body, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(471), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, + STATE(1344), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1829), 1, - sym_attributes, - STATE(1307), 3, + STATE(1810), 1, + sym_attribute, + STATE(1299), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39014] = 16, + [38842] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(1717), 1, + anon_sym_DOT, + STATE(1300), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1719), 11, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + [38873] = 16, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3006), 1, + ACTIONS(3019), 1, anon_sym_LBRACE, - STATE(906), 1, + STATE(1005), 1, sym_enum_body, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1810), 1, + STATE(1757), 1, sym_attributes, - STATE(1308), 3, + STATE(1301), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39065] = 16, + [38924] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3051), 1, + ACTIONS(3037), 1, anon_sym_LPAREN, - ACTIONS(3055), 1, + ACTIONS(3067), 1, anon_sym_LBRACE, - STATE(403), 1, + STATE(545), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1348), 1, + STATE(1349), 1, sym_paren_cond, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1806), 1, + STATE(1881), 1, sym_attribute, - STATE(1309), 3, + STATE(1302), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39116] = 16, + [38975] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3051), 1, - anon_sym_LPAREN, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_LBRACE, - STATE(752), 1, - sym_switch_body, - STATE(1303), 1, + ACTIONS(3139), 1, + sym_ident, + STATE(1209), 1, + sym_struct_body, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1356), 1, - sym_paren_cond, - STATE(1487), 1, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1782), 1, + STATE(1770), 1, + sym_attributes, + STATE(1303), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [39026] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1721), 1, + anon_sym_DOT, + STATE(1304), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1723), 11, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + [39057] = 16, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3141), 1, + anon_sym_EQ, + ACTIONS(3143), 1, + anon_sym_LPAREN, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1310), 3, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2074), 1, + sym_attributes, + STATE(1305), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39167] = 16, + [39108] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3153), 1, + ACTIONS(3049), 1, anon_sym_LBRACE, - STATE(991), 1, - sym_bitstruct_body, - STATE(1243), 1, + STATE(1017), 1, + sym_struct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1755), 1, + STATE(1829), 1, sym_attributes, - STATE(1311), 3, + STATE(1306), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39218] = 10, + [39159] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3087), 1, + ACTIONS(3075), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, anon_sym_AMP, - ACTIONS(3089), 1, + ACTIONS(3079), 1, anon_sym_LBRACK, - ACTIONS(3135), 1, - anon_sym_LPAREN, - STATE(1360), 1, + STATE(1907), 1, sym_asm_expr, - STATE(1367), 2, + STATE(1360), 2, sym_asm_addr, sym_paren_expr, - STATE(1312), 3, + STATE(1307), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3083), 6, + ACTIONS(3073), 6, sym_real_literal, sym_integer_literal, sym_ident, sym_ct_ident, sym_const_ident, sym_ct_const_ident, - [39257] = 16, + [39198] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3047), 1, + ACTIONS(3019), 1, anon_sym_LBRACE, - STATE(925), 1, - sym_struct_body, - STATE(1243), 1, + STATE(1012), 1, + sym_enum_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1892), 1, + STATE(1825), 1, sym_attributes, - STATE(1313), 3, + STATE(1308), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39308] = 16, + [39249] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3051), 1, - anon_sym_LPAREN, - ACTIONS(3073), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - STATE(610), 1, - sym_switch_body, - STATE(1303), 1, + STATE(1001), 1, + sym_fault_body, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1354), 1, - sym_paren_cond, - STATE(1487), 1, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1827), 1, - sym_attribute, - STATE(1314), 3, + STATE(1815), 1, + sym_attributes, + STATE(1309), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39359] = 15, + [39300] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3155), 1, + ACTIONS(3145), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2048), 1, + STATE(1967), 1, sym_attributes, - STATE(1315), 3, + STATE(1310), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39407] = 15, + [39348] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3157), 1, - anon_sym_EQ, - STATE(1243), 1, + ACTIONS(3147), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1945), 1, + STATE(2241), 1, sym_attributes, - STATE(1316), 3, + STATE(1311), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39455] = 15, + [39396] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3159), 1, + ACTIONS(3149), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2127), 1, + STATE(2105), 1, sym_attributes, - STATE(1317), 3, + STATE(1312), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39503] = 15, + [39444] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(3153), 1, + anon_sym_EQ, + STATE(1313), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3151), 10, sym_ident, - ACTIONS(2996), 1, sym_at_ident, - ACTIONS(2998), 1, sym_at_type_ident, - ACTIONS(3161), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(2013), 1, - sym_attributes, - STATE(1318), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [39551] = 6, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [39474] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3165), 1, + ACTIONS(3157), 1, anon_sym_DOT, - STATE(1319), 3, + STATE(1314), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3163), 10, + ACTIONS(3155), 10, sym_real_literal, sym_integer_literal, sym_ident, @@ -152797,870 +152278,902 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK, anon_sym_SEMI, - [39581] = 15, + [39504] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(3161), 1, + anon_sym_EQ, + STATE(1315), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3159), 10, sym_ident, - ACTIONS(2996), 1, sym_at_ident, - ACTIONS(2998), 1, sym_at_type_ident, - ACTIONS(3167), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1243), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [39534] = 15, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3163), 1, + anon_sym_RBRACE, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2098), 1, + STATE(2250), 1, sym_attributes, - STATE(1320), 3, + STATE(1316), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39629] = 15, + [39582] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3169), 1, - anon_sym_RBRACE, - STATE(1243), 1, + ACTIONS(3025), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1973), 1, + STATE(2058), 1, sym_attributes, - STATE(1321), 3, + STATE(1317), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39677] = 15, + [39630] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3171), 1, - anon_sym_SEMI, - STATE(1243), 1, + ACTIONS(3165), 1, + anon_sym_RBRACE, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2275), 1, + STATE(2247), 1, sym_attributes, - STATE(1322), 3, + STATE(1318), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39725] = 15, + [39678] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2996), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3173), 1, - sym_ident, - ACTIONS(3175), 1, + ACTIONS(3167), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2028), 1, + STATE(2043), 1, sym_attributes, - STATE(1323), 3, + STATE(1319), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39773] = 15, + [39726] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3177), 1, - anon_sym_RBRACE, - STATE(1243), 1, + ACTIONS(3169), 1, + anon_sym_EQ, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2078), 1, + STATE(2176), 1, sym_attributes, - STATE(1324), 3, + STATE(1320), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39821] = 15, + [39774] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(3173), 1, + anon_sym_EQ, + STATE(1321), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3171), 10, sym_ident, - ACTIONS(2996), 1, sym_at_ident, - ACTIONS(2998), 1, sym_at_type_ident, - ACTIONS(3179), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1243), 1, + anon_sym_EQ_GT, + [39804] = 15, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3175), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2054), 1, + STATE(2060), 1, sym_attributes, - STATE(1325), 3, + STATE(1322), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39869] = 15, + [39852] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3181), 1, - anon_sym_SEMI, - STATE(1243), 1, + ACTIONS(3177), 1, + anon_sym_RBRACE, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2029), 1, + STATE(2020), 1, sym_attributes, - STATE(1326), 3, + STATE(1323), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39917] = 15, + [39900] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3183), 1, - anon_sym_EQ, - STATE(1243), 1, + ACTIONS(3179), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1959), 1, + STATE(2183), 1, sym_attributes, - STATE(1327), 3, + STATE(1324), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39965] = 15, + [39948] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3185), 1, - anon_sym_SEMI, - STATE(1243), 1, + ACTIONS(3181), 1, + anon_sym_EQ, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2192), 1, + STATE(2022), 1, sym_attributes, - STATE(1328), 3, + STATE(1325), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40013] = 15, + [39996] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3187), 1, + ACTIONS(3183), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2009), 1, + STATE(2240), 1, sym_attributes, - STATE(1329), 3, + STATE(1326), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40061] = 6, + [40044] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3191), 1, - anon_sym_EQ, - STATE(1330), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3189), 10, + ACTIONS(2984), 1, sym_ident, + ACTIONS(2986), 1, sym_at_ident, + ACTIONS(2988), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3185), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [40091] = 6, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2117), 1, + sym_attributes, + STATE(1327), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [40092] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3195), 1, - anon_sym_EQ, - STATE(1331), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3193), 10, + ACTIONS(2984), 1, sym_ident, + ACTIONS(2986), 1, sym_at_ident, + ACTIONS(2988), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3187), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [40121] = 15, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1963), 1, + sym_attributes, + STATE(1328), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [40140] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3197), 1, + ACTIONS(3189), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2223), 1, + STATE(2042), 1, sym_attributes, - STATE(1332), 3, + STATE(1329), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40169] = 15, + [40188] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3199), 1, + ACTIONS(3191), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2263), 1, + STATE(2001), 1, sym_attributes, - STATE(1333), 3, + STATE(1330), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40217] = 15, + [40236] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3201), 1, + ACTIONS(3193), 1, + sym_ident, + ACTIONS(3195), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1946), 1, + STATE(2254), 1, sym_attributes, - STATE(1334), 3, + STATE(1331), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40265] = 15, + [40284] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3000), 1, + ACTIONS(3197), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2139), 1, + STATE(2149), 1, sym_attributes, - STATE(1335), 3, + STATE(1332), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40313] = 15, + [40332] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3203), 1, - anon_sym_SEMI, - STATE(1243), 1, + ACTIONS(3199), 1, + anon_sym_EQ, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2159), 1, + STATE(2154), 1, sym_attributes, - STATE(1336), 3, + STATE(1333), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40361] = 15, + [40380] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3205), 1, - anon_sym_EQ, - STATE(1243), 1, + ACTIONS(3201), 1, + anon_sym_RBRACE, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1353), 1, + STATE(1346), 1, sym_attribute, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2216), 1, + STATE(2160), 1, sym_attributes, - STATE(1337), 3, + STATE(1334), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40409] = 6, + [40428] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3209), 1, + ACTIONS(3205), 1, anon_sym_EQ, - STATE(1338), 3, + STATE(1335), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3207), 10, + ACTIONS(3203), 9, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [40439] = 15, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(2996), 1, - sym_at_ident, - ACTIONS(2998), 1, - sym_at_type_ident, - ACTIONS(3211), 1, - anon_sym_RBRACE, - STATE(1243), 1, - aux_sym_attributes_repeat1, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1353), 1, - sym_attribute, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(2230), 1, - sym_attributes, - STATE(1339), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [40487] = 14, + [40457] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3071), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - STATE(551), 1, + STATE(343), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1886), 1, + STATE(1883), 1, sym_attribute, - STATE(1340), 3, + STATE(1336), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40532] = 14, + [40502] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3063), 1, + ACTIONS(3039), 1, anon_sym_LBRACE, - STATE(750), 1, + STATE(746), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1780), 1, + STATE(1776), 1, sym_attribute, - STATE(1341), 3, + STATE(1337), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40577] = 14, + [40547] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3057), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - STATE(696), 1, + STATE(619), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1750), 1, + STATE(1861), 1, sym_attribute, - STATE(1342), 3, + STATE(1338), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40622] = 14, + [40592] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3055), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - STATE(352), 1, + STATE(603), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1801), 1, + STATE(1837), 1, sym_attribute, - STATE(1343), 3, + STATE(1339), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40667] = 14, + [40637] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3053), 1, + ACTIONS(3039), 1, anon_sym_LBRACE, - STATE(459), 1, + STATE(764), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1822), 1, + STATE(1783), 1, sym_attribute, - STATE(1344), 3, + STATE(1340), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40712] = 14, + [40682] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3073), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - STATE(608), 1, + STATE(363), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1824), 1, + STATE(1820), 1, sym_attribute, - STATE(1345), 3, + STATE(1341), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40757] = 14, + [40727] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3071), 1, + ACTIONS(3043), 1, anon_sym_LBRACE, - STATE(542), 1, + STATE(467), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1757), 1, + STATE(1808), 1, sym_attribute, - STATE(1346), 3, + STATE(1342), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40802] = 6, + [40772] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3215), 1, + ACTIONS(3209), 1, anon_sym_EQ, - STATE(1347), 3, + STATE(1343), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3213), 9, + ACTIONS(3207), 9, sym_ident, sym_at_ident, sym_at_type_ident, @@ -153670,104 +153183,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [40831] = 14, + [40801] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3055), 1, + ACTIONS(3043), 1, anon_sym_LBRACE, - STATE(369), 1, + STATE(425), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1759), 1, + STATE(1816), 1, sym_attribute, - STATE(1348), 3, + STATE(1344), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40876] = 5, + [40846] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1349), 3, + ACTIONS(3213), 1, + anon_sym_EQ, + STATE(1345), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3217), 10, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_SEMI, - [40903] = 14, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(3211), 9, sym_ident, - ACTIONS(2996), 1, sym_at_ident, - ACTIONS(2998), 1, sym_at_type_ident, - ACTIONS(3057), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(678), 1, - sym_switch_body, - STATE(1303), 1, - sym__attribute_name, - STATE(1338), 1, - sym_path_at_type_ident, - STATE(1487), 1, - sym_module_resolution, - STATE(1544), 1, - aux_sym__module_path, - STATE(1931), 1, - sym_attribute, - STATE(1350), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [40948] = 6, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [40875] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3221), 1, + ACTIONS(3217), 1, anon_sym_EQ, - STATE(1351), 3, + STATE(1346), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3219), 9, + ACTIONS(3215), 9, sym_ident, sym_at_ident, sym_at_type_ident, @@ -153777,181 +153260,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [40977] = 14, + [40904] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3053), 1, + ACTIONS(3067), 1, anon_sym_LBRACE, - STATE(443), 1, + STATE(543), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1812), 1, + STATE(1880), 1, sym_attribute, - STATE(1352), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [41022] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3225), 1, - anon_sym_EQ, - STATE(1353), 3, + STATE(1347), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3223), 9, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [41051] = 14, + [40949] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3073), 1, + ACTIONS(3053), 1, anon_sym_LBRACE, - STATE(624), 1, + STATE(673), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1840), 1, + STATE(1910), 1, sym_attribute, - STATE(1354), 3, + STATE(1348), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41096] = 6, + [40994] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3229), 1, - anon_sym_EQ, - STATE(1355), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3227), 9, + ACTIONS(2984), 1, sym_ident, + ACTIONS(2986), 1, sym_at_ident, + ACTIONS(2988), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3067), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [41125] = 14, + STATE(566), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1754), 1, + sym_attribute, + STATE(1349), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [41039] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2996), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2998), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3063), 1, + ACTIONS(3053), 1, anon_sym_LBRACE, - STATE(768), 1, + STATE(691), 1, sym_switch_body, - STATE(1303), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1338), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1544), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1789), 1, + STATE(1748), 1, sym_attribute, - STATE(1356), 3, + STATE(1350), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41170] = 8, + [41084] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3235), 1, + STATE(1351), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3219), 10, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_SEMI, + [41111] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3225), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3237), 1, + ACTIONS(3227), 1, anon_sym_AMP, - ACTIONS(3231), 3, + ACTIONS(3221), 3, sym_ident, sym_ct_ident, sym_hash_ident, - STATE(1357), 3, + STATE(1352), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3233), 4, + ACTIONS(3223), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - [41202] = 5, + [41143] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1358), 3, + STATE(1353), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3239), 9, + ACTIONS(3229), 9, sym_real_literal, sym_integer_literal, sym_ident, @@ -153961,18 +153451,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_AMP, anon_sym_LBRACK, - [41228] = 5, + [41169] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1359), 3, + ACTIONS(3235), 1, + sym_const_ident, + ACTIONS(3237), 1, + anon_sym_DOLLAReval, + STATE(904), 1, + sym_access_ident, + STATE(905), 1, + sym_access_eval, + ACTIONS(3231), 2, + sym_ident, + anon_sym_typeid, + ACTIONS(3233), 2, + sym_at_ident, + sym_hash_ident, + STATE(1354), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [41204] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1355), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3241), 8, + ACTIONS(3239), 8, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_SEMI, @@ -153981,64 +153496,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, - [41253] = 9, + [41229] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_RBRACK, - ACTIONS(3249), 1, + ACTIONS(3247), 1, anon_sym_STAR, - ACTIONS(3245), 2, + ACTIONS(3243), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3247), 2, + ACTIONS(3245), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1961), 2, + STATE(1980), 2, sym__additive_op, sym__shift_op, - STATE(1360), 3, + STATE(1356), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41286] = 11, + [41262] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2712), 1, + ACTIONS(2626), 1, anon_sym_LBRACK, - ACTIONS(2714), 1, + ACTIONS(2628), 1, anon_sym_STAR, - ACTIONS(2718), 1, + ACTIONS(2632), 1, anon_sym_LBRACK_LT, - ACTIONS(2990), 1, + ACTIONS(2967), 1, anon_sym_BANG, - STATE(1066), 1, + STATE(1054), 1, aux_sym_type_repeat1, - STATE(1132), 1, + STATE(1126), 1, sym_type_suffix, - ACTIONS(1725), 2, + ACTIONS(1719), 2, sym_ident, anon_sym_AMP, - STATE(1361), 3, + STATE(1357), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41323] = 5, + [41299] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1362), 3, + STATE(1358), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3249), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [41324] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1359), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -154051,14 +153586,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, - [41348] = 5, + [41349] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1363), 3, + STATE(1360), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -154071,14 +153606,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, - [41373] = 5, + [41374] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1364), 3, + ACTIONS(2626), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_STAR, + ACTIONS(2632), 1, + anon_sym_LBRACK_LT, + ACTIONS(2982), 1, + anon_sym_BANG, + STATE(1126), 1, + sym_type_suffix, + STATE(1357), 1, + aux_sym_type_repeat1, + ACTIONS(1966), 2, + sym_ident, + anon_sym_AMP, + STATE(1361), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [41411] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1362), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -154091,14 +153652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, - [41398] = 5, + [41436] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1365), 3, + STATE(1363), 3, sym_line_comment, sym_doc_comment, sym_block_comment, @@ -154111,717 +153672,754 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, - [41423] = 10, + [41461] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1364), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3259), 7, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [41485] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3261), 1, + sym_ident, ACTIONS(3263), 1, - sym_const_ident, + sym_at_ident, ACTIONS(3265), 1, - anon_sym_DOLLAReval, - STATE(955), 1, - sym_access_ident, - STATE(972), 1, - sym_access_eval, - ACTIONS(3259), 2, - sym_ident, - anon_sym_typeid, - ACTIONS(3261), 2, + sym_type_ident, + ACTIONS(3267), 1, + sym_at_type_ident, + ACTIONS(3269), 1, + sym_const_ident, + STATE(1330), 2, + sym_define_attribute, + sym_define_ident, + STATE(1365), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [41519] = 11, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(75), 1, sym_at_ident, - sym_hash_ident, + ACTIONS(83), 1, + sym_const_ident, + ACTIONS(3271), 1, + sym_ident, + ACTIONS(3273), 1, + sym_type_ident, + STATE(907), 1, + sym__ident_expr, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, STATE(1366), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41458] = 5, + [41555] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, STATE(1367), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3267), 8, + ACTIONS(3275), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN_LT, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [41483] = 11, + [41581] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2712), 1, - anon_sym_LBRACK, - ACTIONS(2714), 1, - anon_sym_STAR, - ACTIONS(2718), 1, - anon_sym_LBRACK_LT, - ACTIONS(2977), 1, - anon_sym_BANG, - STATE(1132), 1, - sym_type_suffix, - STATE(1361), 1, - aux_sym_type_repeat1, - ACTIONS(1890), 2, + ACTIONS(2984), 1, sym_ident, - anon_sym_AMP, + ACTIONS(3277), 1, + sym_type_ident, + ACTIONS(3279), 1, + anon_sym_RPAREN, + STATE(1461), 1, + sym_module_resolution, + STATE(1489), 1, + aux_sym__module_path, + STATE(1501), 1, + sym_path_type_ident, + STATE(1628), 1, + sym_interface, STATE(1368), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41520] = 11, + [41617] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3281), 1, sym_ident, - ACTIONS(3271), 1, + ACTIONS(3283), 1, sym_ct_ident, - ACTIONS(3273), 1, + ACTIONS(3285), 1, anon_sym_DOT, - ACTIONS(3275), 1, + ACTIONS(3287), 1, anon_sym_LBRACE, - STATE(1010), 1, + STATE(959), 1, sym_initializer_list, - STATE(1653), 1, + STATE(1639), 1, sym_local_decl_after_type, - STATE(1983), 1, + STATE(2030), 1, sym__decl_statement_after_type, STATE(1369), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41556] = 9, + [41653] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3265), 1, - anon_sym_DOLLAReval, - STATE(972), 1, - sym_access_eval, - STATE(1004), 1, - sym_access_ident, - ACTIONS(3259), 2, - sym_ident, - anon_sym_typeid, - ACTIONS(3261), 2, - sym_at_ident, - sym_hash_ident, + ACTIONS(85), 1, + anon_sym_DOT, + ACTIONS(91), 1, + anon_sym_LBRACK, + STATE(1375), 1, + aux_sym_param_path_repeat1, + STATE(1435), 1, + sym_param_path_element, + ACTIONS(3289), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACE, STATE(1370), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41588] = 6, + [41685] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - STATE(1371), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3277), 6, + ACTIONS(3291), 1, sym_ident, + ACTIONS(3296), 1, + sym_const_ident, + STATE(1461), 1, + sym_module_resolution, + ACTIONS(3294), 3, sym_at_ident, + sym_type_ident, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [41614] = 11, + STATE(1371), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym__module_path, + [41715] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(3279), 1, - sym_type_ident, ACTIONS(3281), 1, - anon_sym_RPAREN, - STATE(1487), 1, - sym_module_resolution, - STATE(1523), 1, - aux_sym__module_path, - STATE(1524), 1, - sym_path_type_ident, - STATE(1685), 1, - sym_interface, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2178), 1, + sym__decl_statement_after_type, STATE(1372), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41650] = 11, + [41751] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(75), 1, - sym_at_ident, - ACTIONS(83), 1, - sym_const_ident, - ACTIONS(3283), 1, + ACTIONS(3281), 1, sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, ACTIONS(3285), 1, - sym_type_ident, - STATE(962), 1, - sym__ident_expr, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2031), 1, + sym__decl_statement_after_type, STATE(1373), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41686] = 11, + [41787] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(75), 1, - sym_at_ident, - ACTIONS(83), 1, - sym_const_ident, - ACTIONS(3283), 1, + ACTIONS(3281), 1, sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, ACTIONS(3287), 1, - sym_type_ident, - STATE(962), 1, - sym__ident_expr, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(1959), 1, + sym__decl_statement_after_type, STATE(1374), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41722] = 5, + [41823] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1375), 3, + ACTIONS(3298), 1, + anon_sym_DOT, + ACTIONS(3303), 1, + anon_sym_LBRACK, + STATE(1435), 1, + sym_param_path_element, + ACTIONS(3301), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACE, + STATE(1375), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3289), 7, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [41746] = 5, + aux_sym_param_path_repeat1, + [41853] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(1950), 1, + sym__decl_statement_after_type, STATE(1376), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3291), 7, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [41770] = 9, + [41889] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 1, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, anon_sym_DOT, - ACTIONS(91), 1, - anon_sym_LBRACK, - STATE(1385), 1, - aux_sym_param_path_repeat1, - STATE(1451), 1, - sym_param_path_element, - ACTIONS(3293), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2035), 1, + sym__decl_statement_after_type, STATE(1377), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41802] = 10, + [41925] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3237), 1, + anon_sym_DOLLAReval, + STATE(905), 1, + sym_access_eval, + STATE(910), 1, + sym_access_ident, + ACTIONS(3231), 2, sym_ident, - ACTIONS(3297), 1, + anon_sym_typeid, + ACTIONS(3233), 2, sym_at_ident, - ACTIONS(3299), 1, - sym_type_ident, - ACTIONS(3301), 1, - sym_at_type_ident, - ACTIONS(3303), 1, - sym_const_ident, - STATE(1318), 2, - sym_define_attribute, - sym_define_ident, + sym_hash_ident, STATE(1378), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41836] = 6, + [41957] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, STATE(1379), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3305), 6, + ACTIONS(3306), 7, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN_LT, + anon_sym_RPAREN, anon_sym_SEMI, - [41862] = 11, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [41981] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, - sym_ident, + ACTIONS(75), 1, + sym_at_ident, + ACTIONS(83), 1, + sym_const_ident, ACTIONS(3271), 1, - sym_ct_ident, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - STATE(1653), 1, - sym_local_decl_after_type, - STATE(2101), 1, - sym__decl_statement_after_type, + sym_ident, + ACTIONS(3308), 1, + sym_type_ident, + STATE(907), 1, + sym__ident_expr, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, STATE(1380), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41898] = 8, + [42017] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 1, - sym_ident, - ACTIONS(3312), 1, - sym_const_ident, - STATE(1487), 1, - sym_module_resolution, - ACTIONS(3310), 3, - sym_at_ident, - sym_type_ident, - sym_at_type_ident, - STATE(1381), 4, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + STATE(1381), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__module_path, - [41928] = 11, + ACTIONS(3310), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [42043] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(3271), 1, - sym_ct_ident, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - STATE(1653), 1, - sym_local_decl_after_type, - STATE(2049), 1, - sym__decl_statement_after_type, + ACTIONS(3312), 1, + sym_at_ident, + ACTIONS(3314), 1, + sym_type_ident, + STATE(1443), 1, + sym_define_path_at_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1463), 1, + aux_sym__module_path, STATE(1382), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41964] = 11, + [42076] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, - sym_ident, - ACTIONS(3271), 1, - sym_ct_ident, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - STATE(1653), 1, - sym_local_decl_after_type, - STATE(2180), 1, - sym__decl_statement_after_type, + ACTIONS(3318), 1, + anon_sym_COMMA, + STATE(1437), 1, + aux_sym__multi_declaration_repeat1, STATE(1383), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42000] = 11, + ACTIONS(3316), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [42103] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3322), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1390), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, sym_ident, - ACTIONS(3271), 1, - sym_ct_ident, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - STATE(1653), 1, - sym_local_decl_after_type, - STATE(1968), 1, - sym__decl_statement_after_type, + anon_sym_int, STATE(1384), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42036] = 8, + [42134] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3314), 1, + STATE(1385), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3324), 6, anon_sym_DOT, - ACTIONS(3319), 1, - anon_sym_LBRACK, - STATE(1451), 1, - sym_param_path_element, - ACTIONS(3317), 3, anon_sym_COMMA, anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, - STATE(1385), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_param_path_repeat1, - [42066] = 11, + [42157] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, - sym_ident, - ACTIONS(3271), 1, - sym_ct_ident, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - STATE(1653), 1, - sym_local_decl_after_type, - STATE(2043), 1, - sym__decl_statement_after_type, STATE(1386), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42102] = 5, + ACTIONS(3326), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + [42180] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3328), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1438), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1387), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2527), 6, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [42125] = 8, + [42211] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - ACTIONS(3322), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_BQUOTE, + STATE(831), 1, + aux_sym_string_expr_repeat1, + STATE(2055), 1, + sym_string_expr, + STATE(874), 2, + sym_string_literal, + sym_raw_string_literal, STATE(1388), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42154] = 6, + [42242] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3326), 1, - anon_sym_COMMA, - ACTIONS(3324), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - STATE(1389), 4, + ACTIONS(3330), 1, + anon_sym_RBRACE, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + STATE(1392), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1389), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__multi_declaration_repeat1, - [42179] = 9, + [42273] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3331), 1, + ACTIONS(3328), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1444), 1, + STATE(1440), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, STATE(1390), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42210] = 6, + [42304] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_COMMA, - ACTIONS(3333), 4, + ACTIONS(3336), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1394), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - STATE(1391), 4, + anon_sym_int, + STATE(1391), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_import_declaration_repeat1, - [42235] = 8, + [42335] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3338), 1, - anon_sym_RBRACE, - ACTIONS(3340), 1, + ACTIONS(3332), 1, anon_sym_case, - ACTIONS(3343), 1, + ACTIONS(3334), 1, anon_sym_default, - STATE(1699), 2, + ACTIONS(3338), 1, + anon_sym_RBRACE, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, sym_case_stmt, sym_default_stmt, - STATE(1392), 4, + STATE(1392), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_switch_body_repeat1, - [42264] = 9, + [42366] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, + ACTIONS(3340), 1, anon_sym_RBRACE, - ACTIONS(3348), 1, - anon_sym_case, - ACTIONS(3350), 1, - anon_sym_default, - STATE(1396), 1, - aux_sym_switch_body_repeat1, - STATE(1699), 2, - sym_case_stmt, - sym_default_stmt, + STATE(1267), 1, + sym_asm_instr, + STATE(1395), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1393), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42295] = 10, + [42397] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2543), 1, - anon_sym_COMMA, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3352), 1, - anon_sym_GT_RPAREN, - STATE(1010), 1, - sym_initializer_list, - STATE(1628), 1, - aux_sym__generic_arg_list_repeat1, + ACTIONS(3340), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1394), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42328] = 9, + [42428] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3342), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1399), 1, + STATE(1440), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, STATE(1395), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42359] = 9, + [42459] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_case, - ACTIONS(3350), 1, - anon_sym_default, - ACTIONS(3356), 1, - anon_sym_RBRACE, - STATE(1392), 1, - aux_sym_switch_body_repeat1, - STATE(1699), 2, - sym_case_stmt, - sym_default_stmt, STATE(1396), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42390] = 8, + ACTIONS(3344), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COLON, + [42482] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - STATE(1642), 1, - sym__assign_right_expr, - STATE(1643), 1, - sym_parameter_default, - ACTIONS(3358), 3, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + ACTIONS(3346), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -154829,497 +154427,499 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [42419] = 9, + [42511] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3360), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1401), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + ACTIONS(3348), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1398), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42450] = 9, + [42540] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3360), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1437), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3350), 4, sym_ident, - anon_sym_int, - STATE(1399), 3, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + STATE(1399), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [42481] = 6, + aux_sym_import_declaration_repeat1, + [42565] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3355), 1, + anon_sym_RBRACE, + STATE(1403), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, STATE(1400), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3362), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [42506] = 9, + [42596] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, + ACTIONS(3318), 1, + anon_sym_COMMA, STATE(1437), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, + aux_sym__multi_declaration_repeat1, STATE(1401), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42537] = 10, + ACTIONS(3357), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [42623] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - ACTIONS(3366), 1, - anon_sym_SEMI, - STATE(910), 1, - sym_compound_stmt, - STATE(931), 1, - sym_macro_func_body, - STATE(1995), 1, - sym_implies_body, + ACTIONS(3359), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1405), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1402), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42570] = 9, + [42654] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3332), 1, anon_sym_case, - ACTIONS(3350), 1, + ACTIONS(3334), 1, anon_sym_default, - ACTIONS(3368), 1, + ACTIONS(3361), 1, anon_sym_RBRACE, - STATE(1407), 1, + STATE(1436), 1, aux_sym_switch_body_repeat1, - STATE(1699), 2, + STATE(1661), 2, sym_case_stmt, sym_default_stmt, STATE(1403), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42601] = 10, + [42685] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(3363), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1406), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, sym_ident, - ACTIONS(3279), 1, - sym_type_ident, - STATE(1487), 1, - sym_module_resolution, - STATE(1523), 1, - aux_sym__module_path, - STATE(1524), 1, - sym_path_type_ident, - STATE(1767), 1, - sym_interface, + anon_sym_int, STATE(1404), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42634] = 5, + [42716] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3363), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1405), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3370), 6, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COLON, - [42657] = 9, + [42747] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, + ACTIONS(3365), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1410), 1, + STATE(1440), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, STATE(1406), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42688] = 9, + [42778] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2813), 1, + anon_sym_LPAREN, + STATE(1485), 1, + sym_enum_param_list, + STATE(1407), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3367), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [42805] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1724), 1, + sym__assign_right_expr, + STATE(1725), 1, + sym_parameter_default, + ACTIONS(3369), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1408), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [42834] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3332), 1, anon_sym_case, - ACTIONS(3350), 1, + ACTIONS(3334), 1, anon_sym_default, - ACTIONS(3374), 1, + ACTIONS(3371), 1, anon_sym_RBRACE, - STATE(1392), 1, + STATE(1413), 1, aux_sym_switch_body_repeat1, - STATE(1699), 2, + STATE(1661), 2, sym_case_stmt, sym_default_stmt, - STATE(1407), 3, + STATE(1409), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42719] = 6, + [42865] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - STATE(1408), 3, + ACTIONS(3318), 1, + anon_sym_COMMA, + STATE(1383), 1, + aux_sym__multi_declaration_repeat1, + STATE(1410), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3376), 5, + ACTIONS(3373), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LPAREN_LT, anon_sym_SEMI, - [42744] = 9, + [42892] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, + ACTIONS(3375), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1412), 1, + STATE(1415), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1409), 3, + STATE(1411), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42775] = 9, + [42923] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1437), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3281), 1, sym_ident, - anon_sym_int, - STATE(1410), 3, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1697), 1, + sym_local_decl_after_type, + STATE(1412), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42806] = 7, + [42956] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2579), 1, - anon_sym_LPAREN_LT, - STATE(1529), 1, - sym_generic_arguments, - STATE(1411), 3, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3377), 1, + anon_sym_RBRACE, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1413), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3380), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [42833] = 9, + [42987] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(3379), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1437), 1, + STATE(1416), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1412), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [42864] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3386), 1, - anon_sym_COMMA, - STATE(1448), 1, - aux_sym__multi_declaration_repeat1, - STATE(1413), 3, + STATE(1414), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3384), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [42891] = 9, + [43018] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_case, - ACTIONS(3350), 1, - anon_sym_default, - ACTIONS(3388), 1, + ACTIONS(3379), 1, anon_sym_RBRACE, - STATE(1416), 1, - aux_sym_switch_body_repeat1, - STATE(1699), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1414), 3, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1415), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42922] = 9, + [43049] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3390), 1, + ACTIONS(3381), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1418), 1, + STATE(1440), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1415), 3, + STATE(1416), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42953] = 9, + [43080] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3332), 1, anon_sym_case, - ACTIONS(3350), 1, + ACTIONS(3334), 1, anon_sym_default, - ACTIONS(3392), 1, + ACTIONS(3383), 1, anon_sym_RBRACE, - STATE(1392), 1, + STATE(1420), 1, aux_sym_switch_body_repeat1, - STATE(1699), 2, + STATE(1661), 2, sym_case_stmt, sym_default_stmt, - STATE(1416), 3, + STATE(1417), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42984] = 9, + [43111] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3394), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1420), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, - STATE(1417), 3, + STATE(1418), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43015] = 9, + ACTIONS(3385), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COLON, + [43134] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3394), 1, + ACTIONS(3387), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1437), 1, + STATE(1423), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1418), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [43046] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, STATE(1419), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3396), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - [43069] = 9, + [43165] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3389), 1, anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1437), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, STATE(1420), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43100] = 5, + [43196] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -155330,559 +154930,543 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3400), 6, + ACTIONS(3391), 6, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COLON, - [43123] = 9, + [43219] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_case, - ACTIONS(3350), 1, - anon_sym_default, - ACTIONS(3402), 1, + ACTIONS(3393), 1, anon_sym_RBRACE, - STATE(1425), 1, - aux_sym_switch_body_repeat1, - STATE(1699), 2, - sym_case_stmt, - sym_default_stmt, + STATE(1267), 1, + sym_asm_instr, + STATE(1424), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1422), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43154] = 7, + [43250] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, - anon_sym_COMMA, - STATE(1450), 1, - aux_sym__multi_declaration_repeat1, + ACTIONS(3393), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1423), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3404), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [43181] = 9, + [43281] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, + ACTIONS(3395), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1429), 1, + STATE(1440), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, STATE(1424), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43212] = 9, + [43312] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3332), 1, anon_sym_case, - ACTIONS(3350), 1, + ACTIONS(3334), 1, anon_sym_default, - ACTIONS(3408), 1, + ACTIONS(3397), 1, anon_sym_RBRACE, - STATE(1392), 1, + STATE(1428), 1, aux_sym_switch_body_repeat1, - STATE(1699), 2, + STATE(1661), 2, sym_case_stmt, sym_default_stmt, STATE(1425), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43243] = 9, + [43343] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_case, - ACTIONS(3350), 1, - anon_sym_default, - ACTIONS(3410), 1, + ACTIONS(3399), 1, anon_sym_RBRACE, - STATE(1432), 1, - aux_sym_switch_body_repeat1, - STATE(1699), 2, - sym_case_stmt, - sym_default_stmt, + STATE(1267), 1, + sym_asm_instr, + STATE(1430), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1426), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43274] = 9, + [43374] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(67), 1, - anon_sym_DQUOTE, - ACTIONS(69), 1, - anon_sym_BQUOTE, - STATE(834), 1, - aux_sym_string_expr_repeat1, - STATE(2032), 1, - sym_string_expr, - STATE(878), 2, - sym_string_literal, - sym_raw_string_literal, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3401), 1, + anon_sym_RBRACE, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, STATE(1427), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43305] = 9, + [43405] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3403), 1, anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1430), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, STATE(1428), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43336] = 9, + [43436] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3405), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1437), 1, + STATE(1432), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, STATE(1429), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43367] = 9, + [43467] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, + ACTIONS(3405), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1437), 1, + STATE(1440), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, STATE(1430), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43398] = 10, + [43498] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, - sym_ident, - ACTIONS(3271), 1, - sym_ct_ident, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - STATE(1647), 1, - sym_local_decl_after_type, + ACTIONS(3027), 1, + anon_sym_EQ_GT, + ACTIONS(3407), 1, + anon_sym_SEMI, + STATE(993), 1, + sym_compound_stmt, + STATE(1008), 1, + sym_macro_func_body, + STATE(2152), 1, + sym_implies_body, STATE(1431), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43431] = 9, + [43531] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_case, - ACTIONS(3350), 1, - anon_sym_default, - ACTIONS(3416), 1, + ACTIONS(3409), 1, anon_sym_RBRACE, - STATE(1392), 1, - aux_sym_switch_body_repeat1, - STATE(1699), 2, - sym_case_stmt, - sym_default_stmt, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1432), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43462] = 9, + [43562] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3418), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1437), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, + ACTIONS(2541), 1, + anon_sym_COMMA, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3411), 1, + anon_sym_GT_RPAREN, + STATE(959), 1, + sym_initializer_list, + STATE(1723), 1, + aux_sym__generic_arg_list_repeat1, STATE(1433), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43493] = 9, + [43595] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_case, - ACTIONS(3350), 1, - anon_sym_default, - ACTIONS(3420), 1, - anon_sym_RBRACE, - STATE(1438), 1, - aux_sym_switch_body_repeat1, - STATE(1699), 2, - sym_case_stmt, - sym_default_stmt, STATE(1434), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43524] = 7, + ACTIONS(2481), 6, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [43618] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2823), 1, - anon_sym_LPAREN, - STATE(1506), 1, - sym_enum_param_list, STATE(1435), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3422), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [43551] = 9, + ACTIONS(3413), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + [43641] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3424), 1, + ACTIONS(3415), 1, anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1440), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, - STATE(1436), 3, + ACTIONS(3417), 1, + anon_sym_case, + ACTIONS(3420), 1, + anon_sym_default, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1436), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [43582] = 8, + aux_sym_switch_body_repeat1, + [43670] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3429), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3426), 2, + ACTIONS(3425), 1, + anon_sym_COMMA, + ACTIONS(3423), 4, sym_ident, - anon_sym_int, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, STATE(1437), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_asm_block_stmt_repeat1, - [43611] = 9, + aux_sym__multi_declaration_repeat1, + [43695] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_case, - ACTIONS(3350), 1, - anon_sym_default, - ACTIONS(3431), 1, + ACTIONS(3428), 1, anon_sym_RBRACE, - STATE(1392), 1, - aux_sym_switch_body_repeat1, - STATE(1699), 2, - sym_case_stmt, - sym_default_stmt, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, STATE(1438), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43642] = 9, + [43726] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3433), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1441), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, STATE(1439), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43673] = 9, + ACTIONS(3430), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [43751] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3433), 1, + ACTIONS(3435), 1, anon_sym_RBRACE, - STATE(1272), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1437), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3329), 2, + ACTIONS(3432), 2, sym_ident, anon_sym_int, - STATE(1440), 3, + STATE(1440), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [43704] = 9, + aux_sym_asm_block_stmt_repeat1, + [43780] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1437), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, STATE(1441), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43735] = 9, + ACTIONS(3437), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [43805] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3439), 1, anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1433), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, + STATE(1427), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, STATE(1442), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43766] = 8, + [43836] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - ACTIONS(3439), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(2614), 1, + anon_sym_LPAREN_LT, + STATE(1604), 1, + sym_generic_arguments, STATE(1443), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43795] = 9, + ACTIONS(3441), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [43863] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, - anon_sym_RBRACE, - STATE(1272), 1, - sym_asm_instr, - STATE(1437), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1714), 1, - sym_asm_stmt, - ACTIONS(3329), 2, - sym_ident, - anon_sym_int, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + ACTIONS(3443), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1444), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43826] = 10, + [43892] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(3441), 1, - sym_at_ident, - ACTIONS(3443), 1, + ACTIONS(3277), 1, sym_type_ident, - STATE(1411), 1, - sym_define_path_at_ident, - STATE(1462), 1, - aux_sym__module_path, - STATE(1487), 1, + STATE(1461), 1, sym_module_resolution, + STATE(1489), 1, + aux_sym__module_path, + STATE(1501), 1, + sym_path_type_ident, + STATE(1893), 1, + sym_interface, STATE(1445), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43859] = 8, + [43925] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - ACTIONS(3445), 3, + ACTIONS(3318), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + STATE(1401), 1, + aux_sym__multi_declaration_repeat1, STATE(1446), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43888] = 5, + ACTIONS(3445), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [43952] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -155893,34 +155477,34 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3447), 6, + ACTIONS(3447), 5, sym_ident, sym_at_ident, + sym_type_ident, sym_at_type_ident, - anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COLON, - [43911] = 7, + [43974] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, - anon_sym_COMMA, - STATE(1389), 1, - aux_sym__multi_declaration_repeat1, + ACTIONS(3449), 1, + sym_ident, + ACTIONS(3451), 1, + sym_const_ident, + STATE(1443), 1, + sym_path_const_ident, + STATE(1533), 1, + aux_sym__module_path, + STATE(1796), 1, + sym_module_resolution, STATE(1448), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3449), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [43938] = 5, + [44004] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -155931,34 +155515,30 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3451), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - [43961] = 7, + ACTIONS(3453), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [44026] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, - anon_sym_COMMA, - STATE(1389), 1, - aux_sym__multi_declaration_repeat1, STATE(1450), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3453), 4, + ACTIONS(3350), 5, sym_ident, sym_at_ident, sym_at_type_ident, + anon_sym_COMMA, anon_sym_SEMI, - [43988] = 5, + [44048] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -155969,108 +155549,115 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3455), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - [44011] = 5, + ACTIONS(3455), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [44070] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1452), 3, + ACTIONS(3457), 1, + anon_sym_DOLLARcase, + ACTIONS(3460), 1, + anon_sym_DOLLARdefault, + ACTIONS(3463), 1, + anon_sym_DOLLARendswitch, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1452), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3457), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [44033] = 6, + aux_sym__ct_switch_body, + [44098] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - sym_ident, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(2724), 1, + anon_sym_DOT, + ACTIONS(3289), 1, + anon_sym_RPAREN, + STATE(1435), 1, + sym_param_path_element, + STATE(1459), 1, + aux_sym_param_path_repeat1, STATE(1453), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3461), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [44057] = 9, + [44128] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - ACTIONS(3467), 1, - anon_sym_DOLLARendswitch, - STATE(1484), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1728), 1, + sym__assign_right_expr, + ACTIONS(3465), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1454), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44087] = 9, + [44154] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, + ACTIONS(3467), 1, anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3471), 1, anon_sym_DOLLARendswitch, - STATE(1484), 1, + STATE(1452), 1, aux_sym__ct_switch_body, - STATE(1649), 1, + STATE(1631), 1, sym_ct_case_stmt, STATE(1455), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44117] = 5, + [44184] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3473), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, STATE(1456), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3471), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [44139] = 5, + [44214] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -156081,24 +155668,24 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3473), 5, + ACTIONS(3475), 5, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [44161] = 7, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [44236] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - STATE(1727), 1, - sym__assign_right_expr, - ACTIONS(3039), 3, + anon_sym_SLASH_STAR, + ACTIONS(3477), 1, + anon_sym_LPAREN, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3348), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -156106,106 +155693,106 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [44187] = 9, + [44262] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - ACTIONS(3475), 1, - anon_sym_DOLLARendswitch, - STATE(1484), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, - STATE(1459), 3, + ACTIONS(3301), 1, + anon_sym_RPAREN, + ACTIONS(3303), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_DOT, + STATE(1435), 1, + sym_param_path_element, + STATE(1459), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [44217] = 7, + aux_sym_param_path_repeat1, + [44290] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3477), 1, - anon_sym_LPAREN, - ACTIONS(3479), 1, - anon_sym_LBRACK, - ACTIONS(3439), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3484), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, STATE(1460), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44243] = 5, + [44320] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3488), 1, + sym_const_ident, STATE(1461), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3481), 5, + ACTIONS(3486), 4, sym_ident, sym_at_ident, + sym_type_ident, sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [44265] = 9, + [44344] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(3483), 1, - sym_at_ident, - ACTIONS(3485), 1, - sym_type_ident, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1621), 1, + sym__assign_right_expr, + ACTIONS(3031), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1462), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44295] = 9, + [44370] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(3489), 1, + ACTIONS(3490), 1, + sym_at_ident, + ACTIONS(3492), 1, sym_type_ident, - STATE(1411), 1, - sym_define_path_ident, - STATE(1487), 1, - sym_module_resolution, - STATE(1562), 1, + STATE(1371), 1, aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, STATE(1463), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44325] = 5, + [44400] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -156216,13 +155803,13 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3491), 5, + ACTIONS(3494), 5, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_LPAREN_LT, anon_sym_SEMI, - [44347] = 5, + [44422] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -156233,93 +155820,86 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3493), 5, + ACTIONS(3496), 5, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [44369] = 9, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44444] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - ACTIONS(3495), 1, - anon_sym_DOLLARendswitch, - STATE(1484), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, STATE(1466), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44399] = 9, + ACTIONS(3423), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_SEMI, + [44466] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3497), 1, - sym_ident, - ACTIONS(3499), 1, - sym_const_ident, - STATE(1411), 1, - sym_path_const_ident, - STATE(1521), 1, - aux_sym__module_path, - STATE(1777), 1, - sym_module_resolution, STATE(1467), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44429] = 8, + ACTIONS(3498), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44488] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3317), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1627), 1, + sym__assign_right_expr, + ACTIONS(3500), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3319), 1, - anon_sym_LBRACK, - ACTIONS(3501), 1, - anon_sym_DOT, - STATE(1451), 1, - sym_param_path_element, - STATE(1468), 4, + anon_sym_SEMI, + STATE(1468), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_param_path_repeat1, - [44457] = 6, + [44514] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3506), 1, - sym_const_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + ACTIONS(3502), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, STATE(1469), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3504), 4, - sym_ident, - sym_at_ident, - sym_type_ident, - sym_at_type_ident, - [44481] = 5, + [44542] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -156330,68 +155910,69 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3508), 5, + ACTIONS(3504), 5, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_LPAREN_LT, anon_sym_SEMI, - [44503] = 9, + [44564] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - ACTIONS(3510), 1, - anon_sym_DOLLARendswitch, - STATE(1484), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, STATE(1471), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44533] = 5, + ACTIONS(3506), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [44586] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(3027), 1, + anon_sym_EQ_GT, + STATE(993), 1, + sym_compound_stmt, + STATE(1023), 1, + sym_macro_func_body, + STATE(2152), 1, + sym_implies_body, STATE(1472), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3512), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [44555] = 5, + [44616] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3508), 1, + sym_ident, STATE(1473), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3514), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN, - anon_sym_LBRACE, - [44577] = 5, + ACTIONS(3510), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [44640] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -156402,13 +155983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3516), 5, + ACTIONS(3512), 5, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [44599] = 5, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44662] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -156419,89 +156000,86 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3518), 5, + ACTIONS(3514), 5, sym_ident, sym_at_ident, - sym_type_ident, sym_at_type_ident, + anon_sym_LPAREN, anon_sym_LBRACE, - [44621] = 9, + [44684] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3520), 1, - anon_sym_STAR_GT, - ACTIONS(3522), 1, - sym_at_ident, - ACTIONS(3524), 1, - sym_doc_comment_text, - STATE(1512), 1, - aux_sym_doc_comment_repeat1, - STATE(1893), 1, - sym_doc_comment_contract, STATE(1476), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44651] = 9, + ACTIONS(3516), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44706] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - ACTIONS(3526), 1, - anon_sym_DOLLARendswitch, - STATE(1484), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, STATE(1477), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44681] = 5, + ACTIONS(3518), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44728] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3522), 1, + sym_const_ident, STATE(1478), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3528), 5, + ACTIONS(3520), 4, sym_ident, sym_at_ident, + sym_type_ident, sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [44703] = 5, + [44752] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3524), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, STATE(1479), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3324), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_SEMI, - [44725] = 5, + [44782] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -156512,405 +156090,400 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3530), 5, + ACTIONS(3526), 5, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [44747] = 9, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44804] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - STATE(910), 1, - sym_compound_stmt, - STATE(946), 1, - sym_macro_func_body, - STATE(1995), 1, - sym_implies_body, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3528), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, STATE(1481), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44777] = 5, + [44834] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3530), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, STATE(1482), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3333), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_SEMI, - [44799] = 9, + [44864] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(91), 1, - anon_sym_LBRACK, - ACTIONS(2696), 1, - anon_sym_DOT, - ACTIONS(3293), 1, - anon_sym_RPAREN, - STATE(1451), 1, - sym_param_path_element, - STATE(1468), 1, - aux_sym_param_path_repeat1, + ACTIONS(3532), 1, + sym_ident, + ACTIONS(3534), 1, + sym_type_ident, + STATE(1443), 1, + sym_define_path_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1592), 1, + aux_sym__module_path, STATE(1483), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44829] = 8, + [44894] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3532), 1, - anon_sym_DOLLARcase, - ACTIONS(3535), 1, - anon_sym_DOLLARdefault, + ACTIONS(3536), 1, + anon_sym_STAR_GT, ACTIONS(3538), 1, - anon_sym_DOLLARendswitch, - STATE(1649), 1, - sym_ct_case_stmt, - STATE(1484), 4, + sym_at_ident, + ACTIONS(3540), 1, + sym_doc_comment_text, + STATE(1579), 1, + aux_sym_doc_comment_repeat1, + STATE(1887), 1, + sym_doc_comment_contract, + STATE(1484), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__ct_switch_body, - [44857] = 7, + [44924] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - STATE(1675), 1, - sym__assign_right_expr, - ACTIONS(3540), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, STATE(1485), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44883] = 8, + ACTIONS(3542), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [44945] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, - ACTIONS(3542), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(3544), 1, + sym_ident, + STATE(1278), 1, + sym_path_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1683), 1, + aux_sym__module_path, STATE(1486), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44911] = 6, + [44972] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, ACTIONS(3546), 1, - sym_const_ident, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1487), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3544), 4, - sym_ident, - sym_at_ident, - sym_type_ident, - sym_at_type_ident, - [44935] = 7, + [44999] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - STATE(1688), 1, - sym__assign_right_expr, - ACTIONS(3548), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3548), 1, + anon_sym_LBRACE, + ACTIONS(3550), 1, + anon_sym_if, + STATE(708), 1, + sym_compound_stmt, + STATE(709), 1, + sym_if_stmt, STATE(1488), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44961] = 5, + [45026] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3552), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, STATE(1489), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3550), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [44983] = 8, + [45053] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3552), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, STATE(1490), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45010] = 5, + ACTIONS(3554), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [45074] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1491), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3554), 4, + ACTIONS(3556), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(3559), 2, anon_sym_RPAREN, anon_sym_SEMI, - [45031] = 8, + STATE(1491), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym__parameters_repeat1, + [45097] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3522), 1, - sym_at_ident, - ACTIONS(3556), 1, - anon_sym_STAR_GT, - STATE(1551), 1, - aux_sym_doc_comment_repeat1, - STATE(1893), 1, - sym_doc_comment_contract, STATE(1492), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45058] = 7, + ACTIONS(3561), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [45118] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, - anon_sym_AMP_AMP, - STATE(1541), 1, - aux_sym__try_unwrap_chain_repeat1, - ACTIONS(3558), 2, - anon_sym_RPAREN, - anon_sym_SEMI, STATE(1493), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45083] = 5, + ACTIONS(3563), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [45139] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3538), 1, + sym_at_ident, + ACTIONS(3565), 1, + anon_sym_STAR_GT, + STATE(1495), 1, + aux_sym_doc_comment_repeat1, + STATE(1887), 1, + sym_doc_comment_contract, STATE(1494), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3562), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [45104] = 8, + [45166] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3564), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, - STATE(1495), 3, + ACTIONS(3567), 1, + anon_sym_STAR_GT, + ACTIONS(3569), 1, + sym_at_ident, + STATE(1887), 1, + sym_doc_comment_contract, + STATE(1495), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [45131] = 8, + aux_sym_doc_comment_repeat1, + [45191] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, anon_sym_LBRACE, - ACTIONS(3568), 1, - anon_sym_if, - STATE(640), 1, - sym_compound_stmt, - STATE(641), 1, - sym_if_stmt, + ACTIONS(3572), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1496), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45158] = 8, + [45218] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2809), 1, + ACTIONS(3576), 1, + anon_sym_AMP_AMP, + ACTIONS(3574), 2, anon_sym_RPAREN, - ACTIONS(3570), 1, - anon_sym_COMMA, - ACTIONS(3572), 1, anon_sym_SEMI, - STATE(1613), 1, - aux_sym__call_arg_list_repeat1, - STATE(1497), 3, + STATE(1497), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [45185] = 8, + aux_sym__try_unwrap_chain_repeat1, + [45241] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3574), 1, + ACTIONS(3579), 1, + anon_sym_COMMA, + ACTIONS(3582), 2, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, - STATE(1498), 3, + STATE(1498), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [45212] = 8, + aux_sym__cond_repeat1, + [45264] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(2752), 1, anon_sym_RPAREN, - STATE(1010), 1, - sym_initializer_list, + ACTIONS(3584), 1, + anon_sym_COMMA, + ACTIONS(3586), 1, + anon_sym_SEMI, + STATE(1509), 1, + aux_sym__call_arg_list_repeat1, STATE(1499), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45239] = 8, + [45291] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(3285), 1, - sym_type_ident, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(80), 1, + sym_paren_cond, + STATE(1896), 1, + sym_label, STATE(1500), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45266] = 7, + [45318] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3077), 1, - anon_sym_EQ, - STATE(1818), 1, - sym_enum_arg, - ACTIONS(3578), 2, + ACTIONS(2614), 1, + anon_sym_LPAREN_LT, + STATE(1931), 1, + sym_generic_arguments, + ACTIONS(3590), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, STATE(1501), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45291] = 5, + [45343] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -156921,12 +156494,12 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3580), 4, + ACTIONS(3592), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [45312] = 5, + [45364] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -156937,302 +156510,299 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3582), 4, + ACTIONS(3594), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LBRACE, - [45333] = 8, + anon_sym_SEMI, + [45385] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3584), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, STATE(1504), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45360] = 7, - ACTIONS(3), 1, + ACTIONS(3596), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [45406] = 8, + ACTIONS(3598), 1, + sym_escape_sequence, + ACTIONS(3600), 1, + anon_sym_DQUOTE, + ACTIONS(3602), 1, + aux_sym_string_literal_token1, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, + ACTIONS(3606), 1, anon_sym_LT_STAR, - ACTIONS(7), 1, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(3586), 1, - anon_sym_COMMA, - STATE(1542), 1, - aux_sym__cond_repeat1, - ACTIONS(3588), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + STATE(1518), 1, + aux_sym_string_literal_repeat1, STATE(1505), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45385] = 5, + [45433] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3610), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1506), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3590), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [45406] = 8, + [45460] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3592), 1, - sym_ident, - STATE(1289), 1, - sym_path_ident, - STATE(1487), 1, - sym_module_resolution, - STATE(1711), 1, - aux_sym__module_path, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1507), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45433] = 7, + [45487] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3594), 1, - anon_sym_fn, - ACTIONS(3597), 1, - anon_sym_RBRACE, - STATE(1815), 1, - sym_func_declaration, - STATE(1508), 4, + STATE(1508), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_interface_body_repeat1, - [45458] = 8, + ACTIONS(3614), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [45508] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, - sym_ident, - ACTIONS(3271), 1, - sym_ct_ident, - STATE(1653), 1, - sym_local_decl_after_type, - STATE(2143), 1, - sym__decl_statement_after_type, + ACTIONS(1237), 1, + anon_sym_RPAREN, + ACTIONS(1239), 1, + anon_sym_SEMI, + ACTIONS(3616), 1, + anon_sym_COMMA, + STATE(1611), 1, + aux_sym__call_arg_list_repeat1, STATE(1509), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45485] = 7, - ACTIONS(3), 1, + [45535] = 7, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, + ACTIONS(3606), 1, anon_sym_LT_STAR, - ACTIONS(7), 1, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(3599), 1, - anon_sym_COMMA, - STATE(1534), 1, - aux_sym__parameters_repeat1, - ACTIONS(3601), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1510), 3, + ACTIONS(3618), 1, + sym_escape_sequence, + ACTIONS(3621), 1, + anon_sym_DQUOTE, + ACTIONS(3623), 1, + aux_sym_string_literal_token1, + STATE(1510), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [45510] = 8, + aux_sym_string_literal_repeat1, + [45560] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3603), 1, - anon_sym_COLON, - STATE(1010), 1, - sym_initializer_list, + anon_sym_SLASH_STAR, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2166), 1, + sym__decl_statement_after_type, STATE(1511), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45537] = 8, + [45587] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3522), 1, - sym_at_ident, - ACTIONS(3605), 1, - anon_sym_STAR_GT, - STATE(1551), 1, - aux_sym_doc_comment_repeat1, - STATE(1893), 1, - sym_doc_comment_contract, + ACTIONS(3047), 1, + anon_sym_EQ, + STATE(1752), 1, + sym_enum_arg, + ACTIONS(3626), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(1512), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45564] = 8, + [45612] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3592), 1, - sym_ident, - STATE(1281), 1, - sym_path_ident, - STATE(1487), 1, - sym_module_resolution, - STATE(1711), 1, - aux_sym__module_path, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3628), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1513), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45591] = 5, + [45639] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3630), 1, + anon_sym_LBRACE, + ACTIONS(3632), 1, + anon_sym_if, + STATE(781), 1, + sym_compound_stmt, + STATE(782), 1, + sym_if_stmt, STATE(1514), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3607), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [45612] = 6, + [45666] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3609), 1, - anon_sym_COMMA, - ACTIONS(3612), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1515), 4, + STATE(1515), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__call_arg_list_repeat1, - [45635] = 8, + ACTIONS(3634), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [45687] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3522), 1, - sym_at_ident, - ACTIONS(3605), 1, - anon_sym_STAR_GT, - STATE(1492), 1, - aux_sym_doc_comment_repeat1, - STATE(1893), 1, - sym_doc_comment_contract, STATE(1516), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45662] = 8, + ACTIONS(3636), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [45708] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3614), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, STATE(1517), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45689] = 8, - ACTIONS(3), 1, + ACTIONS(3638), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [45729] = 8, + ACTIONS(3598), 1, + sym_escape_sequence, + ACTIONS(3602), 1, + aux_sym_string_literal_token1, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, + ACTIONS(3606), 1, anon_sym_LT_STAR, - ACTIONS(7), 1, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(3616), 1, - anon_sym_LBRACE, - ACTIONS(3618), 1, - anon_sym_if, - STATE(712), 1, - sym_compound_stmt, - STATE(713), 1, - sym_if_stmt, + ACTIONS(3640), 1, + anon_sym_DQUOTE, + STATE(1510), 1, + aux_sym_string_literal_repeat1, STATE(1518), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45716] = 5, + [45756] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3538), 1, + sym_at_ident, + ACTIONS(3642), 1, + anon_sym_STAR_GT, + STATE(1494), 1, + aux_sym_doc_comment_repeat1, + STATE(1887), 1, + sym_doc_comment_contract, STATE(1519), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3620), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [45737] = 5, + [45783] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -157243,125 +156813,123 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3622), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3644), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_SEMI, - [45758] = 8, + [45804] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3497), 1, - sym_ident, - ACTIONS(3624), 1, - sym_const_ident, - STATE(1580), 1, - aux_sym__module_path, - STATE(1777), 1, - sym_module_resolution, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3646), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1521), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45785] = 8, + [45831] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3626), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, STATE(1522), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45812] = 8, + [45858] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(3628), 1, - sym_type_ident, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3648), 1, + anon_sym_RPAREN, + STATE(959), 1, + sym_initializer_list, STATE(1523), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45839] = 7, + [45885] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2579), 1, - anon_sym_LPAREN_LT, - STATE(1796), 1, - sym_generic_arguments, - ACTIONS(3630), 2, + ACTIONS(3650), 1, anon_sym_COMMA, + ACTIONS(3653), 2, anon_sym_RPAREN, - STATE(1524), 3, + anon_sym_SEMI, + STATE(1524), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [45864] = 8, + aux_sym_assert_stmt_repeat1, + [45908] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3632), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(135), 1, + sym_for_cond, + STATE(1908), 1, + sym_label, STATE(1525), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45891] = 8, + [45935] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3634), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, - STATE(1526), 3, + ACTIONS(3294), 1, + sym_const_ident, + ACTIONS(3657), 1, + sym_ident, + STATE(1796), 1, + sym_module_resolution, + STATE(1526), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [45918] = 5, + aux_sym__module_path, + [45960] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -157372,31 +156940,31 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3636), 4, + ACTIONS(3660), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - [45939] = 8, + [45981] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3638), 1, - anon_sym_LBRACE, - ACTIONS(3640), 1, - anon_sym_if, - STATE(506), 1, - sym_compound_stmt, - STATE(507), 1, - sym_if_stmt, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1456), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, STATE(1528), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45966] = 5, + [46008] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -157407,31 +156975,31 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3642), 4, + ACTIONS(3662), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [45987] = 8, + [46029] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, + ACTIONS(3285), 1, anon_sym_DOT, - ACTIONS(3275), 1, + ACTIONS(3287), 1, anon_sym_LBRACE, - ACTIONS(3644), 1, - sym_ident, - STATE(1010), 1, + ACTIONS(3664), 1, + anon_sym_SEMI, + STATE(959), 1, sym_initializer_list, STATE(1530), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46014] = 5, + [46056] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -157442,1332 +157010,1361 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3646), 4, + ACTIONS(3666), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_SEMI, - [46035] = 5, + anon_sym_LBRACE, + [46077] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(99), 1, + sym_foreach_cond, + STATE(1919), 1, + sym_label, STATE(1532), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3648), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [46056] = 5, + [46104] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3449), 1, + sym_ident, + ACTIONS(3670), 1, + sym_const_ident, + STATE(1526), 1, + aux_sym__module_path, + STATE(1796), 1, + sym_module_resolution, STATE(1533), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3650), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [46077] = 7, + [46131] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3652), 1, - anon_sym_COMMA, - STATE(1569), 1, - aux_sym__parameters_repeat1, - ACTIONS(2819), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3672), 1, + sym_ident, + STATE(959), 1, + sym_initializer_list, STATE(1534), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46102] = 5, + [46158] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3674), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1535), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3654), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [46123] = 8, + [46185] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, + ACTIONS(3676), 1, anon_sym_LBRACE, - ACTIONS(3656), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, + ACTIONS(3678), 1, + anon_sym_if, + STATE(444), 1, + sym_compound_stmt, + STATE(445), 1, + sym_if_stmt, STATE(1536), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46150] = 8, + [46212] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3658), 1, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, anon_sym_LBRACE, - ACTIONS(3660), 1, - anon_sym_if, - STATE(785), 1, - sym_compound_stmt, - STATE(786), 1, - sym_if_stmt, + ACTIONS(3680), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1537), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46177] = 7, + [46239] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2537), 1, - anon_sym_COMMA, - STATE(1573), 1, - aux_sym_assert_stmt_repeat1, - ACTIONS(3662), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3682), 1, + anon_sym_LBRACE, + ACTIONS(3684), 1, + anon_sym_if, + STATE(635), 1, + sym_compound_stmt, + STATE(636), 1, + sym_if_stmt, STATE(1538), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46202] = 7, + [46266] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, - anon_sym_AMP_AMP, - STATE(1493), 1, - aux_sym__try_unwrap_chain_repeat1, - ACTIONS(3664), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3686), 1, + sym_ident, + STATE(959), 1, + sym_initializer_list, STATE(1539), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46227] = 7, + [46293] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3666), 1, - anon_sym_COMMA, - STATE(1505), 1, - aux_sym__cond_repeat1, - ACTIONS(3668), 2, - anon_sym_RPAREN, - anon_sym_SEMI, STATE(1540), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46252] = 6, + ACTIONS(1707), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [46314] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3672), 1, - anon_sym_AMP_AMP, - ACTIONS(3670), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1541), 4, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3308), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__try_unwrap_chain_repeat1, - [46275] = 6, + [46341] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3675), 1, - anon_sym_COMMA, - ACTIONS(3678), 2, + ACTIONS(3690), 1, + anon_sym_AMP_AMP, + STATE(1497), 1, + aux_sym__try_unwrap_chain_repeat1, + ACTIONS(3688), 2, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1542), 4, + STATE(1542), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__cond_repeat1, - [46298] = 8, + [46366] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(3680), 1, - sym_type_ident, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, + ACTIONS(3692), 1, + anon_sym_COMMA, + STATE(1498), 1, + aux_sym__cond_repeat1, + ACTIONS(3694), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1543), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46325] = 8, + [46391] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(3682), 1, - sym_at_type_ident, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3696), 1, + anon_sym_RPAREN, + STATE(959), 1, + sym_initializer_list, STATE(1544), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46352] = 8, + [46418] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3684), 1, - anon_sym_fn, - ACTIONS(3686), 1, - anon_sym_RBRACE, - STATE(1558), 1, - aux_sym_interface_body_repeat1, - STATE(1815), 1, - sym_func_declaration, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(117), 1, + sym_paren_cond, + STATE(1926), 1, + sym_label, STATE(1545), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46379] = 5, + [46445] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3698), 1, + anon_sym_COLON, + STATE(959), 1, + sym_initializer_list, STATE(1546), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3688), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [46400] = 7, + [46472] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, - anon_sym_RBRACK, - STATE(1312), 1, - sym__additive_op, - ACTIONS(3692), 2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(67), 1, + sym_paren_cond, + STATE(1831), 1, + sym_label, STATE(1547), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46425] = 8, - ACTIONS(3694), 1, - sym_escape_sequence, - ACTIONS(3696), 1, - anon_sym_DQUOTE, - ACTIONS(3698), 1, - aux_sym_string_literal_token1, - ACTIONS(3700), 1, + [46499] = 8, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3702), 1, + ACTIONS(5), 1, anon_sym_LT_STAR, - ACTIONS(3704), 1, + ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1571), 1, - aux_sym_string_literal_repeat1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym_for_cond, + STATE(1838), 1, + sym_label, STATE(1548), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46452] = 5, + [46526] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(102), 1, + sym_foreach_cond, + STATE(1839), 1, + sym_label, STATE(1549), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3706), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [46473] = 5, + [46553] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(103), 1, + sym_paren_cond, + STATE(1840), 1, + sym_label, STATE(1550), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3708), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [46494] = 7, + [46580] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3710), 1, - anon_sym_STAR_GT, - ACTIONS(3712), 1, - sym_at_ident, - STATE(1893), 1, - sym_doc_comment_contract, - STATE(1551), 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(3035), 1, + sym_const_ident, + STATE(1841), 1, + sym_label, + STATE(1852), 1, + sym_compound_stmt, + STATE(1551), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_doc_comment_repeat1, - [46519] = 7, + [46607] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3715), 1, - anon_sym_COMMA, - STATE(1584), 1, - aux_sym__cond_repeat1, - ACTIONS(3717), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3700), 1, + anon_sym_fn, + ACTIONS(3702), 1, + anon_sym_RBRACE, + STATE(1590), 1, + aux_sym_interface_body_repeat1, + STATE(1792), 1, + sym_func_declaration, STATE(1552), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46544] = 8, + [46634] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - ACTIONS(3002), 1, - anon_sym_EQ_GT, - STATE(963), 1, - sym_implies_body, - STATE(964), 1, - sym_compound_stmt, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1482), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, STATE(1553), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46571] = 5, + [46661] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3704), 1, + sym_at_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, STATE(1554), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3719), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [46592] = 8, + [46688] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3721), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2134), 1, + sym__decl_statement_after_type, STATE(1555), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46619] = 8, + [46715] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3723), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - ACTIONS(3725), 1, - anon_sym_if, - STATE(476), 1, + ACTIONS(3027), 1, + anon_sym_EQ_GT, + STATE(908), 1, + sym_implies_body, + STATE(909), 1, sym_compound_stmt, - STATE(477), 1, - sym_if_stmt, STATE(1556), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46646] = 5, + [46742] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3706), 1, + anon_sym_LPAREN, + STATE(1761), 1, + sym_ct_switch_cond, + ACTIONS(3708), 2, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, STATE(1557), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1717), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [46667] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3684), 1, - anon_sym_fn, - ACTIONS(3727), 1, - anon_sym_RBRACE, - STATE(1508), 1, - aux_sym_interface_body_repeat1, - STATE(1815), 1, - sym_func_declaration, - STATE(1558), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [46694] = 8, + [46767] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3729), 1, + ACTIONS(3690), 1, + anon_sym_AMP_AMP, + STATE(1542), 1, + aux_sym__try_unwrap_chain_repeat1, + ACTIONS(3710), 2, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, - STATE(1559), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [46721] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3731), 1, - anon_sym_LBRACE, - ACTIONS(3733), 1, - anon_sym_if, - STATE(355), 1, - sym_compound_stmt, - STATE(356), 1, - sym_if_stmt, - STATE(1560), 3, + STATE(1558), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46748] = 5, + [46792] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1561), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3735), 4, - anon_sym_COMMA, + anon_sym_SLASH_STAR, + ACTIONS(3712), 1, anon_sym_EQ, + ACTIONS(3500), 3, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [46769] = 8, + STATE(1559), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [46815] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3737), 1, - sym_ident, - ACTIONS(3739), 1, - sym_type_ident, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, - STATE(1562), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(92), 1, + sym_paren_cond, + STATE(1814), 1, + sym_label, + STATE(1560), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46796] = 8, + [46842] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3741), 1, + ACTIONS(3655), 1, anon_sym_LPAREN, - STATE(100), 1, + STATE(98), 1, sym_for_cond, - STATE(1846), 1, + STATE(1856), 1, sym_label, - STATE(1563), 3, + STATE(1561), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46823] = 8, + [46869] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3743), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - STATE(101), 1, + STATE(111), 1, sym_foreach_cond, - STATE(1847), 1, + STATE(1857), 1, sym_label, - STATE(1564), 3, + STATE(1562), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46850] = 8, + [46896] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3745), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(102), 1, + STATE(112), 1, sym_paren_cond, - STATE(1848), 1, + STATE(1858), 1, sym_label, - STATE(1565), 3, + STATE(1563), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46877] = 8, + [46923] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - STATE(1849), 1, - sym_label, - STATE(1877), 1, + STATE(1823), 1, sym_compound_stmt, - STATE(1566), 3, + STATE(1859), 1, + sym_label, + STATE(1564), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46904] = 8, + [46950] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - STATE(1454), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, - STATE(1567), 3, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3714), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, + STATE(1565), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46931] = 8, + [46977] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - sym_ident, - ACTIONS(3287), 1, - sym_type_ident, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, - STATE(1568), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1481), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1566), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46958] = 6, + [47004] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3747), 1, - anon_sym_COMMA, - ACTIONS(3750), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1569), 4, + ACTIONS(3716), 1, + anon_sym_LBRACE, + ACTIONS(3718), 1, + anon_sym_if, + STATE(388), 1, + sym_compound_stmt, + STATE(389), 1, + sym_if_stmt, + STATE(1567), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__parameters_repeat1, - [46981] = 8, + [47031] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3281), 1, sym_ident, - ACTIONS(3271), 1, + ACTIONS(3283), 1, sym_ct_ident, - STATE(1653), 1, + STATE(1639), 1, sym_local_decl_after_type, - STATE(2171), 1, + STATE(2073), 1, sym__decl_statement_after_type, - STATE(1570), 3, + STATE(1568), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47008] = 7, - ACTIONS(3700), 1, + [47058] = 5, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3702), 1, + ACTIONS(5), 1, anon_sym_LT_STAR, - ACTIONS(3704), 1, + ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3752), 1, - sym_escape_sequence, - ACTIONS(3755), 1, - anon_sym_DQUOTE, - ACTIONS(3757), 1, - aux_sym_string_literal_token1, - STATE(1571), 4, + STATE(1569), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [47033] = 8, + ACTIONS(3720), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [47079] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3760), 1, - anon_sym_RPAREN, - STATE(1010), 1, - sym_initializer_list, - STATE(1572), 3, + ACTIONS(3722), 1, + anon_sym_fn, + ACTIONS(3725), 1, + anon_sym_RBRACE, + STATE(1792), 1, + sym_func_declaration, + STATE(1570), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [47060] = 6, + aux_sym_interface_body_repeat1, + [47104] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3762), 1, - anon_sym_COMMA, - ACTIONS(3765), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1573), 4, + ACTIONS(3544), 1, + sym_ident, + STATE(1450), 1, + sym_path_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1683), 1, + aux_sym__module_path, + STATE(1571), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_assert_stmt_repeat1, - [47083] = 8, + [47131] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3745), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(94), 1, + STATE(66), 1, sym_paren_cond, - STATE(1797), 1, + STATE(1892), 1, sym_label, - STATE(1574), 3, + STATE(1572), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47110] = 8, + [47158] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3741), 1, + ACTIONS(3655), 1, anon_sym_LPAREN, - STATE(107), 1, + STATE(139), 1, sym_for_cond, - STATE(1867), 1, + STATE(1875), 1, sym_label, - STATE(1575), 3, + STATE(1573), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47137] = 8, + [47185] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3743), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - STATE(108), 1, + STATE(118), 1, sym_foreach_cond, - STATE(1868), 1, + STATE(1876), 1, sym_label, - STATE(1576), 3, + STATE(1574), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47164] = 8, + [47212] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3745), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(109), 1, + STATE(119), 1, sym_paren_cond, - STATE(1869), 1, + STATE(1877), 1, sym_label, - STATE(1577), 3, + STATE(1575), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47191] = 8, + [47239] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - STATE(1802), 1, - sym_compound_stmt, - STATE(1870), 1, + STATE(1878), 1, sym_label, - STATE(1578), 3, + STATE(1897), 1, + sym_compound_stmt, + STATE(1576), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47218] = 8, + [47266] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, + STATE(1577), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3051), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [47287] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3467), 1, anon_sym_DOLLARcase, - ACTIONS(3465), 1, + ACTIONS(3469), 1, anon_sym_DOLLARdefault, - STATE(1459), 1, + STATE(1460), 1, aux_sym__ct_switch_body, - STATE(1649), 1, + STATE(1631), 1, sym_ct_case_stmt, + STATE(1578), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [47314] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3538), 1, + sym_at_ident, + ACTIONS(3642), 1, + anon_sym_STAR_GT, + STATE(1495), 1, + aux_sym_doc_comment_repeat1, + STATE(1887), 1, + sym_doc_comment_contract, STATE(1579), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47245] = 7, + [47341] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, - sym_const_ident, - ACTIONS(3767), 1, - sym_ident, - STATE(1777), 1, - sym_module_resolution, - STATE(1580), 4, + ACTIONS(3727), 1, + anon_sym_COMMA, + STATE(1498), 1, + aux_sym__cond_repeat1, + ACTIONS(3729), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1580), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__module_path, - [47270] = 8, + [47366] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3281), 1, sym_ident, - ACTIONS(3271), 1, + ACTIONS(3283), 1, sym_ct_ident, - STATE(1653), 1, + STATE(1639), 1, sym_local_decl_after_type, - STATE(2088), 1, + STATE(2201), 1, sym__decl_statement_after_type, STATE(1581), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47297] = 8, + [47393] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3770), 1, - anon_sym_COLON, - STATE(1010), 1, - sym_initializer_list, + ACTIONS(3731), 1, + anon_sym_COMMA, + STATE(1491), 1, + aux_sym__parameters_repeat1, + ACTIONS(2809), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1582), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47324] = 5, + [47418] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1583), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3772), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [47345] = 7, + [47445] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3715), 1, + ACTIONS(3735), 1, anon_sym_COMMA, - STATE(1542), 1, + STATE(1543), 1, aux_sym__cond_repeat1, - ACTIONS(3774), 2, + ACTIONS(3737), 2, anon_sym_RPAREN, anon_sym_SEMI, STATE(1584), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47370] = 8, + [47470] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3745), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(67), 1, + STATE(58), 1, sym_paren_cond, - STATE(1900), 1, + STATE(1771), 1, sym_label, STATE(1585), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47397] = 8, + [47497] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3741), 1, + ACTIONS(3655), 1, anon_sym_LPAREN, - STATE(117), 1, + STATE(124), 1, sym_for_cond, - STATE(1887), 1, + STATE(1898), 1, sym_label, STATE(1586), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47424] = 8, + [47524] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3743), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - STATE(118), 1, + STATE(125), 1, sym_foreach_cond, - STATE(1888), 1, + STATE(1899), 1, sym_label, STATE(1587), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47451] = 8, + [47551] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3745), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(119), 1, + STATE(126), 1, sym_paren_cond, - STATE(1889), 1, + STATE(1900), 1, sym_label, STATE(1588), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47478] = 8, + [47578] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - STATE(1890), 1, - sym_label, - STATE(1914), 1, + STATE(1774), 1, sym_compound_stmt, + STATE(1901), 1, + sym_label, STATE(1589), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47505] = 8, + [47605] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - STATE(1466), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, + ACTIONS(3700), 1, + anon_sym_fn, + ACTIONS(3739), 1, + anon_sym_RBRACE, + STATE(1570), 1, + aux_sym_interface_body_repeat1, + STATE(1792), 1, + sym_func_declaration, STATE(1590), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47532] = 8, + [47632] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3776), 1, - sym_ident, - STATE(1010), 1, - sym_initializer_list, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1479), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, STATE(1591), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47559] = 8, + [47659] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3741), 1, sym_ident, - ACTIONS(3271), 1, - sym_ct_ident, - STATE(1653), 1, - sym_local_decl_after_type, - STATE(2208), 1, - sym__decl_statement_after_type, + ACTIONS(3743), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, STATE(1592), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47586] = 8, + [47686] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(84), 1, - sym_paren_cond, - STATE(1927), 1, - sym_label, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(1977), 1, + sym__decl_statement_after_type, STATE(1593), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47613] = 8, + [47713] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3741), 1, - anon_sym_LPAREN, - STATE(110), 1, - sym_for_cond, - STATE(1754), 1, - sym_label, + ACTIONS(3745), 1, + anon_sym_LBRACE, + ACTIONS(3747), 1, + anon_sym_if, + STATE(526), 1, + sym_if_stmt, + STATE(547), 1, + sym_compound_stmt, STATE(1594), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47640] = 8, + [47740] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3743), 1, - anon_sym_LPAREN, - STATE(114), 1, - sym_foreach_cond, - STATE(1821), 1, - sym_label, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3749), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, STATE(1595), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47667] = 8, + [47767] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(115), 1, - sym_paren_cond, - STATE(1903), 1, - sym_label, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3751), 1, + anon_sym_COLON, + STATE(959), 1, + sym_initializer_list, STATE(1596), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47694] = 8, + [47794] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3745), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(78), 1, + STATE(89), 1, sym_paren_cond, - STATE(1774), 1, + STATE(1741), 1, sym_label, STATE(1597), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47721] = 8, + [47821] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3741), 1, + ACTIONS(3655), 1, anon_sym_LPAREN, - STATE(123), 1, + STATE(132), 1, sym_for_cond, - STATE(1905), 1, + STATE(1915), 1, sym_label, STATE(1598), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47748] = 8, + [47848] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3743), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - STATE(124), 1, + STATE(133), 1, sym_foreach_cond, - STATE(1906), 1, + STATE(1916), 1, sym_label, STATE(1599), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47775] = 8, + [47875] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3745), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(125), 1, + STATE(134), 1, sym_paren_cond, - STATE(1907), 1, + STATE(1917), 1, sym_label, STATE(1600), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47802] = 8, + [47902] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3035), 1, sym_const_ident, - STATE(1776), 1, + STATE(1803), 1, sym_compound_stmt, - STATE(1908), 1, + STATE(1918), 1, sym_label, STATE(1601), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47829] = 8, + [47929] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, - sym_const_ident, - STATE(1760), 1, - sym_compound_stmt, - STATE(1766), 1, - sym_label, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1455), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, STATE(1602), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47856] = 8, + [47956] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - STATE(1471), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(3035), 1, + sym_const_ident, + STATE(1928), 1, + sym_label, + STATE(1932), 1, + sym_compound_stmt, STATE(1603), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47883] = 5, + [47983] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -158778,302 +158375,276 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3778), 4, + ACTIONS(3753), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [47904] = 8, + [48004] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3281), 1, sym_ident, - ACTIONS(3271), 1, + ACTIONS(3283), 1, sym_ct_ident, - STATE(1653), 1, + STATE(1639), 1, sym_local_decl_after_type, - STATE(1986), 1, + STATE(2052), 1, sym__decl_statement_after_type, STATE(1605), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47931] = 8, + [48031] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3780), 1, - anon_sym_SEMI, - STATE(1010), 1, - sym_initializer_list, STATE(1606), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47958] = 7, + ACTIONS(3755), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [48052] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3782), 1, - anon_sym_LPAREN, - STATE(1816), 1, - sym_ct_switch_cond, - ACTIONS(3784), 2, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, STATE(1607), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47983] = 8, + ACTIONS(3757), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [48073] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(89), 1, - sym_paren_cond, - STATE(1807), 1, - sym_label, + ACTIONS(3727), 1, + anon_sym_COMMA, + STATE(1580), 1, + aux_sym__cond_repeat1, + ACTIONS(3759), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1608), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48010] = 8, + [48098] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3741), 1, - anon_sym_LPAREN, - STATE(131), 1, - sym_for_cond, - STATE(1919), 1, - sym_label, STATE(1609), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48037] = 8, + ACTIONS(3761), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [48119] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3743), 1, - anon_sym_LPAREN, - STATE(132), 1, - sym_foreach_cond, - STATE(1920), 1, - sym_label, + ACTIONS(3763), 1, + anon_sym_RBRACK, + STATE(1292), 1, + sym__additive_op, + ACTIONS(3765), 2, + anon_sym_PLUS, + anon_sym_DASH, STATE(1610), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48064] = 8, + [48144] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(133), 1, - sym_paren_cond, - STATE(1921), 1, - sym_label, - STATE(1611), 3, + ACTIONS(3767), 1, + anon_sym_COMMA, + ACTIONS(3770), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1611), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [48091] = 8, + aux_sym__call_arg_list_repeat1, + [48167] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - ACTIONS(3049), 1, - sym_const_ident, - STATE(1808), 1, - sym_compound_stmt, - STATE(1922), 1, - sym_label, STATE(1612), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48118] = 8, + ACTIONS(3772), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [48188] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1233), 1, + ACTIONS(2533), 1, + anon_sym_COMMA, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, + ACTIONS(3774), 2, anon_sym_RPAREN, - ACTIONS(1235), 1, anon_sym_SEMI, - ACTIONS(3786), 1, - anon_sym_COMMA, - STATE(1515), 1, - aux_sym__call_arg_list_repeat1, STATE(1613), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48145] = 8, + [48213] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - STATE(1477), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, + ACTIONS(3544), 1, + sym_ident, + STATE(1277), 1, + sym_path_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1683), 1, + aux_sym__module_path, STATE(1614), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48172] = 5, + [48240] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3776), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, STATE(1615), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3045), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [48193] = 8, + [48267] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, - sym_ident, - ACTIONS(3271), 1, - sym_ct_ident, - STATE(1653), 1, - sym_local_decl_after_type, - STATE(2061), 1, - sym__decl_statement_after_type, + ACTIONS(3778), 1, + anon_sym_COMMA, + STATE(1582), 1, + aux_sym__parameters_repeat1, + ACTIONS(3780), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1616), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48220] = 8, + [48292] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3592), 1, - sym_ident, - STATE(1482), 1, - sym_path_ident, - STATE(1487), 1, - sym_module_resolution, - STATE(1711), 1, - aux_sym__module_path, + ACTIONS(3782), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, STATE(1617), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48247] = 8, + [48312] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3463), 1, - anon_sym_DOLLARcase, - ACTIONS(3465), 1, - anon_sym_DOLLARdefault, - STATE(1455), 1, - aux_sym__ct_switch_body, - STATE(1649), 1, - sym_ct_case_stmt, + ACTIONS(3784), 3, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_RPAREN, STATE(1618), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48274] = 8, - ACTIONS(3694), 1, - sym_escape_sequence, - ACTIONS(3698), 1, - aux_sym_string_literal_token1, - ACTIONS(3700), 1, + [48332] = 7, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3702), 1, + ACTIONS(5), 1, anon_sym_LT_STAR, - ACTIONS(3704), 1, + ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3788), 1, - anon_sym_DQUOTE, - STATE(1548), 1, - aux_sym_string_literal_repeat1, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(3786), 1, + anon_sym_RPAREN, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, STATE(1619), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48301] = 6, + [48356] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_EQ, - ACTIONS(3548), 3, + ACTIONS(3788), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -159081,400 +158652,400 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [48324] = 8, + [48376] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - sym_const_ident, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(70), 1, - sym_paren_cond, - STATE(1871), 1, - sym_label, + ACTIONS(3788), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1621), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48351] = 6, + [48396] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3792), 1, - anon_sym_COMMA, - ACTIONS(3795), 1, - anon_sym_RBRACE, - STATE(1622), 4, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1889), 1, + sym_local_decl_after_type, + STATE(1622), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_body_repeat1, - [48373] = 5, + [48420] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3792), 1, + anon_sym_SEMI, + STATE(1729), 1, + aux_sym__decl_statement_after_type_repeat1, STATE(1623), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48393] = 5, + [48444] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3799), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, + ACTIONS(3794), 1, + sym_const_ident, + ACTIONS(3796), 1, + anon_sym_RBRACE, + STATE(1759), 1, + sym_enum_constant, STATE(1624), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48413] = 5, + [48468] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3801), 3, + ACTIONS(3798), 1, anon_sym_COMMA, + ACTIONS(3801), 1, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1625), 3, + STATE(1625), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [48433] = 6, + aux_sym_enum_param_list_repeat1, + [48490] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2099), 1, - sym__func_macro_name, - ACTIONS(2829), 2, - sym_ident, - sym_at_ident, + ACTIONS(3803), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1626), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48455] = 7, + [48510] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2543), 1, + ACTIONS(3803), 3, anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_GT_RPAREN, - STATE(1636), 1, - aux_sym__generic_arg_list_repeat1, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1627), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48479] = 7, + [48530] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2543), 1, - anon_sym_COMMA, ACTIONS(3805), 1, - anon_sym_GT_RPAREN, - STATE(1636), 1, - aux_sym__generic_arg_list_repeat1, + anon_sym_COMMA, + ACTIONS(3807), 1, + anon_sym_RPAREN, + STATE(1681), 1, + aux_sym_interface_impl_repeat1, STATE(1628), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48503] = 7, + [48554] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3807), 1, - anon_sym_COMMA, ACTIONS(3809), 1, - anon_sym_GT_RPAREN, - STATE(1640), 1, - aux_sym_generic_module_parameters_repeat1, + sym_at_ident, + ACTIONS(3811), 1, + anon_sym_LPAREN, + ACTIONS(3813), 1, + anon_sym_LBRACE, STATE(1629), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48527] = 7, + [48578] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1213), 1, - anon_sym_RBRACE, - ACTIONS(3811), 1, - anon_sym_COMMA, - STATE(1679), 1, - aux_sym_enum_arg_repeat1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3815), 1, + anon_sym_SEMI, + STATE(2196), 1, + sym__assign_right_expr, STATE(1630), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48551] = 6, + [48602] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3815), 1, - anon_sym_EQ, - ACTIONS(3813), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3817), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, STATE(1631), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48573] = 5, + [48622] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3817), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3821), 1, anon_sym_SEMI, + STATE(1943), 1, + sym_label_target, STATE(1632), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48593] = 7, + [48646] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3823), 1, anon_sym_SEMI, - STATE(1958), 1, - sym__assign_right_expr, + STATE(1947), 1, + sym_label_target, STATE(1633), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48617] = 7, + [48670] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3821), 1, - anon_sym_COMMA, - ACTIONS(3823), 1, + ACTIONS(3825), 3, anon_sym_RPAREN, - STATE(1648), 1, - aux_sym_attribute_param_list_repeat1, + anon_sym_SEMI, + anon_sym_AMP_AMP, STATE(1634), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48641] = 7, + [48690] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2537), 1, - anon_sym_COMMA, - ACTIONS(3825), 1, - anon_sym_RPAREN, - STATE(1573), 1, - aux_sym_assert_stmt_repeat1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3827), 1, + anon_sym_SEMI, + STATE(2017), 1, + sym__assign_right_expr, STATE(1635), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48665] = 6, + [48714] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3827), 1, + ACTIONS(3829), 3, anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_GT_RPAREN, - STATE(1636), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1636), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__generic_arg_list_repeat1, - [48687] = 7, + [48734] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - sym_const_ident, - ACTIONS(3834), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3831), 1, anon_sym_SEMI, - STATE(2012), 1, - sym_label_target, + STATE(2041), 1, + sym__assign_right_expr, STATE(1637), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48711] = 7, + [48758] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(3794), 1, sym_const_ident, - ACTIONS(3836), 1, - anon_sym_SEMI, - STATE(2015), 1, - sym_label_target, + ACTIONS(3833), 1, + anon_sym_RBRACE, + STATE(1642), 1, + sym_enum_constant, STATE(1638), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48735] = 7, + [48782] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3838), 1, - sym_type_ident, - ACTIONS(3840), 1, - sym_const_ident, - STATE(1752), 1, - sym__module_param, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3835), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym__decl_statement_after_type_repeat1, STATE(1639), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48759] = 7, + [48806] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3807), 1, + ACTIONS(3837), 1, anon_sym_COMMA, - ACTIONS(3842), 1, - anon_sym_GT_RPAREN, - STATE(1661), 1, - aux_sym_generic_module_parameters_repeat1, + ACTIONS(3839), 1, + anon_sym_RBRACE, + STATE(1660), 1, + aux_sym_fault_body_repeat1, STATE(1640), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48783] = 6, - ACTIONS(3700), 1, + [48830] = 6, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3702), 1, + ACTIONS(5), 1, anon_sym_LT_STAR, - ACTIONS(3704), 1, + ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 1, - aux_sym_string_literal_token1, - ACTIONS(3844), 2, - sym_escape_sequence, - anon_sym_DQUOTE, + ACTIONS(3843), 1, + sym_doc_comment_contract_text, + ACTIONS(3841), 2, + anon_sym_STAR_GT, + sym_at_ident, STATE(1641), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48805] = 5, + [48852] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3848), 3, + ACTIONS(3845), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3847), 1, + anon_sym_RBRACE, + STATE(1643), 1, + aux_sym_enum_body_repeat1, STATE(1642), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48825] = 5, + [48876] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3850), 3, + ACTIONS(3796), 1, + anon_sym_RBRACE, + ACTIONS(3849), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + STATE(1680), 1, + aux_sym_enum_body_repeat1, STATE(1643), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48845] = 7, + [48900] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3852), 1, - anon_sym_SEMI, - STATE(2115), 1, - sym__assign_right_expr, - STATE(1644), 3, + ACTIONS(3851), 1, + anon_sym_COMMA, + ACTIONS(3854), 1, + anon_sym_RPAREN, + STATE(1644), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [48869] = 6, + aux_sym_ct_exec_stmt_repeat1, + [48922] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -159482,674 +159053,674 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(3856), 1, - anon_sym_RBRACE, - ACTIONS(3854), 2, - sym_ident, - anon_sym_int, + anon_sym_COMMA, + ACTIONS(3858), 1, + anon_sym_RPAREN, + STATE(1740), 1, + aux_sym_enum_param_list_repeat1, STATE(1645), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48891] = 6, + [48946] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3858), 1, - anon_sym_COMMA, - ACTIONS(3861), 1, - anon_sym_SEMI, - STATE(1646), 4, + ACTIONS(3862), 1, + anon_sym_RBRACE, + ACTIONS(3860), 2, + sym_ident, + anon_sym_int, + STATE(1646), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_asm_stmt_repeat1, - [48913] = 5, + [48968] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 3, + ACTIONS(3864), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3866), 1, anon_sym_SEMI, + STATE(1672), 1, + aux_sym_asm_stmt_repeat1, STATE(1647), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48933] = 6, + [48992] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3865), 1, - anon_sym_COMMA, + ACTIONS(3009), 1, + anon_sym_EQ, ACTIONS(3868), 1, - anon_sym_RPAREN, - STATE(1648), 4, + anon_sym_SEMI, + STATE(1966), 1, + sym__assign_right_expr, + STATE(1648), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_attribute_param_list_repeat1, - [48955] = 5, + [49016] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3870), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3870), 1, + anon_sym_SEMI, + STATE(1983), 1, + sym_label_target, STATE(1649), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48975] = 7, + [49040] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, + ACTIONS(3819), 1, + sym_const_ident, ACTIONS(3872), 1, anon_sym_SEMI, - STATE(1989), 1, - sym__assign_right_expr, + STATE(1986), 1, + sym_label_target, STATE(1650), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48999] = 7, + [49064] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - sym_const_ident, - ACTIONS(3874), 1, - anon_sym_SEMI, - STATE(1997), 1, - sym_label_target, + ACTIONS(3874), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, STATE(1651), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49023] = 7, + [49084] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - sym_const_ident, - ACTIONS(3876), 1, - anon_sym_SEMI, - STATE(2003), 1, - sym_label_target, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, STATE(1652), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49047] = 7, + [49108] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3878), 1, + ACTIONS(3876), 3, anon_sym_COMMA, - ACTIONS(3880), 1, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1729), 1, - aux_sym__decl_statement_after_type_repeat1, STATE(1653), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49071] = 6, + [49128] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1974), 1, - sym__additive_op, - ACTIONS(3245), 2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3878), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1654), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49093] = 7, + [49148] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3882), 1, + ACTIONS(3880), 1, anon_sym_SEMI, - STATE(2052), 1, + STATE(2038), 1, sym__assign_right_expr, STATE(1655), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49117] = 5, + [49172] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 3, + ACTIONS(3882), 1, anon_sym_COMMA, - anon_sym_LPAREN_LT, + ACTIONS(3885), 1, anon_sym_RPAREN, - STATE(1656), 3, + STATE(1656), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [49137] = 7, + aux_sym_attribute_param_list_repeat1, + [49194] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3838), 1, - sym_type_ident, - ACTIONS(3840), 1, - sym_const_ident, - STATE(1629), 1, - sym__module_param, - STATE(1657), 3, + ACTIONS(3887), 1, + anon_sym_COMMA, + ACTIONS(3890), 1, + anon_sym_GT_RPAREN, + STATE(1657), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [49161] = 7, + aux_sym_generic_module_parameters_repeat1, + [49216] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3886), 1, + ACTIONS(3559), 3, anon_sym_COMMA, - ACTIONS(3888), 1, anon_sym_RPAREN, - STATE(1660), 1, - aux_sym_interface_impl_repeat1, + anon_sym_SEMI, STATE(1658), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49185] = 6, + [49236] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2141), 1, - sym__func_macro_name, - ACTIONS(2829), 2, - sym_ident, - sym_at_ident, + ACTIONS(3892), 1, + anon_sym_RBRACK, + ACTIONS(3894), 1, + anon_sym_COLON, + ACTIONS(3896), 1, + anon_sym_DOT_DOT, STATE(1659), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49207] = 6, + [49260] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3890), 1, + ACTIONS(3898), 1, anon_sym_COMMA, - ACTIONS(3893), 1, - anon_sym_RPAREN, - STATE(1660), 4, + ACTIONS(3900), 1, + anon_sym_RBRACE, + STATE(1674), 1, + aux_sym_fault_body_repeat1, + STATE(1660), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_interface_impl_repeat1, - [49229] = 6, + [49284] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3895), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_GT_RPAREN, - STATE(1661), 4, + ACTIONS(3902), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(1661), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_generic_module_parameters_repeat1, - [49251] = 7, + [49304] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3900), 1, - anon_sym_SEMI, - STATE(2142), 1, - sym__assign_right_expr, + ACTIONS(2825), 1, + anon_sym_LPAREN, + ACTIONS(3904), 1, + anon_sym_RPAREN, + STATE(1952), 1, + sym_fn_parameter_list, STATE(1662), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49275] = 7, + [49328] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3902), 1, - anon_sym_COMMA, - ACTIONS(3904), 1, - anon_sym_RBRACE, - STATE(1701), 1, - aux_sym_fault_body_repeat1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3906), 1, + anon_sym_SEMI, + STATE(2141), 1, + sym__assign_right_expr, STATE(1663), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49299] = 7, + [49352] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(3819), 1, sym_const_ident, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_SEMI, - STATE(2150), 1, + STATE(2147), 1, sym_label_target, STATE(1664), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49323] = 7, + [49376] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(3819), 1, sym_const_ident, - ACTIONS(3908), 1, + ACTIONS(3910), 1, anon_sym_SEMI, - STATE(2151), 1, + STATE(2148), 1, sym_label_target, STATE(1665), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49347] = 6, + [49400] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3009), 1, + anon_sym_EQ, ACTIONS(3912), 1, - anon_sym_RBRACE, - ACTIONS(3910), 2, - sym_ident, - anon_sym_int, + anon_sym_SEMI, + STATE(2181), 1, + sym__assign_right_expr, STATE(1666), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49369] = 7, + [49424] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3009), 1, + anon_sym_EQ, ACTIONS(3914), 1, - sym_const_ident, - ACTIONS(3916), 1, - anon_sym_RBRACE, - STATE(1823), 1, - sym_enum_constant, + anon_sym_SEMI, + STATE(2027), 1, + sym__assign_right_expr, STATE(1667), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49393] = 7, + [49448] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3920), 1, - anon_sym_SEMI, - STATE(1745), 1, - aux_sym_asm_stmt_repeat1, - STATE(1668), 3, + ACTIONS(3919), 1, + anon_sym_RPAREN, + STATE(1668), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [49417] = 7, + aux_sym_interface_impl_repeat1, + [49470] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3922), 1, - anon_sym_SEMI, - STATE(2183), 1, - sym__assign_right_expr, + STATE(1968), 1, + sym__func_macro_name, + ACTIONS(2819), 2, + sym_ident, + sym_at_ident, STATE(1669), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49441] = 7, + [49492] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3916), 1, - anon_sym_RBRACE, - ACTIONS(3924), 1, - anon_sym_COMMA, - STATE(1622), 1, - aux_sym_enum_body_repeat1, + STATE(2163), 1, + sym__func_macro_name, + ACTIONS(2819), 2, + sym_ident, + sym_at_ident, STATE(1670), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49465] = 7, + [49514] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3926), 1, - anon_sym_COMMA, - ACTIONS(3928), 1, - anon_sym_RPAREN, - STATE(1724), 1, - aux_sym_enum_param_list_repeat1, + ACTIONS(3923), 1, + anon_sym_RBRACE, + ACTIONS(3921), 2, + sym_ident, + anon_sym_int, STATE(1671), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49489] = 7, + [49536] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2833), 1, - anon_sym_LPAREN, - ACTIONS(3930), 1, - anon_sym_RPAREN, - STATE(2217), 1, - sym_fn_parameter_list, - STATE(1672), 3, + ACTIONS(3925), 1, + anon_sym_COMMA, + ACTIONS(3928), 1, + anon_sym_SEMI, + STATE(1672), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [49513] = 7, - ACTIONS(3), 1, + aux_sym_asm_stmt_repeat1, + [49558] = 6, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, + ACTIONS(3606), 1, anon_sym_LT_STAR, - ACTIONS(7), 1, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(3004), 1, - anon_sym_LPAREN, ACTIONS(3932), 1, - anon_sym_COLON, - STATE(2104), 1, - sym_interface_impl, + aux_sym_string_literal_token1, + ACTIONS(3930), 2, + sym_escape_sequence, + anon_sym_DQUOTE, STATE(1673), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49537] = 5, + [49580] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3934), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, - STATE(1674), 3, + ACTIONS(3934), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + STATE(1674), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [49557] = 5, + aux_sym_fault_body_repeat1, + [49602] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3936), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3939), 1, anon_sym_SEMI, + STATE(2263), 1, + sym__assign_right_expr, STATE(1675), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49577] = 6, + [49626] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3938), 1, - anon_sym_COMMA, + ACTIONS(3819), 1, + sym_const_ident, ACTIONS(3941), 1, anon_sym_SEMI, - STATE(1676), 4, + STATE(1939), 1, + sym_label_target, + STATE(1676), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__decl_statement_after_type_repeat1, - [49599] = 7, + [49650] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, + ACTIONS(3819), 1, + sym_const_ident, ACTIONS(3943), 1, anon_sym_SEMI, - STATE(2132), 1, - sym__assign_right_expr, + STATE(1940), 1, + sym_label_target, STATE(1677), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49623] = 7, + [49674] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, + ACTIONS(3794), 1, + sym_const_ident, ACTIONS(3945), 1, - anon_sym_SEMI, - STATE(2172), 1, - sym__assign_right_expr, + anon_sym_RBRACE, + STATE(1759), 1, + sym_enum_constant, STATE(1678), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49647] = 6, + [49698] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3009), 1, + anon_sym_EQ, ACTIONS(3947), 1, - anon_sym_COMMA, - ACTIONS(3950), 1, - anon_sym_RBRACE, - STATE(1679), 4, + anon_sym_SEMI, + STATE(1961), 1, + sym__assign_right_expr, + STATE(1679), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_arg_repeat1, - [49669] = 7, + [49722] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - sym_const_ident, + ACTIONS(3949), 1, + anon_sym_COMMA, ACTIONS(3952), 1, - anon_sym_SEMI, - STATE(1947), 1, - sym_label_target, - STATE(1680), 3, + anon_sym_RBRACE, + STATE(1680), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [49693] = 7, + aux_sym_enum_body_repeat1, + [49744] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - sym_const_ident, + ACTIONS(3805), 1, + anon_sym_COMMA, ACTIONS(3954), 1, - anon_sym_SEMI, - STATE(1948), 1, - sym_label_target, + anon_sym_RPAREN, + STATE(1668), 1, + aux_sym_interface_impl_repeat1, STATE(1681), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49717] = 5, + [49768] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3956), 3, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_RPAREN, + STATE(2212), 1, + sym__func_macro_name, + ACTIONS(2819), 2, + sym_ident, + sym_at_ident, STATE(1682), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49737] = 7, + [49790] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(3958), 1, - anon_sym_SEMI, - STATE(1970), 1, - sym__assign_right_expr, + ACTIONS(3956), 1, + sym_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, STATE(1683), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49761] = 7, + [49814] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2537), 1, + ACTIONS(3958), 1, anon_sym_COMMA, ACTIONS(3960), 1, anon_sym_RPAREN, - STATE(1573), 1, - aux_sym_assert_stmt_repeat1, + STATE(1710), 1, + aux_sym_attribute_param_list_repeat1, STATE(1684), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49785] = 7, + [49838] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3886), 1, - anon_sym_COMMA, + ACTIONS(1223), 1, + anon_sym_RBRACE, ACTIONS(3962), 1, - anon_sym_RPAREN, - STATE(1658), 1, - aux_sym_interface_impl_repeat1, + anon_sym_COMMA, + STATE(1704), 1, + aux_sym_initializer_list_repeat1, STATE(1685), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49809] = 5, + [49862] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -160164,5088 +159735,5066 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [49829] = 5, + [49882] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 3, + ACTIONS(2533), 1, anon_sym_COMMA, + ACTIONS(3966), 1, anon_sym_RPAREN, - anon_sym_SEMI, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, STATE(1687), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49849] = 5, + [49906] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3968), 1, anon_sym_SEMI, + STATE(2009), 1, + sym__assign_right_expr, STATE(1688), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49869] = 7, + [49930] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3273), 1, - anon_sym_DOT, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym_initializer_list, + STATE(2004), 1, + sym__additive_op, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, STATE(1689), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49893] = 6, + [49952] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3819), 1, + sym_const_ident, ACTIONS(3970), 1, - anon_sym_EQ, - ACTIONS(3968), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + STATE(2014), 1, + sym_label_target, STATE(1690), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49915] = 7, + [49976] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(3819), 1, + sym_const_ident, ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(3974), 1, - anon_sym_RBRACE, - STATE(1736), 1, - aux_sym_enum_arg_repeat1, + anon_sym_SEMI, + STATE(2015), 1, + sym_label_target, STATE(1691), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49939] = 5, + [50000] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3612), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3974), 1, anon_sym_SEMI, + STATE(2037), 1, + sym__assign_right_expr, STATE(1692), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49959] = 7, + [50024] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, ACTIONS(3976), 1, - anon_sym_SEMI, - STATE(2065), 1, - sym__assign_right_expr, + anon_sym_COMMA, + ACTIONS(3978), 1, + anon_sym_RPAREN, + STATE(1644), 1, + aux_sym_ct_exec_stmt_repeat1, STATE(1693), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49983] = 7, + [50048] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3978), 1, - anon_sym_COMMA, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, ACTIONS(3980), 1, - anon_sym_RBRACE, - STATE(1663), 1, - aux_sym_fault_body_repeat1, + anon_sym_COMMA, + ACTIONS(3982), 1, + anon_sym_COLON, STATE(1694), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50007] = 5, + [50072] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3982), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3984), 1, anon_sym_SEMI, + STATE(2111), 1, + sym__assign_right_expr, STATE(1695), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50027] = 7, + [50096] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3984), 1, + ACTIONS(3986), 1, anon_sym_SEMI, - STATE(2019), 1, + STATE(2008), 1, sym__assign_right_expr, STATE(1696), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50051] = 7, + [50120] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - sym_const_ident, - ACTIONS(3986), 1, + ACTIONS(3988), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2024), 1, - sym_label_target, STATE(1697), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50075] = 7, + [50140] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - sym_const_ident, - ACTIONS(3988), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3990), 1, anon_sym_SEMI, - STATE(2025), 1, - sym_label_target, + STATE(2175), 1, + sym__assign_right_expr, STATE(1698), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50099] = 5, + [50164] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3990), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, + ACTIONS(3017), 1, + anon_sym_LPAREN, + ACTIONS(3992), 1, + anon_sym_COLON, + STATE(2262), 1, + sym_interface_impl, STATE(1699), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50119] = 7, + [50188] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, + ACTIONS(3996), 1, anon_sym_EQ, - ACTIONS(3992), 1, - anon_sym_SEMI, - STATE(2045), 1, - sym__assign_right_expr, + ACTIONS(3994), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(1700), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50143] = 6, + [50210] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3994), 1, + ACTIONS(3998), 1, anon_sym_COMMA, - ACTIONS(3997), 1, + ACTIONS(4000), 1, anon_sym_RBRACE, - STATE(1701), 4, + STATE(1685), 1, + aux_sym_initializer_list_repeat1, + STATE(1701), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_fault_body_repeat1, - [50165] = 7, + [50234] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3999), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_RPAREN, - STATE(1733), 1, - aux_sym_ct_exec_stmt_repeat1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(4002), 1, + anon_sym_SEMI, + STATE(2076), 1, + sym__assign_right_expr, STATE(1702), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50189] = 7, + [50258] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4003), 1, - anon_sym_COMMA, - ACTIONS(4005), 1, - anon_sym_RBRACE, - STATE(1670), 1, - aux_sym_enum_body_repeat1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(4004), 1, + anon_sym_SEMI, + STATE(2081), 1, + sym__assign_right_expr, STATE(1703), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50213] = 7, + [50282] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4007), 1, - sym_ident, + ACTIONS(4006), 1, + anon_sym_COMMA, ACTIONS(4009), 1, - sym_ct_ident, - ACTIONS(4011), 1, - sym_ct_type_ident, - STATE(1704), 3, + anon_sym_RBRACE, + STATE(1704), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [50237] = 7, + aux_sym_initializer_list_repeat1, + [50304] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, + ACTIONS(4011), 1, + sym_at_ident, ACTIONS(4013), 1, - anon_sym_COMMA, + anon_sym_LPAREN, ACTIONS(4015), 1, - anon_sym_COLON, + anon_sym_LBRACE, STATE(1705), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50261] = 7, + [50328] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, + ACTIONS(3976), 1, + anon_sym_COMMA, ACTIONS(4017), 1, - anon_sym_SEMI, - STATE(2210), 1, - sym__assign_right_expr, + anon_sym_RPAREN, + STATE(1693), 1, + aux_sym_ct_exec_stmt_repeat1, STATE(1706), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50285] = 7, + [50352] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, ACTIONS(4019), 1, - anon_sym_SEMI, - STATE(1964), 1, - sym__assign_right_expr, + sym_type_ident, + ACTIONS(4021), 1, + sym_const_ident, + STATE(1736), 1, + sym__module_param, STATE(1707), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50309] = 7, + [50376] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(4021), 1, - anon_sym_SEMI, - STATE(2085), 1, - sym__assign_right_expr, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(4023), 1, + anon_sym_RPAREN, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, STATE(1708), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50333] = 7, + [50400] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, + ACTIONS(4027), 1, anon_sym_EQ, - ACTIONS(4023), 1, - anon_sym_SEMI, - STATE(2090), 1, - sym__assign_right_expr, + ACTIONS(4025), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1709), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50357] = 7, + [50422] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3914), 1, - sym_const_ident, - ACTIONS(4025), 1, - anon_sym_RBRACE, - STATE(1823), 1, - sym_enum_constant, + ACTIONS(3958), 1, + anon_sym_COMMA, + ACTIONS(4029), 1, + anon_sym_RPAREN, + STATE(1656), 1, + aux_sym_attribute_param_list_repeat1, STATE(1710), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50381] = 7, + [50446] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4027), 1, - sym_ident, - STATE(1381), 1, - aux_sym__module_path, - STATE(1487), 1, - sym_module_resolution, + ACTIONS(2541), 1, + anon_sym_COMMA, + ACTIONS(4031), 1, + anon_sym_GT_RPAREN, + STATE(1714), 1, + aux_sym__generic_arg_list_repeat1, STATE(1711), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50405] = 7, + [50470] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4029), 1, + ACTIONS(4033), 1, sym_at_ident, - ACTIONS(4031), 1, + ACTIONS(4035), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(4037), 1, anon_sym_LBRACE, STATE(1712), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50429] = 6, + [50494] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2195), 1, - sym__func_macro_name, - ACTIONS(2829), 2, + ACTIONS(4041), 1, + anon_sym_RBRACE, + ACTIONS(4039), 2, sym_ident, - sym_at_ident, + anon_sym_int, STATE(1713), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50451] = 6, + [50516] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4037), 1, - anon_sym_RBRACE, - ACTIONS(4035), 2, - sym_ident, - anon_sym_int, - STATE(1714), 3, + ACTIONS(4043), 1, + anon_sym_COMMA, + ACTIONS(4046), 1, + anon_sym_GT_RPAREN, + STATE(1714), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [50473] = 7, + aux_sym__generic_arg_list_repeat1, + [50538] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4039), 1, - anon_sym_COMMA, - ACTIONS(4041), 1, + ACTIONS(4050), 1, anon_sym_RBRACE, - STATE(1630), 1, - aux_sym_enum_arg_repeat1, + ACTIONS(4048), 2, + sym_ident, + anon_sym_int, STATE(1715), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50497] = 7, + [50560] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(4019), 1, + sym_type_ident, + ACTIONS(4021), 1, sym_const_ident, - ACTIONS(4043), 1, - anon_sym_SEMI, - STATE(2271), 1, - sym_label_target, + STATE(1818), 1, + sym__module_param, STATE(1716), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50521] = 7, + [50584] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - sym_const_ident, - ACTIONS(4045), 1, + ACTIONS(3864), 1, + anon_sym_COMMA, + ACTIONS(4052), 1, anon_sym_SEMI, - STATE(2277), 1, - sym_label_target, + STATE(1647), 1, + aux_sym_asm_stmt_repeat1, STATE(1717), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50545] = 7, + [50608] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2537), 1, + ACTIONS(2533), 1, anon_sym_COMMA, - ACTIONS(4047), 1, + ACTIONS(4054), 1, anon_sym_RPAREN, - STATE(1573), 1, + STATE(1524), 1, aux_sym_assert_stmt_repeat1, STATE(1718), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50569] = 6, + [50632] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4049), 1, + ACTIONS(4056), 1, anon_sym_COMMA, - ACTIONS(4052), 1, - anon_sym_RPAREN, - STATE(1719), 4, + ACTIONS(4058), 1, + anon_sym_GT_RPAREN, + STATE(1657), 1, + aux_sym_generic_module_parameters_repeat1, + STATE(1719), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_param_list_repeat1, - [50591] = 7, + [50656] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4054), 1, - sym_at_ident, - ACTIONS(4056), 1, - anon_sym_LPAREN, - ACTIONS(4058), 1, - anon_sym_LBRACE, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(4060), 1, + anon_sym_SEMI, + STATE(2028), 1, + sym__assign_right_expr, STATE(1720), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50615] = 7, + [50680] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3914), 1, - sym_const_ident, - ACTIONS(4060), 1, - anon_sym_RBRACE, - STATE(1703), 1, - sym_enum_constant, + ACTIONS(4062), 1, + sym_at_ident, + ACTIONS(4064), 1, + anon_sym_LPAREN, + ACTIONS(4066), 1, + anon_sym_LBRACE, STATE(1721), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50639] = 7, + [50704] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2537), 1, - anon_sym_COMMA, - ACTIONS(4062), 1, - anon_sym_RPAREN, - STATE(1573), 1, - aux_sym_assert_stmt_repeat1, + ACTIONS(4068), 1, + sym_ident, + ACTIONS(4070), 1, + sym_ct_ident, + ACTIONS(4072), 1, + sym_ct_type_ident, STATE(1722), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50663] = 5, + [50728] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4064), 3, + ACTIONS(2541), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4074), 1, + anon_sym_GT_RPAREN, + STATE(1714), 1, + aux_sym__generic_arg_list_repeat1, STATE(1723), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50683] = 7, + [50752] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3926), 1, + ACTIONS(4076), 3, anon_sym_COMMA, - ACTIONS(4066), 1, anon_sym_RPAREN, - STATE(1719), 1, - aux_sym_enum_param_list_repeat1, + anon_sym_SEMI, STATE(1724), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50707] = 5, + [50772] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4068), 3, + ACTIONS(4078), 3, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, STATE(1725), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50727] = 7, + [50792] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4070), 1, - sym_at_ident, - ACTIONS(4072), 1, - anon_sym_LPAREN, - ACTIONS(4074), 1, - anon_sym_LBRACE, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(4080), 1, + anon_sym_RPAREN, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, STATE(1726), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50751] = 5, + [50816] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4064), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4082), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, STATE(1727), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50771] = 7, + [50836] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, - sym_ident, - ACTIONS(3271), 1, - sym_ct_ident, - STATE(1751), 1, - sym_local_decl_after_type, + ACTIONS(4084), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1728), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50795] = 7, + [50856] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3878), 1, + ACTIONS(4086), 1, anon_sym_COMMA, - ACTIONS(4076), 1, + ACTIONS(4089), 1, anon_sym_SEMI, - STATE(1676), 1, - aux_sym__decl_statement_after_type_repeat1, - STATE(1729), 3, + STATE(1729), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [50819] = 5, + aux_sym__decl_statement_after_type_repeat1, + [50878] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4091), 1, + sym_at_ident, + ACTIONS(4093), 1, + anon_sym_LPAREN, + ACTIONS(4095), 1, + anon_sym_LBRACE, STATE(1730), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50839] = 7, + [50902] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2537), 1, - anon_sym_COMMA, - ACTIONS(4080), 1, - anon_sym_RPAREN, - STATE(1573), 1, - aux_sym_assert_stmt_repeat1, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(4097), 1, + anon_sym_SEMI, + STATE(2093), 1, + sym_label_target, STATE(1731), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50863] = 7, + [50926] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(4082), 1, + ACTIONS(4099), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2069), 1, - sym__assign_right_expr, STATE(1732), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50887] = 7, + [50946] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3999), 1, + ACTIONS(2533), 1, anon_sym_COMMA, - ACTIONS(4084), 1, + ACTIONS(4101), 1, anon_sym_RPAREN, - STATE(1744), 1, - aux_sym_ct_exec_stmt_repeat1, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, STATE(1733), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50911] = 7, + [50970] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4086), 1, - sym_at_ident, - ACTIONS(4088), 1, - anon_sym_LPAREN, - ACTIONS(4090), 1, - anon_sym_LBRACE, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(4103), 1, + anon_sym_SEMI, + STATE(2097), 1, + sym_label_target, STATE(1734), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50935] = 7, + [50994] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4092), 1, - sym_at_ident, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, - anon_sym_LBRACE, + ACTIONS(3770), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1735), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50959] = 7, + [51014] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1215), 1, - anon_sym_RBRACE, - ACTIONS(4098), 1, + ACTIONS(4056), 1, anon_sym_COMMA, - STATE(1679), 1, - aux_sym_enum_arg_repeat1, + ACTIONS(4105), 1, + anon_sym_GT_RPAREN, + STATE(1719), 1, + aux_sym_generic_module_parameters_repeat1, STATE(1736), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50983] = 7, + [51038] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2537), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, - anon_sym_RPAREN, - STATE(1573), 1, - aux_sym_assert_stmt_repeat1, + ACTIONS(4107), 1, + sym_at_ident, + ACTIONS(4109), 1, + anon_sym_LPAREN, + ACTIONS(4111), 1, + anon_sym_LBRACE, STATE(1737), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51007] = 7, + [51062] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4102), 1, - sym_at_ident, - ACTIONS(4104), 1, - anon_sym_LPAREN, - ACTIONS(4106), 1, - anon_sym_LBRACE, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_RPAREN, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, STATE(1738), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51031] = 7, + [51086] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - ACTIONS(4108), 1, - anon_sym_SEMI, - STATE(2273), 1, - sym__assign_right_expr, + ACTIONS(4115), 3, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_RPAREN, STATE(1739), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51055] = 7, + [51106] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2537), 1, + ACTIONS(3856), 1, anon_sym_COMMA, - ACTIONS(4110), 1, + ACTIONS(4117), 1, anon_sym_RPAREN, - STATE(1573), 1, - aux_sym_assert_stmt_repeat1, + STATE(1625), 1, + aux_sym_enum_param_list_repeat1, STATE(1740), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51079] = 7, + [51130] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3821), 1, - anon_sym_COMMA, - ACTIONS(4112), 1, - anon_sym_RPAREN, - STATE(1634), 1, - aux_sym_attribute_param_list_repeat1, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym_paren_cond, STATE(1741), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51103] = 5, + [51151] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3750), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4119), 1, + anon_sym_DOLLARendif, + ACTIONS(4121), 1, + anon_sym_DOLLARelse, STATE(1742), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51123] = 6, + [51172] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4116), 1, - anon_sym_RBRACE, - ACTIONS(4114), 2, - sym_ident, - anon_sym_int, + ACTIONS(4123), 1, + anon_sym_SEMI, + ACTIONS(4125), 1, + anon_sym_while, STATE(1743), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51145] = 6, + [51193] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_COMMA, - ACTIONS(4121), 1, - anon_sym_RPAREN, - STATE(1744), 4, + ACTIONS(3123), 1, + anon_sym_LBRACE, + STATE(984), 1, + sym_bitstruct_body, + STATE(1744), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_ct_exec_stmt_repeat1, - [51167] = 7, + [51214] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3918), 1, + ACTIONS(3937), 2, anon_sym_COMMA, - ACTIONS(4123), 1, - anon_sym_SEMI, - STATE(1646), 1, - aux_sym_asm_stmt_repeat1, + anon_sym_RBRACE, STATE(1745), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51191] = 7, + [51233] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4125), 1, - anon_sym_RBRACK, ACTIONS(4127), 1, - anon_sym_COLON, + anon_sym_DOLLARendif, ACTIONS(4129), 1, - anon_sym_DOT_DOT, + anon_sym_DOLLARelse, STATE(1746), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51215] = 6, + [51254] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, - anon_sym_LPAREN, - STATE(2200), 1, - sym_paren_expr, + ACTIONS(3900), 1, + anon_sym_RBRACE, + ACTIONS(4131), 1, + sym_const_ident, STATE(1747), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51236] = 6, + [51275] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_DOLLARendif, - ACTIONS(4133), 1, - anon_sym_DOLLARelse, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(707), 1, + sym_switch_body, STATE(1748), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51257] = 6, + [51296] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4135), 1, - anon_sym_DOLLARendif, - ACTIONS(4137), 1, - anon_sym_DOLLARelse, + ACTIONS(4131), 1, + sym_const_ident, + ACTIONS(4133), 1, + anon_sym_RBRACE, STATE(1749), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51278] = 6, + [51317] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3057), 1, - anon_sym_LBRACE, - STATE(711), 1, - sym_switch_body, + ACTIONS(4135), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1750), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51299] = 5, + [51336] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 2, - anon_sym_COMMA, + ACTIONS(4137), 1, + sym_at_ident, + ACTIONS(4139), 1, anon_sym_SEMI, STATE(1751), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51318] = 5, + [51357] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3898), 2, + ACTIONS(4141), 2, anon_sym_COMMA, - anon_sym_GT_RPAREN, + anon_sym_RBRACE, STATE(1752), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51337] = 6, + [51376] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4139), 1, - sym_at_ident, - ACTIONS(4141), 1, + ACTIONS(4143), 1, anon_sym_SEMI, + ACTIONS(4145), 1, + anon_sym_COLON, STATE(1753), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51358] = 6, + [51397] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3741), 1, - anon_sym_LPAREN, - STATE(130), 1, - sym_for_cond, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_switch_body, STATE(1754), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51379] = 6, + [51418] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3153), 1, + ACTIONS(4147), 2, anon_sym_LBRACE, - STATE(1022), 1, - sym_bitstruct_body, + anon_sym_EQ_GT, STATE(1755), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51400] = 6, + [51437] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4143), 1, - anon_sym_SEMI, - ACTIONS(4145), 1, - anon_sym_COLON, + ACTIONS(3121), 1, + anon_sym_LBRACE, + STATE(1214), 1, + sym_bitstruct_body, STATE(1756), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51421] = 6, + [51458] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3071), 1, + ACTIONS(3019), 1, anon_sym_LBRACE, - STATE(504), 1, - sym_switch_body, + STATE(1012), 1, + sym_enum_body, STATE(1757), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51442] = 5, + [51479] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3950), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4149), 1, + sym_at_ident, + ACTIONS(4151), 1, + anon_sym_SEMI, STATE(1758), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51461] = 6, + [51500] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3055), 1, - anon_sym_LBRACE, - STATE(354), 1, - sym_switch_body, + ACTIONS(3952), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(1759), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51482] = 6, + [51519] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, + ACTIONS(4153), 1, anon_sym_SEMI, - ACTIONS(4149), 1, - anon_sym_while, + ACTIONS(4155), 1, + anon_sym_DOT_DOT, STATE(1760), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51503] = 6, + [51540] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4151), 1, - sym_at_ident, - ACTIONS(4153), 1, - anon_sym_SEMI, + ACTIONS(4157), 2, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, STATE(1761), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51524] = 6, + [51559] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2833), 1, - anon_sym_LPAREN, - STATE(1514), 1, - sym_fn_parameter_list, + ACTIONS(4159), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1762), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51545] = 6, + [51578] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3055), 1, - anon_sym_LBRACE, - STATE(384), 1, - sym_switch_body, + ACTIONS(4161), 1, + anon_sym_LPAREN, + STATE(36), 1, + sym_for_cond, STATE(1763), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51566] = 5, + [51599] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3997), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4163), 2, + anon_sym_STAR_GT, + sym_at_ident, STATE(1764), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51585] = 6, + [51618] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4155), 1, + ACTIONS(4165), 1, anon_sym_SEMI, - ACTIONS(4157), 1, + ACTIONS(4167), 1, anon_sym_COLON, STATE(1765), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51606] = 6, + [51639] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, + ACTIONS(4169), 1, anon_sym_LBRACE, - STATE(1833), 1, - sym_compound_stmt, + STATE(971), 1, + sym_interface_body, STATE(1766), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51627] = 5, + [51660] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3893), 2, - anon_sym_COMMA, + ACTIONS(4171), 2, anon_sym_RPAREN, + anon_sym_RBRACK, STATE(1767), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51646] = 5, + [51679] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4159), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_switch_body, STATE(1768), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51665] = 6, + [51700] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4127), 1, - anon_sym_COLON, - ACTIONS(4129), 1, - anon_sym_DOT_DOT, + ACTIONS(4173), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1769), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51686] = 6, + [51719] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4161), 1, - anon_sym_SEMI, - ACTIONS(4163), 1, - anon_sym_COLON, + ACTIONS(3083), 1, + anon_sym_LBRACE, + STATE(1202), 1, + sym_struct_body, STATE(1770), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51707] = 6, + [51740] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3063), 1, - anon_sym_LBRACE, - STATE(751), 1, - sym_switch_body, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(72), 1, + sym_paren_cond, STATE(1771), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51728] = 5, + [51761] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4165), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4175), 1, + sym_at_ident, + STATE(1955), 1, + sym_trailing_block_param, STATE(1772), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51747] = 6, + [51782] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3133), 1, - anon_sym_LBRACE, - STATE(1217), 1, - sym_bitstruct_body, + ACTIONS(3794), 1, + sym_const_ident, + STATE(1759), 1, + sym_enum_constant, STATE(1773), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51768] = 6, + [51803] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(81), 1, - sym_paren_cond, + ACTIONS(4177), 1, + anon_sym_SEMI, + ACTIONS(4179), 1, + anon_sym_while, STATE(1774), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51789] = 5, + [51824] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4167), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4181), 1, + anon_sym_LPAREN, + ACTIONS(4183), 1, + anon_sym_LBRACK, STATE(1775), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51808] = 6, + [51845] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, - anon_sym_SEMI, - ACTIONS(4171), 1, - anon_sym_while, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(763), 1, + sym_switch_body, STATE(1776), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51829] = 5, + [51866] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3544), 2, - sym_ident, - sym_const_ident, + ACTIONS(3801), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1777), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51848] = 6, + [51885] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_ident, - ACTIONS(4175), 1, - anon_sym_COLON, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(765), 1, + sym_switch_body, STATE(1778), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51869] = 5, + [51906] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4177), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4185), 1, + anon_sym_SEMI, + ACTIONS(4187), 1, + anon_sym_COLON, STATE(1779), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51888] = 6, + [51927] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3063), 1, - anon_sym_LBRACE, - STATE(767), 1, - sym_switch_body, + ACTIONS(4189), 1, + anon_sym_SEMI, + ACTIONS(4191), 1, + anon_sym_while, STATE(1780), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51909] = 6, + [51948] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_LBRACE, - STATE(1211), 1, - sym_struct_body, + ACTIONS(4193), 1, + anon_sym_LPAREN, + STATE(39), 1, + sym_ct_foreach_cond, STATE(1781), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51930] = 6, + [51969] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3063), 1, - anon_sym_LBRACE, - STATE(769), 1, - sym_switch_body, + ACTIONS(4195), 1, + anon_sym_DOLLARendif, + ACTIONS(4197), 1, + anon_sym_DOLLARelse, STATE(1782), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51951] = 5, + [51990] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 2, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(780), 1, + sym_switch_body, STATE(1783), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51970] = 6, + [52011] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4179), 1, - anon_sym_SEMI, - ACTIONS(4181), 1, - anon_sym_while, + ACTIONS(4199), 1, + sym_const_ident, + ACTIONS(4201), 1, + anon_sym_RBRACE, STATE(1784), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51991] = 5, + [52032] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4183), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4203), 1, + sym_at_ident, + ACTIONS(4205), 1, + anon_sym_SEMI, STATE(1785), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52010] = 6, + [52053] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4185), 1, - anon_sym_DOLLARendif, - ACTIONS(4187), 1, - anon_sym_DOLLARelse, + ACTIONS(2825), 1, + anon_sym_LPAREN, + STATE(1244), 1, + sym_fn_parameter_list, STATE(1786), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52031] = 5, + [52074] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3504), 2, - sym_ident, - sym_const_ident, + ACTIONS(4207), 1, + anon_sym_SEMI, + ACTIONS(4209), 1, + anon_sym_COLON, STATE(1787), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52050] = 5, + [52095] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4183), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3019), 1, + anon_sym_LBRACE, + STATE(1005), 1, + sym_enum_body, STATE(1788), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52069] = 6, + [52116] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3063), 1, - anon_sym_LBRACE, - STATE(784), 1, - sym_switch_body, + ACTIONS(4211), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1789), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52090] = 6, - ACTIONS(3), 1, + [52135] = 5, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, + ACTIONS(3606), 1, anon_sym_LT_STAR, - ACTIONS(7), 1, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(4189), 1, - sym_const_ident, - ACTIONS(4191), 1, - anon_sym_RBRACE, + ACTIONS(4213), 2, + sym_escape_sequence, + aux_sym_char_literal_token1, STATE(1790), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52111] = 6, + [52154] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4193), 1, - sym_at_ident, - ACTIONS(4195), 1, - anon_sym_SEMI, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_switch_body, STATE(1791), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52132] = 5, + [52175] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4197), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4215), 2, + anon_sym_fn, + anon_sym_RBRACE, STATE(1792), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52151] = 6, + [52194] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4199), 1, - anon_sym_SEMI, - ACTIONS(4201), 1, - anon_sym_COLON, + ACTIONS(4217), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, STATE(1793), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52172] = 6, + [52213] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3073), 1, - anon_sym_LBRACE, - STATE(609), 1, - sym_switch_body, + ACTIONS(4219), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1794), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52193] = 5, + [52232] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3668), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3121), 1, + anon_sym_LBRACE, + STATE(1211), 1, + sym_bitstruct_body, STATE(1795), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52212] = 5, + [52253] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3486), 2, + sym_ident, + sym_const_ident, STATE(1796), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52231] = 6, + [52272] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, + ACTIONS(2825), 1, anon_sym_LPAREN, - STATE(85), 1, - sym_paren_cond, + STATE(1288), 1, + sym_fn_parameter_list, STATE(1797), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52252] = 6, + [52293] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3061), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_fault_body, + ACTIONS(4221), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1798), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52273] = 5, + [52312] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4205), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4175), 1, + sym_at_ident, + STATE(2135), 1, + sym_trailing_block_param, STATE(1799), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52292] = 5, + [52333] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4207), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(3043), 1, + anon_sym_LBRACE, + STATE(470), 1, + sym_switch_body, STATE(1800), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52311] = 6, + [52354] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3055), 1, + ACTIONS(3083), 1, anon_sym_LBRACE, - STATE(367), 1, - sym_switch_body, + STATE(1205), 1, + sym_struct_body, STATE(1801), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52332] = 6, + [52375] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4209), 1, - anon_sym_SEMI, - ACTIONS(4211), 1, - anon_sym_while, + ACTIONS(3520), 2, + sym_ident, + sym_const_ident, STATE(1802), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52353] = 5, - ACTIONS(3700), 1, + [52394] = 6, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3702), 1, + ACTIONS(5), 1, anon_sym_LT_STAR, - ACTIONS(3704), 1, + ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4213), 2, - sym_escape_sequence, - aux_sym_char_literal_token1, + ACTIONS(4223), 1, + anon_sym_SEMI, + ACTIONS(4225), 1, + anon_sym_while, STATE(1803), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52372] = 6, + [52415] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4215), 1, - anon_sym_SEMI, - ACTIONS(4217), 1, + ACTIONS(4227), 1, + anon_sym_COMMA, + ACTIONS(4229), 1, anon_sym_COLON, STATE(1804), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52393] = 6, + [52436] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3053), 1, - anon_sym_LBRACE, - STATE(444), 1, - sym_switch_body, + ACTIONS(4231), 1, + sym_ident, + ACTIONS(4233), 1, + anon_sym_AMP, STATE(1805), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52414] = 6, + [52457] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3055), 1, - anon_sym_LBRACE, - STATE(370), 1, - sym_switch_body, + ACTIONS(4235), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1806), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52435] = 6, + [52476] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(74), 1, - sym_paren_cond, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_switch_body, STATE(1807), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52456] = 6, + [52497] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4219), 1, - anon_sym_SEMI, - ACTIONS(4221), 1, - anon_sym_while, + ACTIONS(3043), 1, + anon_sym_LBRACE, + STATE(424), 1, + sym_switch_body, STATE(1808), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52477] = 6, + [52518] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_LBRACE, - STATE(1207), 1, - sym_struct_body, + ACTIONS(3885), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1809), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52498] = 6, + [52537] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3006), 1, + ACTIONS(3043), 1, anon_sym_LBRACE, - STATE(944), 1, - sym_enum_body, + STATE(426), 1, + sym_switch_body, STATE(1810), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52519] = 5, + [52558] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3737), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1811), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52538] = 6, + [52577] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3053), 1, - anon_sym_LBRACE, - STATE(458), 1, - sym_switch_body, + ACTIONS(4237), 1, + anon_sym_SEMI, + ACTIONS(4239), 1, + anon_sym_while, STATE(1812), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52559] = 6, + [52598] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3053), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_switch_body, + ACTIONS(4241), 1, + anon_sym_DOLLARendif, + ACTIONS(4243), 1, + anon_sym_DOLLARelse, STATE(1813), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52580] = 6, + [52619] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4225), 1, - sym_ident, - STATE(1315), 1, - sym_identifier_list, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym_paren_cond, STATE(1814), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52601] = 5, + [52640] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4227), 2, - anon_sym_fn, - anon_sym_RBRACE, + ACTIONS(3061), 1, + anon_sym_LBRACE, + STATE(995), 1, + sym_fault_body, STATE(1815), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52620] = 5, + [52661] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4229), 2, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, + ACTIONS(3043), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_switch_body, STATE(1816), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52639] = 6, + [52682] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4231), 1, + ACTIONS(4245), 1, anon_sym_SEMI, - ACTIONS(4233), 1, + ACTIONS(4247), 1, anon_sym_while, STATE(1817), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52660] = 5, + [52703] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4235), 2, + ACTIONS(3890), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_GT_RPAREN, STATE(1818), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52679] = 6, + [52722] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4237), 1, - anon_sym_DOLLARendif, - ACTIONS(4239), 1, - anon_sym_DOLLARelse, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(4249), 1, + sym_at_ident, + ACTIONS(4251), 1, + anon_sym_SEMI, STATE(1819), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52700] = 6, + [52743] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, - anon_sym_COMMA, - ACTIONS(4243), 1, - anon_sym_COLON, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(387), 1, + sym_switch_body, STATE(1820), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52721] = 6, + [52764] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3743), 1, - anon_sym_LPAREN, - STATE(134), 1, - sym_foreach_cond, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1626), 1, + sym__assign_right_expr, STATE(1821), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52742] = 6, + [52785] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3053), 1, - anon_sym_LBRACE, - STATE(475), 1, - sym_switch_body, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(4255), 1, + anon_sym_COLON, STATE(1822), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52763] = 5, + [52806] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3795), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4257), 1, + anon_sym_SEMI, + ACTIONS(4259), 1, + anon_sym_while, STATE(1823), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52782] = 6, + [52827] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3073), 1, - anon_sym_LBRACE, - STATE(623), 1, - sym_switch_body, + ACTIONS(4261), 1, + sym_ident, + ACTIONS(4263), 1, + anon_sym_COLON, STATE(1824), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52803] = 6, + [52848] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4245), 1, - sym_at_ident, - ACTIONS(4247), 1, - anon_sym_SEMI, + ACTIONS(3019), 1, + anon_sym_LBRACE, + STATE(949), 1, + sym_enum_body, STATE(1825), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52824] = 6, + [52869] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4249), 1, - sym_ident, - ACTIONS(4251), 1, - anon_sym_AMP, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(2129), 1, + sym_paren_expr, STATE(1826), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52845] = 6, + [52890] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3073), 1, - anon_sym_LBRACE, - STATE(625), 1, - sym_switch_body, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(1827), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52866] = 6, + [52909] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4253), 1, - anon_sym_SEMI, - ACTIONS(4255), 1, - anon_sym_COLON, + ACTIONS(4265), 1, + sym_ident, + STATE(1312), 1, + sym_identifier_list, STATE(1828), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52887] = 6, + [52930] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3153), 1, + ACTIONS(3049), 1, anon_sym_LBRACE, - STATE(991), 1, - sym_bitstruct_body, + STATE(939), 1, + sym_struct_body, STATE(1829), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52908] = 6, + [52951] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4257), 1, - anon_sym_SEMI, - ACTIONS(4259), 1, - anon_sym_while, + ACTIONS(3123), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_bitstruct_body, STATE(1830), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52929] = 6, + [52972] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4261), 1, - sym_at_ident, - STATE(2177), 1, - sym_trailing_block_param, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(73), 1, + sym_paren_cond, STATE(1831), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52950] = 6, + [52993] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4263), 1, - anon_sym_RPAREN, - ACTIONS(4265), 1, - anon_sym_SEMI, + ACTIONS(4267), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(1832), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52971] = 6, + [53012] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4267), 1, - anon_sym_SEMI, - ACTIONS(4269), 1, - anon_sym_while, + ACTIONS(2825), 1, + anon_sym_LPAREN, + STATE(1317), 1, + sym_fn_parameter_list, STATE(1833), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52992] = 6, + [53033] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, + ACTIONS(4161), 1, anon_sym_LPAREN, - STATE(2225), 1, - sym_paren_expr, + STATE(35), 1, + sym_for_cond, STATE(1834), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53013] = 6, + [53054] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, + ACTIONS(4193), 1, anon_sym_LPAREN, - STATE(2077), 1, - sym_paren_expr, + STATE(32), 1, + sym_ct_foreach_cond, STATE(1835), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53034] = 6, + [53075] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(4269), 1, + anon_sym_SEMI, ACTIONS(4271), 1, - anon_sym_DOLLARendif, - ACTIONS(4273), 1, - anon_sym_DOLLARelse, + anon_sym_COLON, STATE(1836), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53055] = 6, + [53096] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4275), 1, - anon_sym_SEMI, - ACTIONS(4277), 1, - anon_sym_COLON, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(618), 1, + sym_switch_body, STATE(1837), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53076] = 6, + [53117] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3047), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_struct_body, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(104), 1, + sym_for_cond, STATE(1838), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53097] = 5, + [53138] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4279), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(105), 1, + sym_foreach_cond, STATE(1839), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53116] = 6, + [53159] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3073), 1, - anon_sym_LBRACE, - STATE(639), 1, - sym_switch_body, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(106), 1, + sym_paren_cond, STATE(1840), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53137] = 6, + [53180] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4281), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_for_cond, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1906), 1, + sym_compound_stmt, STATE(1841), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53158] = 6, + [53201] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4283), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(35), 1, - sym_ct_foreach_cond, + STATE(2177), 1, + sym_paren_expr, STATE(1842), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53179] = 6, + [53222] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4285), 1, - sym_const_ident, - ACTIONS(4287), 1, - anon_sym_RBRACE, + ACTIONS(4273), 1, + anon_sym_RPAREN, + ACTIONS(4275), 1, + anon_sym_SEMI, STATE(1843), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53200] = 6, + [53243] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4289), 1, - sym_at_ident, - ACTIONS(4291), 1, - anon_sym_SEMI, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(2197), 1, + sym_paren_expr, STATE(1844), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53221] = 6, + [53264] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4293), 1, - sym_at_ident, - ACTIONS(4295), 1, - anon_sym_SEMI, + ACTIONS(4277), 1, + anon_sym_LPAREN, + ACTIONS(4279), 1, + anon_sym_LBRACK, STATE(1845), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53242] = 6, + [53285] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3741), 1, - anon_sym_LPAREN, - STATE(103), 1, - sym_for_cond, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(620), 1, + sym_switch_body, STATE(1846), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53263] = 6, + [53306] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3743), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(104), 1, - sym_foreach_cond, + STATE(2088), 1, + sym_paren_expr, STATE(1847), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53284] = 6, + [53327] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(105), 1, - sym_paren_cond, + ACTIONS(3061), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym_fault_body, STATE(1848), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53305] = 6, + [53348] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - STATE(1855), 1, - sym_compound_stmt, + ACTIONS(4281), 2, + anon_sym_COMMA, + anon_sym_RBRACE, STATE(1849), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53326] = 6, + [53367] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3061), 1, - anon_sym_LBRACE, - STATE(903), 1, - sym_fault_body, + ACTIONS(4283), 1, + sym_at_ident, + ACTIONS(4285), 1, + anon_sym_SEMI, STATE(1850), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53347] = 6, + [53388] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3904), 1, - anon_sym_RBRACE, - ACTIONS(4189), 1, - sym_const_ident, + ACTIONS(4287), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1851), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53368] = 6, + [53407] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, + ACTIONS(4289), 1, anon_sym_SEMI, - ACTIONS(4299), 1, - anon_sym_COLON, + ACTIONS(4291), 1, + anon_sym_while, STATE(1852), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53389] = 6, + [53428] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4301), 1, - anon_sym_DOLLARendif, - ACTIONS(4303), 1, - anon_sym_DOLLARelse, + ACTIONS(4161), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym_for_cond, STATE(1853), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53410] = 5, + [53449] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4305), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4193), 1, + anon_sym_LPAREN, + STATE(41), 1, + sym_ct_foreach_cond, STATE(1854), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53429] = 6, + [53470] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4307), 1, + ACTIONS(4293), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(4309), 1, - anon_sym_while, STATE(1855), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53450] = 6, + [53489] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3914), 1, - sym_const_ident, - STATE(1823), 1, - sym_enum_constant, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_for_cond, STATE(1856), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53471] = 6, + [53510] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - STATE(2234), 1, - sym_paren_expr, + STATE(114), 1, + sym_foreach_cond, STATE(1857), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53492] = 6, + [53531] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4311), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, - anon_sym_LBRACK, + STATE(115), 1, + sym_paren_cond, STATE(1858), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53513] = 5, + [53552] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4052), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1934), 1, + sym_compound_stmt, STATE(1859), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53532] = 6, + [53573] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4315), 1, - anon_sym_COMMA, - ACTIONS(4317), 1, - anon_sym_COLON, + ACTIONS(4295), 1, + anon_sym_DOLLARendif, + ACTIONS(4297), 1, + anon_sym_DOLLARelse, STATE(1860), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53553] = 6, + [53594] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3071), 1, + ACTIONS(3063), 1, anon_sym_LBRACE, - STATE(552), 1, + STATE(576), 1, sym_switch_body, STATE(1861), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53574] = 6, + [53615] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4319), 1, - anon_sym_LBRACE, - STATE(954), 1, - sym_interface_body, + ACTIONS(4299), 1, + anon_sym_LPAREN, + STATE(1246), 1, + sym_macro_parameter_list, STATE(1862), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53595] = 6, + [53636] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4321), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - ACTIONS(4323), 1, - anon_sym_LBRACK, + STATE(2091), 1, + sym_paren_expr, STATE(1863), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53616] = 5, + [53657] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4325), 2, - sym_ident, - sym_ct_ident, + ACTIONS(4301), 1, + sym_at_ident, + ACTIONS(4303), 1, + anon_sym_SEMI, STATE(1864), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53635] = 6, + [53678] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4281), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(40), 1, - sym_for_cond, + STATE(2102), 1, + sym_paren_expr, STATE(1865), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53656] = 6, + [53699] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4283), 1, - anon_sym_LPAREN, - STATE(41), 1, - sym_ct_foreach_cond, + ACTIONS(4305), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1866), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53677] = 6, + [53718] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3741), 1, - anon_sym_LPAREN, - STATE(111), 1, - sym_for_cond, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1867), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53698] = 6, + [53737] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3743), 1, - anon_sym_LPAREN, - STATE(112), 1, - sym_foreach_cond, + ACTIONS(4309), 2, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, STATE(1868), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53719] = 6, + [53756] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(113), 1, - sym_paren_cond, + ACTIONS(4311), 2, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, STATE(1869), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53740] = 6, + [53775] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - STATE(1830), 1, - sym_compound_stmt, + ACTIONS(4313), 1, + anon_sym_SEMI, + ACTIONS(4315), 1, + anon_sym_COLON, STATE(1870), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53761] = 6, + [53796] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, + ACTIONS(4161), 1, anon_sym_LPAREN, - STATE(97), 1, - sym_paren_cond, + STATE(57), 1, + sym_for_cond, STATE(1871), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53782] = 6, + [53817] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, + ACTIONS(4193), 1, anon_sym_LPAREN, - STATE(2103), 1, - sym_paren_expr, + STATE(45), 1, + sym_ct_foreach_cond, STATE(1872), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53803] = 6, + [53838] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3133), 1, - anon_sym_LBRACE, - STATE(1219), 1, - sym_bitstruct_body, + ACTIONS(4317), 1, + anon_sym_SEMI, + ACTIONS(4319), 1, + anon_sym_COLON, STATE(1873), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53824] = 6, + [53859] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, - anon_sym_LPAREN, - STATE(2111), 1, - sym_paren_expr, + ACTIONS(4321), 1, + anon_sym_DOLLARendif, + ACTIONS(4323), 1, + anon_sym_DOLLARelse, STATE(1874), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53845] = 5, + [53880] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_for_cond, STATE(1875), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53864] = 6, + [53901] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3006), 1, - anon_sym_LBRACE, - STATE(906), 1, - sym_enum_body, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(121), 1, + sym_foreach_cond, STATE(1876), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53885] = 6, + [53922] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4329), 1, - anon_sym_SEMI, - ACTIONS(4331), 1, - anon_sym_while, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(122), 1, + sym_paren_cond, STATE(1877), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53906] = 5, + [53943] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4333), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1743), 1, + sym_compound_stmt, STATE(1878), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53925] = 6, + [53964] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4335), 1, - anon_sym_LPAREN, - STATE(1252), 1, - sym_macro_parameter_list, + ACTIONS(4325), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1879), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53946] = 6, + [53983] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4337), 1, - anon_sym_SEMI, - ACTIONS(4339), 1, - anon_sym_DOT_DOT, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(564), 1, + sym_switch_body, STATE(1880), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53967] = 5, + [54004] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4341), 2, - anon_sym_STAR_GT, - sym_at_ident, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(567), 1, + sym_switch_body, STATE(1881), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53986] = 6, + [54025] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4281), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(44), 1, - sym_for_cond, + STATE(2216), 1, + sym_paren_expr, STATE(1882), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54007] = 6, + [54046] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4283), 1, - anon_sym_LPAREN, - STATE(45), 1, - sym_ct_foreach_cond, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(362), 1, + sym_switch_body, STATE(1883), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54028] = 5, + [54067] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4343), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(2225), 1, + sym_paren_expr, STATE(1884), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54047] = 5, + [54088] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4345), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3049), 1, + anon_sym_LBRACE, + STATE(1017), 1, + sym_struct_body, STATE(1885), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54066] = 6, + [54109] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3071), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - STATE(505), 1, + STATE(345), 1, sym_switch_body, STATE(1886), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54087] = 6, + [54130] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3741), 1, - anon_sym_LPAREN, - STATE(120), 1, - sym_for_cond, + ACTIONS(4327), 2, + anon_sym_STAR_GT, + sym_at_ident, STATE(1887), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54108] = 6, + [54149] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3743), 1, - anon_sym_LPAREN, - STATE(139), 1, - sym_foreach_cond, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym_switch_body, STATE(1888), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54129] = 6, + [54170] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(121), 1, - sym_paren_cond, + ACTIONS(4089), 2, + anon_sym_COMMA, + anon_sym_SEMI, STATE(1889), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54150] = 6, + [54189] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - STATE(1940), 1, - sym_compound_stmt, + ACTIONS(4329), 2, + anon_sym_COMMA, + anon_sym_COLON, STATE(1890), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54171] = 5, + [54208] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(4331), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, STATE(1891), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54190] = 6, + [54227] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3047), 1, - anon_sym_LBRACE, - STATE(984), 1, - sym_struct_body, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym_paren_cond, STATE(1892), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54211] = 5, + [54248] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4349), 2, - anon_sym_STAR_GT, - sym_at_ident, + ACTIONS(3919), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1893), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54230] = 6, + [54267] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, + ACTIONS(4161), 1, anon_sym_LPAREN, - STATE(2229), 1, - sym_paren_expr, + STATE(49), 1, + sym_for_cond, STATE(1894), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54251] = 6, + [54288] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3057), 1, - anon_sym_LBRACE, - STATE(679), 1, - sym_switch_body, + ACTIONS(4193), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_ct_foreach_cond, STATE(1895), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54272] = 6, + [54309] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(2236), 1, - sym_paren_expr, + STATE(62), 1, + sym_paren_cond, STATE(1896), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54293] = 6, + [54330] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, - ACTIONS(4351), 1, - anon_sym_LPAREN, + ACTIONS(4333), 1, + anon_sym_SEMI, + ACTIONS(4335), 1, + anon_sym_while, STATE(1897), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54314] = 5, + [54351] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 2, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(127), 1, + sym_for_cond, STATE(1898), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54333] = 6, + [54372] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3006), 1, - anon_sym_LBRACE, - STATE(995), 1, - sym_enum_body, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(128), 1, + sym_foreach_cond, STATE(1899), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54354] = 6, + [54393] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(59), 1, + STATE(129), 1, sym_paren_cond, STATE(1900), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54375] = 6, + [54414] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4281), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_for_cond, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1780), 1, + sym_compound_stmt, STATE(1901), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54396] = 6, + [54435] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4283), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_ct_foreach_cond, + ACTIONS(3894), 1, + anon_sym_COLON, + ACTIONS(3896), 1, + anon_sym_DOT_DOT, STATE(1902), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54417] = 6, + [54456] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(135), 1, - sym_paren_cond, + STATE(1984), 1, + sym_paren_expr, STATE(1903), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54438] = 6, + [54477] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2833), 1, - anon_sym_LPAREN, - STATE(1335), 1, - sym_fn_parameter_list, + ACTIONS(4171), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, STATE(1904), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54459] = 6, + [54496] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3741), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(126), 1, - sym_for_cond, + STATE(1990), 1, + sym_paren_expr, STATE(1905), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54480] = 6, + [54517] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3743), 1, - anon_sym_LPAREN, - STATE(127), 1, - sym_foreach_cond, + ACTIONS(4337), 1, + anon_sym_SEMI, + ACTIONS(4339), 1, + anon_sym_while, STATE(1906), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54501] = 6, + [54538] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(128), 1, - sym_paren_cond, + ACTIONS(3928), 2, + anon_sym_COMMA, + anon_sym_SEMI, STATE(1907), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54522] = 6, + [54557] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, - anon_sym_LBRACE, - STATE(1784), 1, - sym_compound_stmt, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(107), 1, + sym_for_cond, STATE(1908), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54543] = 6, + [54578] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2833), 1, - anon_sym_LPAREN, - STATE(1292), 1, - sym_fn_parameter_list, + ACTIONS(4341), 2, + anon_sym_RPAREN, + anon_sym_SEMI, STATE(1909), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54564] = 6, + [54597] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, - anon_sym_LPAREN, - STATE(1993), 1, - sym_paren_expr, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(690), 1, + sym_switch_body, STATE(1910), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54585] = 5, + [54618] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4355), 2, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, + ACTIONS(4161), 1, + anon_sym_LPAREN, + STATE(54), 1, + sym_for_cond, STATE(1911), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54604] = 6, + [54639] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, + ACTIONS(4193), 1, anon_sym_LPAREN, - STATE(1999), 1, - sym_paren_expr, + STATE(55), 1, + sym_ct_foreach_cond, STATE(1912), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54625] = 5, + [54660] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4357), 2, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4343), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, STATE(1913), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54644] = 6, + [54679] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4359), 1, - anon_sym_SEMI, - ACTIONS(4361), 1, - anon_sym_while, + ACTIONS(4343), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, STATE(1914), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54665] = 6, + [54698] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4281), 1, + ACTIONS(3655), 1, anon_sym_LPAREN, - STATE(53), 1, + STATE(136), 1, sym_for_cond, STATE(1915), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54686] = 6, + [54719] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4283), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - STATE(54), 1, - sym_ct_foreach_cond, + STATE(137), 1, + sym_foreach_cond, STATE(1916), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54707] = 6, + [54740] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3071), 1, - anon_sym_LBRACE, - STATE(534), 1, - sym_switch_body, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(138), 1, + sym_paren_cond, STATE(1917), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54728] = 6, + [54761] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4281), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_for_cond, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym_compound_stmt, STATE(1918), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54749] = 6, + [54782] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3741), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - STATE(136), 1, - sym_for_cond, + STATE(108), 1, + sym_foreach_cond, STATE(1919), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54770] = 6, + [54803] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3743), 1, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(4345), 1, anon_sym_LPAREN, - STATE(98), 1, - sym_foreach_cond, STATE(1920), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54791] = 6, + [54824] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(137), 1, - sym_paren_cond, + STATE(2059), 1, + sym_paren_expr, STATE(1921), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54812] = 6, + [54845] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1980), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - STATE(1817), 1, - sym_compound_stmt, + STATE(364), 1, + sym_switch_body, STATE(1922), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54833] = 5, + [54866] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4363), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(2065), 1, + sym_paren_expr, STATE(1923), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54852] = 5, + [54887] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4365), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2825), 1, + anon_sym_LPAREN, + STATE(1502), 1, + sym_fn_parameter_list, STATE(1924), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54871] = 5, + [54908] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4365), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4347), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LBRACK, STATE(1925), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54890] = 6, + [54929] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(2068), 1, - sym_paren_expr, + STATE(109), 1, + sym_paren_cond, STATE(1926), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54911] = 6, + [54950] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3745), 1, - anon_sym_LPAREN, - STATE(63), 1, - sym_paren_cond, + ACTIONS(4351), 1, + anon_sym_COMMA, + ACTIONS(4353), 1, + anon_sym_COLON, STATE(1927), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54932] = 6, + [54971] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3085), 1, - anon_sym_LPAREN, - STATE(2074), 1, - sym_paren_expr, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1817), 1, + sym_compound_stmt, STATE(1928), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54953] = 6, + [54992] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4283), 1, + ACTIONS(4355), 1, anon_sym_LPAREN, - STATE(39), 1, - sym_ct_foreach_cond, + ACTIONS(4357), 1, + anon_sym_LBRACK, STATE(1929), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54974] = 6, + [55013] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2833), 1, - anon_sym_LPAREN, - STATE(1232), 1, - sym_fn_parameter_list, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(692), 1, + sym_switch_body, STATE(1930), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [54995] = 6, + [55034] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3057), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_switch_body, + ACTIONS(4359), 2, + anon_sym_COMMA, + anon_sym_RPAREN, STATE(1931), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55016] = 6, + [55053] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4367), 1, - anon_sym_LPAREN, - ACTIONS(4369), 1, - anon_sym_LBRACK, + ACTIONS(4361), 1, + anon_sym_SEMI, + ACTIONS(4363), 1, + anon_sym_while, STATE(1932), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55037] = 6, + [55074] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4261), 1, - sym_at_ident, - STATE(2135), 1, - sym_trailing_block_param, + ACTIONS(4365), 2, + sym_ident, + sym_ct_ident, STATE(1933), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55058] = 6, + [55093] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3033), 1, - anon_sym_EQ, - STATE(1687), 1, - sym__assign_right_expr, + ACTIONS(4367), 1, + anon_sym_SEMI, + ACTIONS(4369), 1, + anon_sym_while, STATE(1934), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55079] = 5, + [55114] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4371), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3646), 1, + anon_sym_SEMI, STATE(1935), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55098] = 5, + [55132] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4373), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4371), 1, + anon_sym_DOLLARendif, STATE(1936), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55117] = 6, + [55150] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4375), 1, - anon_sym_LPAREN, - ACTIONS(4377), 1, - anon_sym_LBRACK, + ACTIONS(4373), 1, + anon_sym_COLON, STATE(1937), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55138] = 6, + [55168] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3057), 1, - anon_sym_LBRACE, - STATE(697), 1, - sym_switch_body, + ACTIONS(4375), 1, + anon_sym_SEMI, STATE(1938), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55159] = 5, + [55186] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4379), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(4377), 1, + anon_sym_SEMI, STATE(1939), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55178] = 6, + [55204] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4381), 1, + ACTIONS(4379), 1, anon_sym_SEMI, - ACTIONS(4383), 1, - anon_sym_while, STATE(1940), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55199] = 5, + [55222] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3572), 1, + anon_sym_SEMI, STATE(1941), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55218] = 5, + [55240] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4385), 1, - sym_const_ident, + ACTIONS(4381), 1, + anon_sym_RPAREN, STATE(1942), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55236] = 5, + [55258] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4387), 1, + ACTIONS(4383), 1, anon_sym_SEMI, STATE(1943), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55254] = 5, + [55276] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4389), 1, + ACTIONS(4385), 1, anon_sym_SEMI, STATE(1944), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55272] = 5, + [55294] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4391), 1, - anon_sym_EQ, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, STATE(1945), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55290] = 5, + [55312] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3203), 1, + ACTIONS(4387), 1, anon_sym_SEMI, STATE(1946), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55308] = 5, + [55330] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4393), 1, + ACTIONS(4389), 1, anon_sym_SEMI, STATE(1947), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55326] = 5, + [55348] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4395), 1, + ACTIONS(4391), 1, anon_sym_SEMI, STATE(1948), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55344] = 5, + [55366] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4397), 1, - anon_sym_LBRACE, + ACTIONS(4181), 1, + anon_sym_LPAREN, STATE(1949), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55362] = 5, + [55384] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3632), 1, + ACTIONS(4393), 1, anon_sym_SEMI, STATE(1950), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55380] = 5, + [55402] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4399), 1, - anon_sym_GT_RPAREN, + ACTIONS(4395), 1, + anon_sym_RPAREN, STATE(1951), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55398] = 5, + [55420] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4401), 1, - anon_sym_SEMI, + ACTIONS(4397), 1, + anon_sym_RPAREN, STATE(1952), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55416] = 5, + [55438] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4403), 1, - anon_sym_LPAREN, + ACTIONS(3612), 1, + anon_sym_SEMI, STATE(1953), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55434] = 5, + [55456] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4405), 1, - anon_sym_RPAREN, + ACTIONS(4399), 1, + anon_sym_DOT, STATE(1954), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55452] = 5, + [55474] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - sym_integer_literal, + ACTIONS(4401), 1, + anon_sym_RPAREN, STATE(1955), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55470] = 5, + [55492] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4409), 1, - sym_integer_literal, + ACTIONS(4403), 1, + anon_sym_SEMI, STATE(1956), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55488] = 5, + [55510] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4411), 1, - anon_sym_LBRACE, + ACTIONS(4405), 1, + anon_sym_BQUOTE, STATE(1957), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55506] = 5, + [55528] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4413), 1, - anon_sym_SEMI, + ACTIONS(2803), 1, + anon_sym_RPAREN, STATE(1958), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55524] = 5, + [55546] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4415), 1, - anon_sym_EQ, + ACTIONS(4407), 1, + anon_sym_SEMI, STATE(1959), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55542] = 5, + [55564] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4417), 1, - anon_sym_RPAREN, + ACTIONS(4409), 1, + anon_sym_SEMI, STATE(1960), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55560] = 5, + [55582] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4419), 1, - sym_integer_literal, + ACTIONS(4411), 1, + anon_sym_SEMI, STATE(1961), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55578] = 5, + [55600] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4421), 1, - anon_sym_SEMI, + ACTIONS(4413), 1, + ts_builtin_sym_end, STATE(1962), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55596] = 5, + [55618] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4417), 1, - anon_sym_RBRACK, + ACTIONS(4415), 1, + anon_sym_SEMI, STATE(1963), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55614] = 5, + [55636] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4423), 1, - anon_sym_SEMI, + ACTIONS(4417), 1, + anon_sym_RPAREN, STATE(1964), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55632] = 5, + [55654] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4425), 1, - anon_sym_SEMI, + ACTIONS(1237), 1, + anon_sym_RPAREN, STATE(1965), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55650] = 5, + [55672] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4427), 1, + ACTIONS(4419), 1, anon_sym_SEMI, STATE(1966), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55668] = 5, + [55690] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4429), 1, + ACTIONS(4421), 1, anon_sym_SEMI, STATE(1967), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55686] = 5, + [55708] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4431), 1, - anon_sym_SEMI, + ACTIONS(4423), 1, + anon_sym_LPAREN, STATE(1968), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55704] = 5, + [55726] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4433), 1, - anon_sym_SEMI, + ACTIONS(4425), 1, + sym_integer_literal, STATE(1969), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55722] = 5, + [55744] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4435), 1, + ACTIONS(4427), 1, anon_sym_SEMI, STATE(1970), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55740] = 5, + [55762] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, + ACTIONS(4429), 1, + anon_sym_RPAREN, STATE(1971), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55758] = 5, + [55780] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4439), 1, - anon_sym_RBRACK, + ACTIONS(4431), 1, + anon_sym_LPAREN, STATE(1972), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55776] = 5, + [55798] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3211), 1, - anon_sym_RBRACE, + ACTIONS(4433), 1, + sym_integer_literal, STATE(1973), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55794] = 5, + [55816] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - sym_integer_literal, + ACTIONS(4435), 1, + anon_sym_GT_RPAREN, STATE(1974), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55812] = 5, + [55834] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1247), 1, - anon_sym_RPAREN, + ACTIONS(4437), 1, + anon_sym_DOLLARendfor, STATE(1975), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55830] = 5, + [55852] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_RBRACK, + ACTIONS(4439), 1, + anon_sym_DOLLARendforeach, STATE(1976), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55848] = 5, + [55870] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - sym_ident, + ACTIONS(4441), 1, + anon_sym_SEMI, STATE(1977), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55866] = 5, + [55888] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4447), 1, - anon_sym_BQUOTE, + ACTIONS(4443), 1, + anon_sym_SEMI, STATE(1978), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55884] = 5, + [55906] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_RBRACK, + ACTIONS(3628), 1, + anon_sym_SEMI, STATE(1979), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55902] = 5, + [55924] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4451), 1, - anon_sym_STAR_SLASH, + ACTIONS(4445), 1, + sym_integer_literal, STATE(1980), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55920] = 5, + [55942] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 1, + ACTIONS(4447), 1, anon_sym_SEMI, STATE(1981), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55938] = 5, + [55960] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4455), 1, - anon_sym_RPAREN, + ACTIONS(4449), 1, + anon_sym_SEMI, STATE(1982), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55956] = 5, + [55978] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4457), 1, + ACTIONS(4451), 1, anon_sym_SEMI, STATE(1983), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55974] = 5, + [55996] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4459), 1, - anon_sym_DOLLARendfor, + ACTIONS(4453), 1, + anon_sym_SEMI, STATE(1984), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [55992] = 5, + [56014] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4461), 1, - anon_sym_DOLLARendforeach, + ACTIONS(3664), 1, + anon_sym_SEMI, STATE(1985), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56010] = 5, + [56032] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4455), 1, anon_sym_SEMI, STATE(1986), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56028] = 5, + [56050] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4465), 1, - anon_sym_SEMI, + ACTIONS(4457), 1, + anon_sym_DOLLARendif, STATE(1987), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56046] = 5, + [56068] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(4459), 1, anon_sym_SEMI, STATE(1988), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56064] = 5, + [56086] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4467), 1, + ACTIONS(4461), 1, anon_sym_SEMI, STATE(1989), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56082] = 5, + [56104] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4469), 1, + ACTIONS(4463), 1, anon_sym_SEMI, STATE(1990), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56100] = 5, + [56122] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4471), 1, - anon_sym_DOLLARendif, + ACTIONS(4465), 1, + anon_sym_SEMI, STATE(1991), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56118] = 5, + [56140] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4473), 1, - anon_sym_EQ, + ACTIONS(4467), 1, + anon_sym_DOLLARendif, STATE(1992), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56136] = 5, + [56158] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4475), 1, + ACTIONS(4469), 1, anon_sym_SEMI, STATE(1993), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56154] = 5, + [56176] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4477), 1, + ACTIONS(3610), 1, anon_sym_SEMI, STATE(1994), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56172] = 5, + [56194] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4479), 1, + ACTIONS(4471), 1, anon_sym_SEMI, STATE(1995), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56190] = 5, + [56212] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4481), 1, - anon_sym_DOLLARendif, + ACTIONS(4473), 1, + anon_sym_SEMI, STATE(1996), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56208] = 5, + [56230] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4483), 1, + ACTIONS(4475), 1, anon_sym_SEMI, STATE(1997), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56226] = 5, + [56248] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4485), 1, - anon_sym_SEMI, + ACTIONS(4477), 1, + anon_sym_COLON, STATE(1998), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56244] = 5, + [56266] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4487), 1, - anon_sym_SEMI, + ACTIONS(3229), 1, + sym_integer_literal, STATE(1999), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56262] = 5, + [56284] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4489), 1, - anon_sym_SEMI, + ACTIONS(4479), 1, + anon_sym_RBRACK, STATE(2000), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56280] = 5, + [56302] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4491), 1, - anon_sym_DOLLARendif, + ACTIONS(4481), 1, + anon_sym_SEMI, STATE(2001), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56298] = 5, + [56320] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2053), 1, - anon_sym_COLON_COLON, + ACTIONS(4483), 1, + anon_sym_SEMI, STATE(2002), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56316] = 5, + [56338] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4493), 1, + ACTIONS(4485), 1, anon_sym_SEMI, STATE(2003), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56334] = 5, + [56356] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4495), 1, - anon_sym_SEMI, + ACTIONS(4487), 1, + sym_integer_literal, STATE(2004), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56352] = 5, + [56374] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_SEMI, + ACTIONS(4489), 1, + anon_sym_RPAREN, STATE(2005), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56370] = 5, + [56392] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, + ACTIONS(4491), 1, anon_sym_SEMI, STATE(2006), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56388] = 5, + [56410] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4501), 1, - anon_sym_SEMI, + ACTIONS(4493), 1, + anon_sym_RBRACK, STATE(2007), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56406] = 5, + [56428] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3729), 1, + ACTIONS(4495), 1, anon_sym_SEMI, STATE(2008), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56424] = 5, + [56446] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4497), 1, anon_sym_SEMI, STATE(2009), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56442] = 5, + [56464] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4505), 1, - anon_sym_LPAREN, + ACTIONS(4499), 1, + anon_sym_SEMI, STATE(2010), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56460] = 5, + [56482] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 1, - anon_sym_COLON, + ACTIONS(4501), 1, + anon_sym_SEMI, STATE(2011), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56478] = 5, + [56500] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_SEMI, + ACTIONS(4345), 1, + anon_sym_LPAREN, STATE(2012), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56496] = 5, + [56518] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4511), 1, - anon_sym_SEMI, + ACTIONS(4503), 1, + sym_block_comment_text, STATE(2013), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56514] = 5, + [56536] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4513), 1, + ACTIONS(4505), 1, anon_sym_SEMI, STATE(2014), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56532] = 5, + [56554] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4515), 1, + ACTIONS(4507), 1, anon_sym_SEMI, STATE(2015), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56550] = 5, + [56572] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_SEMI, + ACTIONS(4509), 1, + anon_sym_DOT, STATE(2016), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56568] = 5, + [56590] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - anon_sym_COLON, + ACTIONS(4511), 1, + anon_sym_SEMI, STATE(2017), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56586] = 5, + [56608] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4521), 1, - anon_sym_SEMI, + ACTIONS(4513), 1, + anon_sym_COLON, STATE(2018), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56604] = 5, + [56626] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_SEMI, + ACTIONS(4515), 1, + anon_sym_RPAREN, STATE(2019), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56622] = 5, + [56644] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4525), 1, - anon_sym_SEMI, + ACTIONS(3163), 1, + anon_sym_RBRACE, STATE(2020), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56640] = 5, + [56662] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, - anon_sym_SEMI, + ACTIONS(4517), 1, + anon_sym_LPAREN, STATE(2021), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56658] = 5, + [56680] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4527), 1, - sym_type_ident, + ACTIONS(4519), 1, + anon_sym_EQ, STATE(2022), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56676] = 5, + [56698] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4529), 1, - anon_sym_SEMI, + ACTIONS(4231), 1, + sym_ident, STATE(2023), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56694] = 5, + [56716] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4531), 1, - anon_sym_SEMI, + ACTIONS(4521), 1, + anon_sym_EQ, STATE(2024), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56712] = 5, + [56734] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, + ACTIONS(4523), 1, anon_sym_SEMI, STATE(2025), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56730] = 5, + [56752] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3552), 1, + ACTIONS(4525), 1, anon_sym_SEMI, STATE(2026), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56748] = 5, + [56770] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_DOT, + ACTIONS(4527), 1, + anon_sym_SEMI, STATE(2027), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56766] = 5, + [56788] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3143), 1, + ACTIONS(4529), 1, anon_sym_SEMI, STATE(2028), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56784] = 5, + [56806] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_SEMI, + ACTIONS(4531), 1, + anon_sym_RPAREN, STATE(2029), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56802] = 5, + [56824] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3167), 1, + ACTIONS(4533), 1, anon_sym_SEMI, STATE(2030), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56820] = 5, + [56842] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, - anon_sym_LPAREN, + ACTIONS(4535), 1, + anon_sym_SEMI, STATE(2031), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56838] = 5, + [56860] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4539), 1, - anon_sym_SEMI, + ACTIONS(4537), 1, + anon_sym_EQ, STATE(2032), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56856] = 5, + [56878] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_GT_RPAREN, + ACTIONS(4539), 1, + anon_sym_SEMI, STATE(2033), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56874] = 5, + [56896] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3183), 1, - anon_sym_EQ, + ACTIONS(4541), 1, + sym_type_ident, STATE(2034), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56892] = 5, + [56914] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165253,168 +164802,168 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4543), 1, - sym_type_ident, + anon_sym_SEMI, STATE(2035), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56910] = 5, + [56932] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4311), 1, - anon_sym_LPAREN, + ACTIONS(4545), 1, + anon_sym_SEMI, STATE(2036), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56928] = 5, + [56950] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4545), 1, - sym_ident, + ACTIONS(4547), 1, + anon_sym_SEMI, STATE(2037), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56946] = 5, + [56968] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4547), 1, - anon_sym_RPAREN, + ACTIONS(4549), 1, + anon_sym_SEMI, STATE(2038), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56964] = 5, + [56986] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4549), 1, + ACTIONS(4551), 1, anon_sym_SEMI, STATE(2039), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [56982] = 5, + [57004] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4551), 1, + ACTIONS(4553), 1, anon_sym_SEMI, STATE(2040), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57000] = 5, + [57022] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4553), 1, - sym_type_ident, + ACTIONS(4555), 1, + anon_sym_SEMI, STATE(2041), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57018] = 5, + [57040] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4555), 1, + ACTIONS(4557), 1, anon_sym_SEMI, STATE(2042), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57036] = 5, + [57058] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4557), 1, + ACTIONS(4559), 1, anon_sym_SEMI, STATE(2043), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57054] = 5, + [57076] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4559), 1, + ACTIONS(4561), 1, anon_sym_SEMI, STATE(2044), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57072] = 5, + [57094] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4561), 1, - anon_sym_SEMI, + ACTIONS(4563), 1, + anon_sym_COLON, STATE(2045), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57090] = 5, + [57112] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4563), 1, - anon_sym_SEMI, + ACTIONS(4565), 1, + anon_sym_RPAREN, STATE(2046), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57108] = 5, + [57130] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - sym_ident, + ACTIONS(3698), 1, + anon_sym_COLON, STATE(2047), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57126] = 5, + [57148] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165422,12 +164971,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4567), 1, - anon_sym_SEMI, + anon_sym_LBRACE, STATE(2048), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57144] = 5, + [57166] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165435,12 +164984,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4569), 1, - anon_sym_SEMI, + anon_sym_RBRACK, STATE(2049), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57162] = 5, + [57184] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165448,12 +164997,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4571), 1, - anon_sym_SEMI, + anon_sym_DOLLARendfor, STATE(2050), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57180] = 5, + [57202] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165461,12 +165010,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4573), 1, - anon_sym_SEMI, + anon_sym_DOLLARendforeach, STATE(2051), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57198] = 5, + [57220] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165479,7 +165028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [57216] = 5, + [57238] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165487,25 +165036,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4577), 1, - sym_ct_ident, + anon_sym_SEMI, STATE(2053), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57234] = 5, + [57256] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3177), 1, - anon_sym_RBRACE, + ACTIONS(3674), 1, + anon_sym_SEMI, STATE(2054), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57252] = 5, + [57274] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165518,7 +165067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [57270] = 5, + [57292] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165526,38 +165075,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4581), 1, - anon_sym_LPAREN, + sym_ident, STATE(2056), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57288] = 5, + [57310] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4249), 1, - sym_ident, + ACTIONS(4583), 1, + anon_sym_SEMI, STATE(2057), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57306] = 5, + [57328] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4583), 1, - anon_sym_COLON, + ACTIONS(3407), 1, + anon_sym_SEMI, STATE(2058), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57324] = 5, + [57346] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165565,12 +165114,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4585), 1, - anon_sym_DOLLARendfor, + anon_sym_SEMI, STATE(2059), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57342] = 5, + [57364] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165578,12 +165127,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4587), 1, - anon_sym_DOLLARendforeach, + anon_sym_SEMI, STATE(2060), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57360] = 5, + [57382] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165591,12 +165140,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4589), 1, - anon_sym_SEMI, + anon_sym_EQ, STATE(2061), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57378] = 5, + [57400] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165604,220 +165153,220 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4591), 1, - anon_sym_SEMI, + anon_sym_DOLLARendif, STATE(2062), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57396] = 5, + [57418] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3721), 1, + ACTIONS(4593), 1, anon_sym_SEMI, STATE(2063), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57414] = 5, + [57436] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_DOT, + ACTIONS(4595), 1, + anon_sym_SEMI, STATE(2064), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57432] = 5, + [57454] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, + ACTIONS(4597), 1, anon_sym_SEMI, STATE(2065), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57450] = 5, + [57472] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4597), 1, + ACTIONS(4599), 1, anon_sym_SEMI, STATE(2066), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57468] = 5, + [57490] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4599), 1, - anon_sym_LPAREN, + ACTIONS(4601), 1, + anon_sym_DOLLARendif, STATE(2067), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57486] = 5, + [57508] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4601), 1, - anon_sym_SEMI, + ACTIONS(4603), 1, + anon_sym_DOLLARendfor, STATE(2068), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57504] = 5, + [57526] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4603), 1, - anon_sym_SEMI, + ACTIONS(4605), 1, + anon_sym_DOLLARendforeach, STATE(2069), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57522] = 5, + [57544] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4605), 1, - sym_at_ident, + ACTIONS(4607), 1, + anon_sym_SEMI, STATE(2070), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57540] = 5, + [57562] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_DOLLARendif, + ACTIONS(4609), 1, + anon_sym_SEMI, STATE(2071), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57558] = 5, + [57580] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4609), 1, + ACTIONS(4611), 1, anon_sym_SEMI, STATE(2072), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57576] = 5, + [57598] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, + ACTIONS(4613), 1, anon_sym_SEMI, STATE(2073), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57594] = 5, + [57616] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4613), 1, - anon_sym_SEMI, + ACTIONS(4615), 1, + anon_sym_EQ, STATE(2074), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57612] = 5, + [57634] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4615), 1, + ACTIONS(4617), 1, anon_sym_SEMI, STATE(2075), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57630] = 5, + [57652] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4617), 1, - anon_sym_DOLLARendif, + ACTIONS(4619), 1, + anon_sym_SEMI, STATE(2076), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57648] = 5, + [57670] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4619), 1, + ACTIONS(4621), 1, anon_sym_SEMI, STATE(2077), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57666] = 5, + [57688] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, - anon_sym_RBRACE, + ACTIONS(3680), 1, + anon_sym_SEMI, STATE(2078), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57684] = 5, + [57706] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165830,7 +165379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [57702] = 5, + [57724] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165843,7 +165392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [57720] = 5, + [57742] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165856,7 +165405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [57738] = 5, + [57760] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165864,103 +165413,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4629), 1, - anon_sym_DOLLARendfor, + anon_sym_COLON, STATE(2082), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57756] = 5, + [57778] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3239), 1, - sym_integer_literal, + ACTIONS(4631), 1, + anon_sym_GT_RPAREN, STATE(2083), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57774] = 5, + [57796] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4631), 1, - anon_sym_LBRACE, + ACTIONS(4633), 1, + anon_sym_LPAREN, STATE(2084), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57792] = 5, + [57814] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4633), 1, - anon_sym_SEMI, + ACTIONS(4635), 1, + anon_sym_RPAREN, STATE(2085), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57810] = 5, + [57832] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4635), 1, - anon_sym_SEMI, + ACTIONS(4637), 1, + sym_type_ident, STATE(2086), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57828] = 5, + [57850] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4637), 1, - anon_sym_DOLLARendforeach, + ACTIONS(4639), 1, + sym_const_ident, STATE(2087), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57846] = 5, + [57868] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4639), 1, + ACTIONS(4641), 1, anon_sym_SEMI, STATE(2088), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57864] = 5, + [57886] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4641), 1, + ACTIONS(2770), 1, anon_sym_SEMI, STATE(2089), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57882] = 5, + [57904] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165973,7 +165522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [57900] = 5, + [57922] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -165986,202 +165535,202 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [57918] = 5, + [57940] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3564), 1, - anon_sym_SEMI, + ACTIONS(4647), 1, + sym_ident, STATE(2092), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57936] = 5, - ACTIONS(3700), 1, + [57958] = 5, + ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(3702), 1, + ACTIONS(5), 1, anon_sym_LT_STAR, - ACTIONS(3704), 1, + ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4647), 1, - aux_sym_raw_string_literal_token1, + ACTIONS(4649), 1, + anon_sym_SEMI, STATE(2093), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57954] = 5, + [57976] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4649), 1, - anon_sym_SQUOTE, + ACTIONS(4651), 1, + sym_ident, STATE(2094), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57972] = 5, + [57994] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4651), 1, - sym_ident, + ACTIONS(4653), 1, + anon_sym_SEMI, STATE(2095), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [57990] = 5, + [58012] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4653), 1, - sym_const_ident, + ACTIONS(4655), 1, + anon_sym_DOLLARendif, STATE(2096), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58008] = 5, + [58030] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4655), 1, - anon_sym_RPAREN, + ACTIONS(4657), 1, + anon_sym_SEMI, STATE(2097), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58026] = 5, + [58048] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4657), 1, - anon_sym_SEMI, + ACTIONS(4659), 1, + anon_sym_EQ, STATE(2098), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58044] = 5, + [58066] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4659), 1, - anon_sym_LPAREN, + ACTIONS(4661), 1, + anon_sym_SEMI, STATE(2099), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58062] = 5, + [58084] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4661), 1, - anon_sym_SEMI, + ACTIONS(4663), 1, + anon_sym_LPAREN, STATE(2100), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58080] = 5, + [58102] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, - anon_sym_SEMI, + ACTIONS(4665), 1, + sym_ident, STATE(2101), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58098] = 5, + [58120] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4665), 1, - anon_sym_LPAREN, + ACTIONS(4667), 1, + anon_sym_SEMI, STATE(2102), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58116] = 5, + [58138] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(4669), 1, anon_sym_SEMI, STATE(2103), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58134] = 5, + [58156] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, - anon_sym_COLON, + ACTIONS(4671), 1, + anon_sym_DOLLARendif, STATE(2104), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58152] = 5, + [58174] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - sym_ident, + ACTIONS(4673), 1, + anon_sym_SEMI, STATE(2105), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58170] = 5, + [58192] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4673), 1, - anon_sym_SEMI, + ACTIONS(3169), 1, + anon_sym_EQ, STATE(2106), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58188] = 5, + [58210] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166189,207 +165738,207 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4675), 1, - anon_sym_DOLLARendif, + anon_sym_SEMI, STATE(2107), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58206] = 5, + [58228] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - sym_ident, + ACTIONS(4677), 1, + anon_sym_LBRACE, STATE(2108), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58224] = 5, + [58246] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4677), 1, - anon_sym_SEMI, + ACTIONS(4679), 1, + sym_const_ident, STATE(2109), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58242] = 5, + [58264] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4189), 1, - sym_const_ident, + ACTIONS(4681), 1, + anon_sym_EQ, STATE(2110), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58260] = 5, + [58282] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4683), 1, anon_sym_SEMI, STATE(2111), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58278] = 5, + [58300] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, + ACTIONS(3187), 1, anon_sym_SEMI, STATE(2112), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58296] = 5, + [58318] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4683), 1, - anon_sym_DOLLARendif, + ACTIONS(4685), 1, + anon_sym_SEMI, STATE(2113), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58314] = 5, + [58336] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_DOT, + ACTIONS(4687), 1, + anon_sym_RPAREN, STATE(2114), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58332] = 5, + [58354] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, + ACTIONS(4689), 1, anon_sym_SEMI, STATE(2115), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58350] = 5, + [58372] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_SEMI, STATE(2116), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58368] = 5, + [58390] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4691), 1, - anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_SEMI, STATE(2117), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58386] = 5, + [58408] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4693), 1, - anon_sym_SEMI, + ACTIONS(4695), 1, + anon_sym_COLON, STATE(2118), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58404] = 5, + [58426] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4695), 1, + ACTIONS(4697), 1, anon_sym_SEMI, STATE(2119), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58422] = 5, + [58444] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, - sym_ident, + ACTIONS(4699), 1, + sym_at_ident, STATE(2120), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58440] = 5, + [58462] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4699), 1, - anon_sym_RPAREN, + ACTIONS(4277), 1, + anon_sym_LPAREN, STATE(2121), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58458] = 5, + [58480] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3603), 1, - anon_sym_COLON, + ACTIONS(4027), 1, + anon_sym_RBRACK, STATE(2122), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58476] = 5, + [58498] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166397,12 +165946,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4701), 1, - anon_sym_RPAREN, + anon_sym_EQ, STATE(2123), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58494] = 5, + [58516] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166410,12 +165959,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4703), 1, - sym_ident, + anon_sym_DOLLARendforeach, STATE(2124), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58512] = 5, + [58534] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166423,77 +165972,77 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4705), 1, - anon_sym_SEMI, + sym_const_ident, STATE(2125), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58530] = 5, + [58552] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3780), 1, - anon_sym_SEMI, + ACTIONS(4707), 1, + anon_sym_LPAREN, STATE(2126), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58548] = 5, + [58570] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4707), 1, - anon_sym_SEMI, + ACTIONS(4709), 1, + anon_sym_DOLLARendfor, STATE(2127), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58566] = 5, + [58588] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4709), 1, + ACTIONS(4711), 1, anon_sym_SEMI, STATE(2128), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58584] = 5, + [58606] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4711), 1, - sym_doc_comment_contract_text, + ACTIONS(4713), 1, + anon_sym_SEMI, STATE(2129), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58602] = 5, + [58624] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_RPAREN, + ACTIONS(3749), 1, + anon_sym_SEMI, STATE(2130), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58620] = 5, + [58642] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166501,12 +166050,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4715), 1, - anon_sym_COLON, + anon_sym_DOLLARendforeach, STATE(2131), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58638] = 5, + [58660] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166514,12 +166063,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4717), 1, - anon_sym_SEMI, + sym_type_ident, STATE(2132), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58656] = 5, + [58678] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166527,12 +166076,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4719), 1, - anon_sym_DOLLARendfor, + sym_ident, STATE(2133), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58674] = 5, + [58696] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166540,12 +166089,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4721), 1, - sym_const_ident, + anon_sym_SEMI, STATE(2134), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58692] = 5, + [58714] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166558,7 +166107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_line_comment, sym_doc_comment, sym_block_comment, - [58710] = 5, + [58732] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166566,12 +166115,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4725), 1, - anon_sym_COLON, + anon_sym_SEMI, STATE(2136), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58728] = 5, + [58750] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166579,12 +166128,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4727), 1, - anon_sym_DOLLARendforeach, + anon_sym_SEMI, STATE(2137), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58746] = 5, + [58768] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -166592,1351 +166141,1351 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4729), 1, - anon_sym_SEMI, + sym_ident, STATE(2138), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58764] = 5, + [58786] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3366), 1, - anon_sym_SEMI, + ACTIONS(4731), 1, + anon_sym_RPAREN, STATE(2139), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58782] = 5, + [58804] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, - anon_sym_SEMI, + ACTIONS(4733), 1, + anon_sym_RPAREN, STATE(2140), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58800] = 5, + [58822] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_LPAREN, + ACTIONS(4735), 1, + anon_sym_SEMI, STATE(2141), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58818] = 5, + [58840] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4733), 1, + ACTIONS(4737), 1, anon_sym_SEMI, STATE(2142), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58836] = 5, + [58858] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4735), 1, + ACTIONS(4739), 1, anon_sym_SEMI, STATE(2143), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58854] = 5, + [58876] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4737), 1, - anon_sym_SEMI, + ACTIONS(4741), 1, + sym_ident, STATE(2144), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58872] = 5, + [58894] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4739), 1, - sym_ident, + ACTIONS(4743), 1, + anon_sym_LBRACE, STATE(2145), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58890] = 5, + [58912] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4321), 1, - anon_sym_LPAREN, + ACTIONS(4745), 1, + anon_sym_RPAREN, STATE(2146), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58908] = 5, + [58930] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, + ACTIONS(4747), 1, anon_sym_SEMI, STATE(2147), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58926] = 5, + [58948] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, - anon_sym_COLON, + ACTIONS(4749), 1, + anon_sym_SEMI, STATE(2148), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58944] = 5, + [58966] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, + ACTIONS(4751), 1, anon_sym_SEMI, STATE(2149), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58962] = 5, + [58984] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4747), 1, - anon_sym_SEMI, + ACTIONS(4753), 1, + anon_sym_RPAREN, STATE(2150), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58980] = 5, + [59002] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4749), 1, + ACTIONS(3714), 1, anon_sym_SEMI, STATE(2151), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [58998] = 5, + [59020] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_LBRACE, + ACTIONS(4755), 1, + anon_sym_SEMI, STATE(2152), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59016] = 5, + [59038] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4753), 1, - anon_sym_GT_RPAREN, + ACTIONS(4757), 1, + anon_sym_LBRACE, STATE(2153), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59034] = 5, + [59056] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4755), 1, - anon_sym_LPAREN, + ACTIONS(4759), 1, + anon_sym_EQ, STATE(2154), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59052] = 5, + [59074] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, - ts_builtin_sym_end, + ACTIONS(4761), 1, + anon_sym_RPAREN, STATE(2155), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59070] = 5, + [59092] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3584), 1, - anon_sym_SEMI, + ACTIONS(4763), 1, + anon_sym_COLON, STATE(2156), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59088] = 5, + [59110] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_RPAREN, + ACTIONS(4765), 1, + sym_const_ident, STATE(2157), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59106] = 5, + [59128] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, - sym_ident, + ACTIONS(4767), 1, + anon_sym_DOLLARendif, STATE(2158), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59124] = 5, + [59146] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4763), 1, - anon_sym_SEMI, + ACTIONS(4769), 1, + anon_sym_LPAREN, STATE(2159), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59142] = 5, + [59164] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4765), 1, - anon_sym_DOLLARendif, + ACTIONS(4771), 1, + anon_sym_RBRACE, STATE(2160), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59160] = 5, + [59182] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4767), 1, - anon_sym_LPAREN, + ACTIONS(4773), 1, + anon_sym_SEMI, STATE(2161), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59178] = 5, + [59200] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, - anon_sym_RPAREN, + ACTIONS(4775), 1, + anon_sym_LBRACE, STATE(2162), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59196] = 5, + [59218] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4771), 1, - anon_sym_EQ, + ACTIONS(4777), 1, + anon_sym_LPAREN, STATE(2163), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59214] = 5, + [59236] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4773), 1, - sym_const_ident, + ACTIONS(4779), 1, + sym_ct_ident, STATE(2164), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59232] = 5, + [59254] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4775), 1, + ACTIONS(3733), 1, anon_sym_SEMI, STATE(2165), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59250] = 5, + [59272] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4777), 1, - anon_sym_RPAREN, + ACTIONS(4781), 1, + anon_sym_SEMI, STATE(2166), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59268] = 5, + [59290] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_EQ, + ACTIONS(4783), 1, + anon_sym_COLON, STATE(2167), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59286] = 5, + [59308] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4781), 1, - anon_sym_DOLLARendfor, + ACTIONS(4785), 1, + sym_ct_ident, STATE(2168), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59304] = 5, + [59326] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4783), 1, - anon_sym_LPAREN, + ACTIONS(4787), 1, + sym_type_ident, STATE(2169), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59322] = 5, + [59344] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4785), 1, - anon_sym_DOLLARendforeach, + ACTIONS(4789), 1, + sym_ident, STATE(2170), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59340] = 5, + [59362] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4787), 1, - anon_sym_SEMI, + ACTIONS(4791), 1, + anon_sym_COLON_COLON, STATE(2171), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59358] = 5, + [59380] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4789), 1, - anon_sym_SEMI, + ACTIONS(4793), 1, + sym_ident, STATE(2172), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59376] = 5, + [59398] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(4795), 1, anon_sym_SEMI, STATE(2173), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59394] = 5, + [59416] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 1, - anon_sym_SEMI, + ACTIONS(4797), 1, + anon_sym_LBRACE, STATE(2174), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59412] = 5, + [59434] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4793), 1, - sym_const_ident, + ACTIONS(4799), 1, + anon_sym_SEMI, STATE(2175), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59430] = 5, + [59452] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4795), 1, - anon_sym_DOT, + ACTIONS(4801), 1, + anon_sym_EQ, STATE(2176), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59448] = 5, + [59470] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4797), 1, - anon_sym_RPAREN, + ACTIONS(4803), 1, + anon_sym_SEMI, STATE(2177), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59466] = 5, + [59488] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4799), 1, - sym_ct_ident, + ACTIONS(4805), 1, + anon_sym_SEMI, STATE(2178), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59484] = 5, + [59506] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4801), 1, - anon_sym_DOT, + ACTIONS(4807), 1, + anon_sym_RPAREN, STATE(2179), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59502] = 5, + [59524] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4803), 1, + ACTIONS(4809), 1, anon_sym_SEMI, STATE(2180), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59520] = 5, + [59542] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4805), 1, - anon_sym_LBRACE, + ACTIONS(4811), 1, + anon_sym_SEMI, STATE(2181), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59538] = 5, + [59560] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4807), 1, - anon_sym_SEMI, + ACTIONS(4813), 1, + anon_sym_LPAREN, STATE(2182), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59556] = 5, + [59578] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(4815), 1, anon_sym_SEMI, STATE(2183), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59574] = 5, + [59596] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4811), 1, - anon_sym_COLON, + ACTIONS(4131), 1, + sym_const_ident, STATE(2184), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59592] = 5, + [59614] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4813), 1, - anon_sym_SEMI, + ACTIONS(4817), 1, + anon_sym_DOLLARendif, STATE(2185), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59610] = 5, + [59632] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4815), 1, - anon_sym_RPAREN, + ACTIONS(4819), 1, + sym_const_ident, STATE(2186), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59628] = 5, + [59650] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4817), 1, - anon_sym_RPAREN, + ACTIONS(4821), 1, + sym_ident, STATE(2187), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59646] = 5, + [59668] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3815), 1, - anon_sym_RBRACK, + ACTIONS(4823), 1, + anon_sym_SEMI, STATE(2188), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59664] = 5, + [59686] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_LPAREN, + ACTIONS(4825), 1, + sym_ident, STATE(2189), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59682] = 5, + [59704] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4821), 1, - anon_sym_RPAREN, + ACTIONS(4827), 1, + anon_sym_LPAREN, STATE(2190), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59700] = 5, + [59722] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_EQ, + ACTIONS(4829), 1, + anon_sym_RPAREN, STATE(2191), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59718] = 5, + [59740] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4825), 1, - anon_sym_SEMI, + ACTIONS(4831), 1, + anon_sym_DOT, STATE(2192), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59736] = 5, + [59758] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4827), 1, - sym_const_ident, + ACTIONS(4833), 1, + anon_sym_RPAREN, STATE(2193), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59754] = 5, + [59776] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4829), 1, - anon_sym_SEMI, + ACTIONS(4835), 1, + anon_sym_SQUOTE, STATE(2194), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59772] = 5, + [59794] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4831), 1, - anon_sym_LPAREN, + ACTIONS(4837), 1, + anon_sym_COLON, STATE(2195), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59790] = 5, + [59812] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4833), 1, - anon_sym_RPAREN, + ACTIONS(4839), 1, + anon_sym_SEMI, STATE(2196), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59808] = 5, + [59830] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4835), 1, - sym_type_ident, + ACTIONS(4841), 1, + anon_sym_SEMI, STATE(2197), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59826] = 5, + [59848] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - sym_at_ident, + ACTIONS(3508), 1, + sym_ident, STATE(2198), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59844] = 5, + [59866] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4839), 1, - sym_ident, + ACTIONS(4843), 1, + anon_sym_DOLLARendfor, STATE(2199), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59862] = 5, + [59884] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4841), 1, - anon_sym_SEMI, + ACTIONS(4845), 1, + anon_sym_DOLLARendforeach, STATE(2200), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59880] = 5, + [59902] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4843), 1, - sym_ident, + ACTIONS(4847), 1, + anon_sym_SEMI, STATE(2201), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59898] = 5, + [59920] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4845), 1, - anon_sym_LBRACE, + ACTIONS(4849), 1, + anon_sym_SEMI, STATE(2202), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59916] = 5, + [59938] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4847), 1, - anon_sym_RPAREN, + ACTIONS(4851), 1, + anon_sym_LBRACE, STATE(2203), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59934] = 5, + [59956] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, + ACTIONS(3546), 1, anon_sym_SEMI, STATE(2204), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59952] = 5, + [59974] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4851), 1, - anon_sym_DOLLARendif, + ACTIONS(4853), 1, + anon_sym_SEMI, STATE(2205), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59970] = 5, + [59992] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4853), 1, - anon_sym_DOLLARendfor, + ACTIONS(4855), 1, + anon_sym_RPAREN, STATE(2206), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [59988] = 5, + [60010] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4855), 1, - anon_sym_DOLLARendforeach, + ACTIONS(4857), 1, + anon_sym_RPAREN, STATE(2207), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60006] = 5, + [60028] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4857), 1, - anon_sym_SEMI, + ACTIONS(4859), 1, + anon_sym_RPAREN, STATE(2208), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60024] = 5, + [60046] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4859), 1, - anon_sym_LBRACE, + ACTIONS(4861), 1, + anon_sym_SEMI, STATE(2209), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60042] = 5, + [60064] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4861), 1, - anon_sym_SEMI, + ACTIONS(4863), 1, + anon_sym_DOLLARendif, STATE(2210), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60060] = 5, + [60082] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4863), 1, - anon_sym_SEMI, + ACTIONS(4855), 1, + anon_sym_RBRACK, STATE(2211), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60078] = 5, + [60100] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1233), 1, - anon_sym_RPAREN, + ACTIONS(4865), 1, + anon_sym_LPAREN, STATE(2212), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60096] = 5, + [60118] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3614), 1, - anon_sym_SEMI, + ACTIONS(4867), 1, + sym_ident, STATE(2213), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60114] = 5, + [60136] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, + ACTIONS(4869), 1, anon_sym_RPAREN, STATE(2214), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60132] = 5, + [60154] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4867), 1, - anon_sym_LBRACE, + ACTIONS(4871), 1, + sym_const_ident, STATE(2215), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60150] = 5, + [60172] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4869), 1, - anon_sym_EQ, + ACTIONS(4873), 1, + anon_sym_SEMI, STATE(2216), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60168] = 5, + [60190] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4871), 1, + ACTIONS(1241), 1, anon_sym_RPAREN, STATE(2217), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60186] = 5, + [60208] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4873), 1, + ACTIONS(4875), 1, anon_sym_RPAREN, STATE(2218), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60204] = 5, + [60226] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4875), 1, - sym_ident, + ACTIONS(4877), 1, + anon_sym_SEMI, STATE(2219), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60222] = 5, + [60244] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4877), 1, - anon_sym_SEMI, + ACTIONS(4879), 1, + sym_type_ident, STATE(2220), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60240] = 5, + [60262] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4879), 1, - sym_const_ident, + ACTIONS(4881), 1, + anon_sym_DOLLARendif, STATE(2221), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60258] = 5, + [60280] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4881), 1, - anon_sym_COLON, + ACTIONS(4883), 1, + anon_sym_DOT, STATE(2222), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60276] = 5, - ACTIONS(3), 1, + [60298] = 5, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, + ACTIONS(3606), 1, anon_sym_LT_STAR, - ACTIONS(7), 1, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_SEMI, + ACTIONS(4885), 1, + aux_sym_raw_string_literal_token1, STATE(2223), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60294] = 5, + [60316] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4885), 1, + ACTIONS(4887), 1, anon_sym_SEMI, STATE(2224), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60312] = 5, + [60334] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4887), 1, + ACTIONS(4889), 1, anon_sym_SEMI, STATE(2225), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60330] = 5, + [60352] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4889), 1, - anon_sym_RBRACK, + ACTIONS(4891), 1, + anon_sym_SEMI, STATE(2226), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60348] = 5, + [60370] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_RPAREN, + ACTIONS(4893), 1, + anon_sym_LPAREN, STATE(2227), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60366] = 5, + [60388] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_SEMI, + ACTIONS(4895), 1, + anon_sym_DOLLARendif, STATE(2228), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60384] = 5, + [60406] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_SEMI, + ACTIONS(4897), 1, + anon_sym_RPAREN, STATE(2229), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60402] = 5, + [60424] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_RBRACE, + ACTIONS(4899), 1, + anon_sym_SEMI, STATE(2230), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60420] = 5, + [60442] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, - anon_sym_SEMI, + ACTIONS(4901), 1, + anon_sym_LBRACE, STATE(2231), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60438] = 5, + [60460] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4901), 1, - anon_sym_DOT, + ACTIONS(4903), 1, + anon_sym_SEMI, STATE(2232), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60456] = 5, + [60478] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4903), 1, - anon_sym_DOLLARendif, + ACTIONS(4905), 1, + sym_at_ident, STATE(2233), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60474] = 5, + [60496] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4905), 1, + ACTIONS(4907), 1, anon_sym_SEMI, STATE(2234), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60492] = 5, + [60514] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_SEMI, + ACTIONS(4909), 1, + anon_sym_RBRACK, STATE(2235), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60510] = 5, + [60532] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4909), 1, - anon_sym_SEMI, + ACTIONS(4911), 1, + anon_sym_RPAREN, STATE(2236), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60528] = 5, + [60550] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4911), 1, - anon_sym_SEMI, + ACTIONS(4913), 1, + anon_sym_LBRACE, STATE(2237), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60546] = 5, + [60568] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4913), 1, - anon_sym_LBRACE, + ACTIONS(4915), 1, + anon_sym_SEMI, STATE(2238), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60564] = 5, + [60586] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_DOLLARendif, + ACTIONS(4917), 1, + anon_sym_DOT, STATE(2239), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60582] = 5, + [60604] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4917), 1, + ACTIONS(4919), 1, anon_sym_SEMI, STATE(2240), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60600] = 5, + [60622] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, - anon_sym_DOLLARendif, + ACTIONS(3197), 1, + anon_sym_SEMI, STATE(2241), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60618] = 5, + [60640] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -167944,12 +167493,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4921), 1, - anon_sym_SEMI, + sym_const_ident, STATE(2242), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60636] = 5, + [60658] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -167957,350 +167506,350 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4923), 1, - anon_sym_RPAREN, + anon_sym_DOLLARendfor, STATE(2243), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60654] = 5, + [60676] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4925), 1, - anon_sym_SEMI, + ACTIONS(4347), 1, + anon_sym_LPAREN, STATE(2244), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60672] = 5, + [60694] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4927), 1, + ACTIONS(4925), 1, anon_sym_SEMI, STATE(2245), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60690] = 5, + [60712] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4929), 1, - anon_sym_RPAREN, + ACTIONS(4927), 1, + anon_sym_STAR_SLASH, STATE(2246), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60708] = 5, + [60730] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4931), 1, - anon_sym_RPAREN, + ACTIONS(3201), 1, + anon_sym_RBRACE, STATE(2247), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60726] = 5, + [60748] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, - sym_type_ident, + ACTIONS(4929), 1, + anon_sym_COLON, STATE(2248), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60744] = 5, + [60766] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4935), 1, - anon_sym_EQ, + ACTIONS(4931), 1, + anon_sym_GT_RPAREN, STATE(2249), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60762] = 5, + [60784] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4937), 1, - sym_const_ident, + ACTIONS(4933), 1, + anon_sym_RBRACE, STATE(2250), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60780] = 5, + [60802] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4939), 1, + ACTIONS(4935), 1, anon_sym_SEMI, STATE(2251), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60798] = 5, + [60820] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4367), 1, + ACTIONS(4355), 1, anon_sym_LPAREN, STATE(2252), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60816] = 5, + [60838] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4941), 1, - anon_sym_RPAREN, + ACTIONS(4937), 1, + anon_sym_SEMI, STATE(2253), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60834] = 5, + [60856] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2770), 1, - anon_sym_RPAREN, + ACTIONS(3137), 1, + anon_sym_SEMI, STATE(2254), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60852] = 5, + [60874] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_RPAREN, + ACTIONS(4939), 1, + anon_sym_SEMI, STATE(2255), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60870] = 5, + [60892] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4945), 1, + ACTIONS(4941), 1, anon_sym_COLON, STATE(2256), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60888] = 5, + [60910] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - sym_block_comment_text, + ACTIONS(4943), 1, + anon_sym_LPAREN, STATE(2257), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60906] = 5, + [60928] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4949), 1, - anon_sym_RPAREN, + ACTIONS(4945), 1, + anon_sym_SEMI, STATE(2258), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60924] = 5, + [60946] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4951), 1, + ACTIONS(4947), 1, anon_sym_SEMI, STATE(2259), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60942] = 5, + [60964] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4375), 1, - anon_sym_LPAREN, + ACTIONS(4949), 1, + anon_sym_COLON, STATE(2260), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60960] = 5, + [60982] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, + ACTIONS(4951), 1, anon_sym_SEMI, STATE(2261), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60978] = 5, + [61000] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4955), 1, - anon_sym_SEMI, + ACTIONS(4953), 1, + anon_sym_COLON, STATE(2262), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [60996] = 5, + [61018] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4957), 1, + ACTIONS(4955), 1, anon_sym_SEMI, STATE(2263), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61014] = 5, + [61036] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4959), 1, + ACTIONS(4957), 1, anon_sym_COLON, STATE(2264), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61032] = 5, + [61054] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4961), 1, - anon_sym_EQ, + ACTIONS(4959), 1, + anon_sym_DOT, STATE(2265), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61050] = 5, + [61072] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4963), 1, - anon_sym_COLON, + ACTIONS(4961), 1, + anon_sym_SEMI, STATE(2266), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61068] = 5, + [61090] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4965), 1, - anon_sym_SEMI, + ACTIONS(4963), 1, + anon_sym_LBRACE, STATE(2267), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61086] = 5, + [61108] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(4965), 1, anon_sym_COLON, STATE(2268), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61104] = 5, + [61126] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2813), 1, - anon_sym_SEMI, + ACTIONS(4967), 1, + sym_const_ident, STATE(2269), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61122] = 5, + [61144] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -168308,12 +167857,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4969), 1, - sym_type_ident, + anon_sym_LPAREN, STATE(2270), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61140] = 5, + [61162] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -168321,12 +167870,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4971), 1, - anon_sym_SEMI, + anon_sym_LPAREN, STATE(2271), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61158] = 5, + [61180] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -168334,12 +167883,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4973), 1, - anon_sym_COLON, + anon_sym_LPAREN, STATE(2272), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61176] = 5, + [61198] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -168347,12 +167896,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4975), 1, - anon_sym_SEMI, + anon_sym_LPAREN, STATE(2273), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61194] = 5, + [61216] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -168360,12 +167909,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4977), 1, - anon_sym_EQ, + anon_sym_LPAREN, STATE(2274), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61212] = 5, + [61234] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, @@ -168373,1793 +167922,1684 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(4979), 1, - anon_sym_SEMI, + sym_type_ident, STATE(2275), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [61230] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, + [61252] = 1, ACTIONS(4981), 1, - anon_sym_COLON, - STATE(2276), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [61248] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_SEMI, - STATE(2277), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [61266] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LPAREN, - STATE(2278), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [61284] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LPAREN, - STATE(2279), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [61302] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_LPAREN, - STATE(2280), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [61320] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4991), 1, - anon_sym_LPAREN, - STATE(2281), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [61338] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LPAREN, - STATE(2282), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [61356] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_LT_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4995), 1, - anon_sym_LPAREN, - STATE(2283), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [61374] = 1, - ACTIONS(4997), 1, ts_builtin_sym_end, - [61378] = 1, - ACTIONS(4999), 1, + [61256] = 1, + ACTIONS(4983), 1, ts_builtin_sym_end, - [61382] = 1, - ACTIONS(5001), 1, + [61260] = 1, + ACTIONS(4985), 1, ts_builtin_sym_end, - [61386] = 1, - ACTIONS(5003), 1, + [61264] = 1, + ACTIONS(4987), 1, ts_builtin_sym_end, - [61390] = 1, - ACTIONS(5005), 1, + [61268] = 1, + ACTIONS(4989), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(834)] = 0, - [SMALL_STATE(835)] = 84, - [SMALL_STATE(836)] = 166, - [SMALL_STATE(837)] = 247, - [SMALL_STATE(838)] = 328, - [SMALL_STATE(839)] = 430, - [SMALL_STATE(840)] = 548, - [SMALL_STATE(841)] = 634, - [SMALL_STATE(842)] = 764, - [SMALL_STATE(843)] = 876, - [SMALL_STATE(844)] = 988, - [SMALL_STATE(845)] = 1094, - [SMALL_STATE(846)] = 1196, - [SMALL_STATE(847)] = 1314, - [SMALL_STATE(848)] = 1432, - [SMALL_STATE(849)] = 1550, - [SMALL_STATE(850)] = 1646, - [SMALL_STATE(851)] = 1764, - [SMALL_STATE(852)] = 1898, - [SMALL_STATE(853)] = 2042, - [SMALL_STATE(854)] = 2186, - [SMALL_STATE(855)] = 2282, - [SMALL_STATE(856)] = 2378, - [SMALL_STATE(857)] = 2508, - [SMALL_STATE(858)] = 2604, - [SMALL_STATE(859)] = 2716, - [SMALL_STATE(860)] = 2822, - [SMALL_STATE(861)] = 2956, - [SMALL_STATE(862)] = 3034, - [SMALL_STATE(863)] = 3120, - [SMALL_STATE(864)] = 3266, - [SMALL_STATE(865)] = 3348, - [SMALL_STATE(866)] = 3494, - [SMALL_STATE(867)] = 3600, - [SMALL_STATE(868)] = 3744, - [SMALL_STATE(869)] = 3840, - [SMALL_STATE(870)] = 3958, - [SMALL_STATE(871)] = 4034, - [SMALL_STATE(872)] = 4111, - [SMALL_STATE(873)] = 4184, - [SMALL_STATE(874)] = 4257, - [SMALL_STATE(875)] = 4330, - [SMALL_STATE(876)] = 4407, - [SMALL_STATE(877)] = 4482, - [SMALL_STATE(878)] = 4559, - [SMALL_STATE(879)] = 4632, - [SMALL_STATE(880)] = 4707, - [SMALL_STATE(881)] = 4780, - [SMALL_STATE(882)] = 4852, - [SMALL_STATE(883)] = 4924, - [SMALL_STATE(884)] = 4996, - [SMALL_STATE(885)] = 5068, - [SMALL_STATE(886)] = 5140, - [SMALL_STATE(887)] = 5212, - [SMALL_STATE(888)] = 5284, - [SMALL_STATE(889)] = 5356, - [SMALL_STATE(890)] = 5428, - [SMALL_STATE(891)] = 5500, - [SMALL_STATE(892)] = 5574, - [SMALL_STATE(893)] = 5646, - [SMALL_STATE(894)] = 5718, - [SMALL_STATE(895)] = 5790, - [SMALL_STATE(896)] = 5862, - [SMALL_STATE(897)] = 5934, - [SMALL_STATE(898)] = 6006, - [SMALL_STATE(899)] = 6078, - [SMALL_STATE(900)] = 6150, - [SMALL_STATE(901)] = 6221, - [SMALL_STATE(902)] = 6292, - [SMALL_STATE(903)] = 6363, - [SMALL_STATE(904)] = 6434, - [SMALL_STATE(905)] = 6505, - [SMALL_STATE(906)] = 6576, - [SMALL_STATE(907)] = 6647, - [SMALL_STATE(908)] = 6718, - [SMALL_STATE(909)] = 6789, - [SMALL_STATE(910)] = 6860, - [SMALL_STATE(911)] = 6931, - [SMALL_STATE(912)] = 7002, - [SMALL_STATE(913)] = 7073, - [SMALL_STATE(914)] = 7144, - [SMALL_STATE(915)] = 7215, - [SMALL_STATE(916)] = 7286, - [SMALL_STATE(917)] = 7357, - [SMALL_STATE(918)] = 7428, - [SMALL_STATE(919)] = 7499, - [SMALL_STATE(920)] = 7570, - [SMALL_STATE(921)] = 7641, - [SMALL_STATE(922)] = 7712, - [SMALL_STATE(923)] = 7783, - [SMALL_STATE(924)] = 7854, - [SMALL_STATE(925)] = 7925, - [SMALL_STATE(926)] = 7996, - [SMALL_STATE(927)] = 8067, - [SMALL_STATE(928)] = 8138, - [SMALL_STATE(929)] = 8209, - [SMALL_STATE(930)] = 8280, - [SMALL_STATE(931)] = 8351, - [SMALL_STATE(932)] = 8422, - [SMALL_STATE(933)] = 8493, - [SMALL_STATE(934)] = 8564, - [SMALL_STATE(935)] = 8635, - [SMALL_STATE(936)] = 8706, - [SMALL_STATE(937)] = 8777, - [SMALL_STATE(938)] = 8848, - [SMALL_STATE(939)] = 8919, - [SMALL_STATE(940)] = 8990, - [SMALL_STATE(941)] = 9061, - [SMALL_STATE(942)] = 9132, - [SMALL_STATE(943)] = 9203, - [SMALL_STATE(944)] = 9274, - [SMALL_STATE(945)] = 9345, - [SMALL_STATE(946)] = 9416, - [SMALL_STATE(947)] = 9487, - [SMALL_STATE(948)] = 9558, - [SMALL_STATE(949)] = 9629, - [SMALL_STATE(950)] = 9700, - [SMALL_STATE(951)] = 9771, - [SMALL_STATE(952)] = 9842, - [SMALL_STATE(953)] = 9913, - [SMALL_STATE(954)] = 9984, - [SMALL_STATE(955)] = 10055, - [SMALL_STATE(956)] = 10126, - [SMALL_STATE(957)] = 10197, - [SMALL_STATE(958)] = 10268, - [SMALL_STATE(959)] = 10339, - [SMALL_STATE(960)] = 10410, - [SMALL_STATE(961)] = 10481, - [SMALL_STATE(962)] = 10552, - [SMALL_STATE(963)] = 10623, - [SMALL_STATE(964)] = 10694, - [SMALL_STATE(965)] = 10765, - [SMALL_STATE(966)] = 10836, - [SMALL_STATE(967)] = 10907, - [SMALL_STATE(968)] = 10978, - [SMALL_STATE(969)] = 11049, - [SMALL_STATE(970)] = 11120, - [SMALL_STATE(971)] = 11191, - [SMALL_STATE(972)] = 11262, - [SMALL_STATE(973)] = 11333, - [SMALL_STATE(974)] = 11404, - [SMALL_STATE(975)] = 11475, - [SMALL_STATE(976)] = 11546, - [SMALL_STATE(977)] = 11617, - [SMALL_STATE(978)] = 11688, - [SMALL_STATE(979)] = 11759, - [SMALL_STATE(980)] = 11830, - [SMALL_STATE(981)] = 11901, - [SMALL_STATE(982)] = 11972, - [SMALL_STATE(983)] = 12043, - [SMALL_STATE(984)] = 12114, - [SMALL_STATE(985)] = 12185, - [SMALL_STATE(986)] = 12256, - [SMALL_STATE(987)] = 12327, - [SMALL_STATE(988)] = 12398, - [SMALL_STATE(989)] = 12469, - [SMALL_STATE(990)] = 12540, - [SMALL_STATE(991)] = 12611, - [SMALL_STATE(992)] = 12682, - [SMALL_STATE(993)] = 12753, - [SMALL_STATE(994)] = 12824, - [SMALL_STATE(995)] = 12895, - [SMALL_STATE(996)] = 12966, - [SMALL_STATE(997)] = 13037, - [SMALL_STATE(998)] = 13108, - [SMALL_STATE(999)] = 13179, - [SMALL_STATE(1000)] = 13250, - [SMALL_STATE(1001)] = 13321, - [SMALL_STATE(1002)] = 13392, - [SMALL_STATE(1003)] = 13463, - [SMALL_STATE(1004)] = 13534, - [SMALL_STATE(1005)] = 13605, - [SMALL_STATE(1006)] = 13676, - [SMALL_STATE(1007)] = 13747, - [SMALL_STATE(1008)] = 13818, - [SMALL_STATE(1009)] = 13889, - [SMALL_STATE(1010)] = 13960, - [SMALL_STATE(1011)] = 14031, - [SMALL_STATE(1012)] = 14102, - [SMALL_STATE(1013)] = 14173, - [SMALL_STATE(1014)] = 14244, - [SMALL_STATE(1015)] = 14315, - [SMALL_STATE(1016)] = 14386, - [SMALL_STATE(1017)] = 14457, - [SMALL_STATE(1018)] = 14528, - [SMALL_STATE(1019)] = 14599, - [SMALL_STATE(1020)] = 14670, - [SMALL_STATE(1021)] = 14741, - [SMALL_STATE(1022)] = 14812, - [SMALL_STATE(1023)] = 14883, - [SMALL_STATE(1024)] = 14954, - [SMALL_STATE(1025)] = 15025, - [SMALL_STATE(1026)] = 15096, - [SMALL_STATE(1027)] = 15167, - [SMALL_STATE(1028)] = 15238, - [SMALL_STATE(1029)] = 15309, - [SMALL_STATE(1030)] = 15380, - [SMALL_STATE(1031)] = 15451, - [SMALL_STATE(1032)] = 15522, - [SMALL_STATE(1033)] = 15593, - [SMALL_STATE(1034)] = 15734, - [SMALL_STATE(1035)] = 15879, - [SMALL_STATE(1036)] = 16020, - [SMALL_STATE(1037)] = 16164, - [SMALL_STATE(1038)] = 16304, - [SMALL_STATE(1039)] = 16448, - [SMALL_STATE(1040)] = 16588, - [SMALL_STATE(1041)] = 16728, - [SMALL_STATE(1042)] = 16868, - [SMALL_STATE(1043)] = 17008, - [SMALL_STATE(1044)] = 17150, - [SMALL_STATE(1045)] = 17294, - [SMALL_STATE(1046)] = 17434, - [SMALL_STATE(1047)] = 17578, - [SMALL_STATE(1048)] = 17722, - [SMALL_STATE(1049)] = 17866, - [SMALL_STATE(1050)] = 18006, - [SMALL_STATE(1051)] = 18150, - [SMALL_STATE(1052)] = 18294, - [SMALL_STATE(1053)] = 18365, - [SMALL_STATE(1054)] = 18504, - [SMALL_STATE(1055)] = 18643, - [SMALL_STATE(1056)] = 18784, - [SMALL_STATE(1057)] = 18853, - [SMALL_STATE(1058)] = 18920, - [SMALL_STATE(1059)] = 19059, - [SMALL_STATE(1060)] = 19128, - [SMALL_STATE(1061)] = 19267, - [SMALL_STATE(1062)] = 19406, - [SMALL_STATE(1063)] = 19545, - [SMALL_STATE(1064)] = 19684, - [SMALL_STATE(1065)] = 19825, - [SMALL_STATE(1066)] = 19896, - [SMALL_STATE(1067)] = 19971, - [SMALL_STATE(1068)] = 20109, - [SMALL_STATE(1069)] = 20247, - [SMALL_STATE(1070)] = 20315, - [SMALL_STATE(1071)] = 20453, - [SMALL_STATE(1072)] = 20591, - [SMALL_STATE(1073)] = 20729, - [SMALL_STATE(1074)] = 20867, - [SMALL_STATE(1075)] = 21005, - [SMALL_STATE(1076)] = 21143, - [SMALL_STATE(1077)] = 21281, - [SMALL_STATE(1078)] = 21419, - [SMALL_STATE(1079)] = 21557, - [SMALL_STATE(1080)] = 21695, - [SMALL_STATE(1081)] = 21833, - [SMALL_STATE(1082)] = 21971, - [SMALL_STATE(1083)] = 22109, - [SMALL_STATE(1084)] = 22247, - [SMALL_STATE(1085)] = 22385, - [SMALL_STATE(1086)] = 22523, - [SMALL_STATE(1087)] = 22661, - [SMALL_STATE(1088)] = 22799, - [SMALL_STATE(1089)] = 22937, - [SMALL_STATE(1090)] = 23075, - [SMALL_STATE(1091)] = 23213, - [SMALL_STATE(1092)] = 23351, - [SMALL_STATE(1093)] = 23489, - [SMALL_STATE(1094)] = 23627, - [SMALL_STATE(1095)] = 23765, - [SMALL_STATE(1096)] = 23903, - [SMALL_STATE(1097)] = 24041, - [SMALL_STATE(1098)] = 24107, - [SMALL_STATE(1099)] = 24245, - [SMALL_STATE(1100)] = 24383, - [SMALL_STATE(1101)] = 24521, - [SMALL_STATE(1102)] = 24659, - [SMALL_STATE(1103)] = 24729, - [SMALL_STATE(1104)] = 24867, - [SMALL_STATE(1105)] = 25005, - [SMALL_STATE(1106)] = 25083, - [SMALL_STATE(1107)] = 25221, - [SMALL_STATE(1108)] = 25359, - [SMALL_STATE(1109)] = 25497, - [SMALL_STATE(1110)] = 25635, - [SMALL_STATE(1111)] = 25773, - [SMALL_STATE(1112)] = 25911, - [SMALL_STATE(1113)] = 25989, - [SMALL_STATE(1114)] = 26127, - [SMALL_STATE(1115)] = 26265, - [SMALL_STATE(1116)] = 26343, - [SMALL_STATE(1117)] = 26481, - [SMALL_STATE(1118)] = 26619, - [SMALL_STATE(1119)] = 26757, - [SMALL_STATE(1120)] = 26895, - [SMALL_STATE(1121)] = 27033, - [SMALL_STATE(1122)] = 27171, - [SMALL_STATE(1123)] = 27236, - [SMALL_STATE(1124)] = 27339, - [SMALL_STATE(1125)] = 27408, - [SMALL_STATE(1126)] = 27473, - [SMALL_STATE(1127)] = 27538, - [SMALL_STATE(1128)] = 27603, - [SMALL_STATE(1129)] = 27738, - [SMALL_STATE(1130)] = 27803, - [SMALL_STATE(1131)] = 27868, - [SMALL_STATE(1132)] = 27933, - [SMALL_STATE(1133)] = 27998, - [SMALL_STATE(1134)] = 28063, - [SMALL_STATE(1135)] = 28128, - [SMALL_STATE(1136)] = 28193, - [SMALL_STATE(1137)] = 28258, - [SMALL_STATE(1138)] = 28356, - [SMALL_STATE(1139)] = 28422, - [SMALL_STATE(1140)] = 28490, - [SMALL_STATE(1141)] = 28584, - [SMALL_STATE(1142)] = 28684, - [SMALL_STATE(1143)] = 28784, - [SMALL_STATE(1144)] = 28882, - [SMALL_STATE(1145)] = 28982, - [SMALL_STATE(1146)] = 29078, - [SMALL_STATE(1147)] = 29178, - [SMALL_STATE(1148)] = 29276, - [SMALL_STATE(1149)] = 29374, - [SMALL_STATE(1150)] = 29474, - [SMALL_STATE(1151)] = 29540, - [SMALL_STATE(1152)] = 29606, - [SMALL_STATE(1153)] = 29672, - [SMALL_STATE(1154)] = 29770, - [SMALL_STATE(1155)] = 29868, - [SMALL_STATE(1156)] = 29933, - [SMALL_STATE(1157)] = 30030, - [SMALL_STATE(1158)] = 30124, - [SMALL_STATE(1159)] = 30211, - [SMALL_STATE(1160)] = 30294, - [SMALL_STATE(1161)] = 30377, - [SMALL_STATE(1162)] = 30462, - [SMALL_STATE(1163)] = 30547, - [SMALL_STATE(1164)] = 30629, - [SMALL_STATE(1165)] = 30711, - [SMALL_STATE(1166)] = 30791, - [SMALL_STATE(1167)] = 30873, - [SMALL_STATE(1168)] = 30955, - [SMALL_STATE(1169)] = 31037, - [SMALL_STATE(1170)] = 31119, - [SMALL_STATE(1171)] = 31201, - [SMALL_STATE(1172)] = 31283, - [SMALL_STATE(1173)] = 31365, - [SMALL_STATE(1174)] = 31444, - [SMALL_STATE(1175)] = 31523, - [SMALL_STATE(1176)] = 31602, - [SMALL_STATE(1177)] = 31681, - [SMALL_STATE(1178)] = 31760, - [SMALL_STATE(1179)] = 31839, - [SMALL_STATE(1180)] = 31918, - [SMALL_STATE(1181)] = 31997, - [SMALL_STATE(1182)] = 32076, - [SMALL_STATE(1183)] = 32155, - [SMALL_STATE(1184)] = 32234, - [SMALL_STATE(1185)] = 32313, - [SMALL_STATE(1186)] = 32392, - [SMALL_STATE(1187)] = 32468, - [SMALL_STATE(1188)] = 32544, - [SMALL_STATE(1189)] = 32620, - [SMALL_STATE(1190)] = 32696, - [SMALL_STATE(1191)] = 32772, - [SMALL_STATE(1192)] = 32848, - [SMALL_STATE(1193)] = 32924, - [SMALL_STATE(1194)] = 33000, - [SMALL_STATE(1195)] = 33076, - [SMALL_STATE(1196)] = 33152, - [SMALL_STATE(1197)] = 33228, - [SMALL_STATE(1198)] = 33304, - [SMALL_STATE(1199)] = 33380, - [SMALL_STATE(1200)] = 33456, - [SMALL_STATE(1201)] = 33532, - [SMALL_STATE(1202)] = 33608, - [SMALL_STATE(1203)] = 33684, - [SMALL_STATE(1204)] = 33760, - [SMALL_STATE(1205)] = 33836, - [SMALL_STATE(1206)] = 33891, - [SMALL_STATE(1207)] = 33946, - [SMALL_STATE(1208)] = 34001, - [SMALL_STATE(1209)] = 34056, - [SMALL_STATE(1210)] = 34111, - [SMALL_STATE(1211)] = 34166, - [SMALL_STATE(1212)] = 34221, - [SMALL_STATE(1213)] = 34276, - [SMALL_STATE(1214)] = 34331, - [SMALL_STATE(1215)] = 34386, - [SMALL_STATE(1216)] = 34441, - [SMALL_STATE(1217)] = 34496, - [SMALL_STATE(1218)] = 34551, - [SMALL_STATE(1219)] = 34606, - [SMALL_STATE(1220)] = 34661, - [SMALL_STATE(1221)] = 34712, - [SMALL_STATE(1222)] = 34763, - [SMALL_STATE(1223)] = 34814, - [SMALL_STATE(1224)] = 34865, - [SMALL_STATE(1225)] = 34915, - [SMALL_STATE(1226)] = 34965, - [SMALL_STATE(1227)] = 35014, - [SMALL_STATE(1228)] = 35059, - [SMALL_STATE(1229)] = 35108, - [SMALL_STATE(1230)] = 35149, - [SMALL_STATE(1231)] = 35185, - [SMALL_STATE(1232)] = 35220, - [SMALL_STATE(1233)] = 35283, - [SMALL_STATE(1234)] = 35318, - [SMALL_STATE(1235)] = 35353, - [SMALL_STATE(1236)] = 35416, - [SMALL_STATE(1237)] = 35451, - [SMALL_STATE(1238)] = 35486, - [SMALL_STATE(1239)] = 35521, - [SMALL_STATE(1240)] = 35556, - [SMALL_STATE(1241)] = 35591, - [SMALL_STATE(1242)] = 35626, - [SMALL_STATE(1243)] = 35683, - [SMALL_STATE(1244)] = 35736, - [SMALL_STATE(1245)] = 35771, - [SMALL_STATE(1246)] = 35822, - [SMALL_STATE(1247)] = 35885, - [SMALL_STATE(1248)] = 35948, - [SMALL_STATE(1249)] = 35983, - [SMALL_STATE(1250)] = 36018, - [SMALL_STATE(1251)] = 36074, - [SMALL_STATE(1252)] = 36134, - [SMALL_STATE(1253)] = 36194, - [SMALL_STATE(1254)] = 36254, - [SMALL_STATE(1255)] = 36305, - [SMALL_STATE(1256)] = 36356, - [SMALL_STATE(1257)] = 36413, - [SMALL_STATE(1258)] = 36470, - [SMALL_STATE(1259)] = 36527, - [SMALL_STATE(1260)] = 36584, - [SMALL_STATE(1261)] = 36641, - [SMALL_STATE(1262)] = 36692, - [SMALL_STATE(1263)] = 36749, - [SMALL_STATE(1264)] = 36806, - [SMALL_STATE(1265)] = 36841, - [SMALL_STATE(1266)] = 36892, - [SMALL_STATE(1267)] = 36943, - [SMALL_STATE(1268)] = 37000, - [SMALL_STATE(1269)] = 37057, - [SMALL_STATE(1270)] = 37112, - [SMALL_STATE(1271)] = 37166, - [SMALL_STATE(1272)] = 37220, - [SMALL_STATE(1273)] = 37262, - [SMALL_STATE(1274)] = 37316, - [SMALL_STATE(1275)] = 37370, - [SMALL_STATE(1276)] = 37424, - [SMALL_STATE(1277)] = 37478, - [SMALL_STATE(1278)] = 37532, - [SMALL_STATE(1279)] = 37586, - [SMALL_STATE(1280)] = 37640, - [SMALL_STATE(1281)] = 37694, - [SMALL_STATE(1282)] = 37748, - [SMALL_STATE(1283)] = 37802, - [SMALL_STATE(1284)] = 37856, - [SMALL_STATE(1285)] = 37910, - [SMALL_STATE(1286)] = 37964, - [SMALL_STATE(1287)] = 38018, - [SMALL_STATE(1288)] = 38072, - [SMALL_STATE(1289)] = 38126, - [SMALL_STATE(1290)] = 38180, - [SMALL_STATE(1291)] = 38211, - [SMALL_STATE(1292)] = 38262, - [SMALL_STATE(1293)] = 38311, - [SMALL_STATE(1294)] = 38362, - [SMALL_STATE(1295)] = 38401, - [SMALL_STATE(1296)] = 38432, - [SMALL_STATE(1297)] = 38471, - [SMALL_STATE(1298)] = 38522, - [SMALL_STATE(1299)] = 38573, - [SMALL_STATE(1300)] = 38624, - [SMALL_STATE(1301)] = 38675, - [SMALL_STATE(1302)] = 38726, - [SMALL_STATE(1303)] = 38777, - [SMALL_STATE(1304)] = 38812, - [SMALL_STATE(1305)] = 38863, - [SMALL_STATE(1306)] = 38914, - [SMALL_STATE(1307)] = 38963, - [SMALL_STATE(1308)] = 39014, - [SMALL_STATE(1309)] = 39065, - [SMALL_STATE(1310)] = 39116, - [SMALL_STATE(1311)] = 39167, - [SMALL_STATE(1312)] = 39218, - [SMALL_STATE(1313)] = 39257, - [SMALL_STATE(1314)] = 39308, - [SMALL_STATE(1315)] = 39359, - [SMALL_STATE(1316)] = 39407, - [SMALL_STATE(1317)] = 39455, - [SMALL_STATE(1318)] = 39503, - [SMALL_STATE(1319)] = 39551, - [SMALL_STATE(1320)] = 39581, - [SMALL_STATE(1321)] = 39629, - [SMALL_STATE(1322)] = 39677, - [SMALL_STATE(1323)] = 39725, - [SMALL_STATE(1324)] = 39773, - [SMALL_STATE(1325)] = 39821, - [SMALL_STATE(1326)] = 39869, - [SMALL_STATE(1327)] = 39917, - [SMALL_STATE(1328)] = 39965, - [SMALL_STATE(1329)] = 40013, - [SMALL_STATE(1330)] = 40061, - [SMALL_STATE(1331)] = 40091, - [SMALL_STATE(1332)] = 40121, - [SMALL_STATE(1333)] = 40169, - [SMALL_STATE(1334)] = 40217, - [SMALL_STATE(1335)] = 40265, - [SMALL_STATE(1336)] = 40313, - [SMALL_STATE(1337)] = 40361, - [SMALL_STATE(1338)] = 40409, - [SMALL_STATE(1339)] = 40439, - [SMALL_STATE(1340)] = 40487, - [SMALL_STATE(1341)] = 40532, - [SMALL_STATE(1342)] = 40577, - [SMALL_STATE(1343)] = 40622, - [SMALL_STATE(1344)] = 40667, - [SMALL_STATE(1345)] = 40712, - [SMALL_STATE(1346)] = 40757, - [SMALL_STATE(1347)] = 40802, - [SMALL_STATE(1348)] = 40831, - [SMALL_STATE(1349)] = 40876, - [SMALL_STATE(1350)] = 40903, - [SMALL_STATE(1351)] = 40948, - [SMALL_STATE(1352)] = 40977, - [SMALL_STATE(1353)] = 41022, - [SMALL_STATE(1354)] = 41051, - [SMALL_STATE(1355)] = 41096, - [SMALL_STATE(1356)] = 41125, - [SMALL_STATE(1357)] = 41170, - [SMALL_STATE(1358)] = 41202, - [SMALL_STATE(1359)] = 41228, - [SMALL_STATE(1360)] = 41253, - [SMALL_STATE(1361)] = 41286, - [SMALL_STATE(1362)] = 41323, - [SMALL_STATE(1363)] = 41348, - [SMALL_STATE(1364)] = 41373, - [SMALL_STATE(1365)] = 41398, - [SMALL_STATE(1366)] = 41423, - [SMALL_STATE(1367)] = 41458, - [SMALL_STATE(1368)] = 41483, - [SMALL_STATE(1369)] = 41520, - [SMALL_STATE(1370)] = 41556, - [SMALL_STATE(1371)] = 41588, - [SMALL_STATE(1372)] = 41614, - [SMALL_STATE(1373)] = 41650, - [SMALL_STATE(1374)] = 41686, - [SMALL_STATE(1375)] = 41722, - [SMALL_STATE(1376)] = 41746, - [SMALL_STATE(1377)] = 41770, - [SMALL_STATE(1378)] = 41802, - [SMALL_STATE(1379)] = 41836, - [SMALL_STATE(1380)] = 41862, - [SMALL_STATE(1381)] = 41898, - [SMALL_STATE(1382)] = 41928, - [SMALL_STATE(1383)] = 41964, - [SMALL_STATE(1384)] = 42000, - [SMALL_STATE(1385)] = 42036, - [SMALL_STATE(1386)] = 42066, - [SMALL_STATE(1387)] = 42102, - [SMALL_STATE(1388)] = 42125, - [SMALL_STATE(1389)] = 42154, - [SMALL_STATE(1390)] = 42179, - [SMALL_STATE(1391)] = 42210, - [SMALL_STATE(1392)] = 42235, - [SMALL_STATE(1393)] = 42264, - [SMALL_STATE(1394)] = 42295, - [SMALL_STATE(1395)] = 42328, - [SMALL_STATE(1396)] = 42359, - [SMALL_STATE(1397)] = 42390, - [SMALL_STATE(1398)] = 42419, - [SMALL_STATE(1399)] = 42450, - [SMALL_STATE(1400)] = 42481, - [SMALL_STATE(1401)] = 42506, - [SMALL_STATE(1402)] = 42537, - [SMALL_STATE(1403)] = 42570, - [SMALL_STATE(1404)] = 42601, - [SMALL_STATE(1405)] = 42634, - [SMALL_STATE(1406)] = 42657, - [SMALL_STATE(1407)] = 42688, - [SMALL_STATE(1408)] = 42719, - [SMALL_STATE(1409)] = 42744, - [SMALL_STATE(1410)] = 42775, - [SMALL_STATE(1411)] = 42806, - [SMALL_STATE(1412)] = 42833, - [SMALL_STATE(1413)] = 42864, - [SMALL_STATE(1414)] = 42891, - [SMALL_STATE(1415)] = 42922, - [SMALL_STATE(1416)] = 42953, - [SMALL_STATE(1417)] = 42984, - [SMALL_STATE(1418)] = 43015, - [SMALL_STATE(1419)] = 43046, - [SMALL_STATE(1420)] = 43069, - [SMALL_STATE(1421)] = 43100, - [SMALL_STATE(1422)] = 43123, - [SMALL_STATE(1423)] = 43154, - [SMALL_STATE(1424)] = 43181, - [SMALL_STATE(1425)] = 43212, - [SMALL_STATE(1426)] = 43243, - [SMALL_STATE(1427)] = 43274, - [SMALL_STATE(1428)] = 43305, - [SMALL_STATE(1429)] = 43336, - [SMALL_STATE(1430)] = 43367, - [SMALL_STATE(1431)] = 43398, - [SMALL_STATE(1432)] = 43431, - [SMALL_STATE(1433)] = 43462, - [SMALL_STATE(1434)] = 43493, - [SMALL_STATE(1435)] = 43524, - [SMALL_STATE(1436)] = 43551, - [SMALL_STATE(1437)] = 43582, - [SMALL_STATE(1438)] = 43611, - [SMALL_STATE(1439)] = 43642, - [SMALL_STATE(1440)] = 43673, - [SMALL_STATE(1441)] = 43704, - [SMALL_STATE(1442)] = 43735, - [SMALL_STATE(1443)] = 43766, - [SMALL_STATE(1444)] = 43795, - [SMALL_STATE(1445)] = 43826, - [SMALL_STATE(1446)] = 43859, - [SMALL_STATE(1447)] = 43888, - [SMALL_STATE(1448)] = 43911, - [SMALL_STATE(1449)] = 43938, - [SMALL_STATE(1450)] = 43961, - [SMALL_STATE(1451)] = 43988, - [SMALL_STATE(1452)] = 44011, - [SMALL_STATE(1453)] = 44033, - [SMALL_STATE(1454)] = 44057, - [SMALL_STATE(1455)] = 44087, - [SMALL_STATE(1456)] = 44117, - [SMALL_STATE(1457)] = 44139, - [SMALL_STATE(1458)] = 44161, - [SMALL_STATE(1459)] = 44187, - [SMALL_STATE(1460)] = 44217, - [SMALL_STATE(1461)] = 44243, - [SMALL_STATE(1462)] = 44265, - [SMALL_STATE(1463)] = 44295, - [SMALL_STATE(1464)] = 44325, - [SMALL_STATE(1465)] = 44347, - [SMALL_STATE(1466)] = 44369, - [SMALL_STATE(1467)] = 44399, - [SMALL_STATE(1468)] = 44429, - [SMALL_STATE(1469)] = 44457, - [SMALL_STATE(1470)] = 44481, - [SMALL_STATE(1471)] = 44503, - [SMALL_STATE(1472)] = 44533, - [SMALL_STATE(1473)] = 44555, - [SMALL_STATE(1474)] = 44577, - [SMALL_STATE(1475)] = 44599, - [SMALL_STATE(1476)] = 44621, - [SMALL_STATE(1477)] = 44651, - [SMALL_STATE(1478)] = 44681, - [SMALL_STATE(1479)] = 44703, - [SMALL_STATE(1480)] = 44725, - [SMALL_STATE(1481)] = 44747, - [SMALL_STATE(1482)] = 44777, - [SMALL_STATE(1483)] = 44799, - [SMALL_STATE(1484)] = 44829, - [SMALL_STATE(1485)] = 44857, - [SMALL_STATE(1486)] = 44883, - [SMALL_STATE(1487)] = 44911, - [SMALL_STATE(1488)] = 44935, - [SMALL_STATE(1489)] = 44961, - [SMALL_STATE(1490)] = 44983, - [SMALL_STATE(1491)] = 45010, - [SMALL_STATE(1492)] = 45031, - [SMALL_STATE(1493)] = 45058, - [SMALL_STATE(1494)] = 45083, - [SMALL_STATE(1495)] = 45104, - [SMALL_STATE(1496)] = 45131, - [SMALL_STATE(1497)] = 45158, - [SMALL_STATE(1498)] = 45185, - [SMALL_STATE(1499)] = 45212, - [SMALL_STATE(1500)] = 45239, - [SMALL_STATE(1501)] = 45266, - [SMALL_STATE(1502)] = 45291, - [SMALL_STATE(1503)] = 45312, - [SMALL_STATE(1504)] = 45333, - [SMALL_STATE(1505)] = 45360, - [SMALL_STATE(1506)] = 45385, - [SMALL_STATE(1507)] = 45406, - [SMALL_STATE(1508)] = 45433, - [SMALL_STATE(1509)] = 45458, - [SMALL_STATE(1510)] = 45485, - [SMALL_STATE(1511)] = 45510, - [SMALL_STATE(1512)] = 45537, - [SMALL_STATE(1513)] = 45564, - [SMALL_STATE(1514)] = 45591, - [SMALL_STATE(1515)] = 45612, - [SMALL_STATE(1516)] = 45635, - [SMALL_STATE(1517)] = 45662, - [SMALL_STATE(1518)] = 45689, - [SMALL_STATE(1519)] = 45716, - [SMALL_STATE(1520)] = 45737, - [SMALL_STATE(1521)] = 45758, - [SMALL_STATE(1522)] = 45785, - [SMALL_STATE(1523)] = 45812, - [SMALL_STATE(1524)] = 45839, - [SMALL_STATE(1525)] = 45864, - [SMALL_STATE(1526)] = 45891, - [SMALL_STATE(1527)] = 45918, - [SMALL_STATE(1528)] = 45939, - [SMALL_STATE(1529)] = 45966, - [SMALL_STATE(1530)] = 45987, - [SMALL_STATE(1531)] = 46014, - [SMALL_STATE(1532)] = 46035, - [SMALL_STATE(1533)] = 46056, - [SMALL_STATE(1534)] = 46077, - [SMALL_STATE(1535)] = 46102, - [SMALL_STATE(1536)] = 46123, - [SMALL_STATE(1537)] = 46150, - [SMALL_STATE(1538)] = 46177, - [SMALL_STATE(1539)] = 46202, - [SMALL_STATE(1540)] = 46227, - [SMALL_STATE(1541)] = 46252, - [SMALL_STATE(1542)] = 46275, - [SMALL_STATE(1543)] = 46298, - [SMALL_STATE(1544)] = 46325, - [SMALL_STATE(1545)] = 46352, - [SMALL_STATE(1546)] = 46379, - [SMALL_STATE(1547)] = 46400, - [SMALL_STATE(1548)] = 46425, - [SMALL_STATE(1549)] = 46452, - [SMALL_STATE(1550)] = 46473, - [SMALL_STATE(1551)] = 46494, - [SMALL_STATE(1552)] = 46519, - [SMALL_STATE(1553)] = 46544, - [SMALL_STATE(1554)] = 46571, - [SMALL_STATE(1555)] = 46592, - [SMALL_STATE(1556)] = 46619, - [SMALL_STATE(1557)] = 46646, - [SMALL_STATE(1558)] = 46667, - [SMALL_STATE(1559)] = 46694, - [SMALL_STATE(1560)] = 46721, - [SMALL_STATE(1561)] = 46748, - [SMALL_STATE(1562)] = 46769, - [SMALL_STATE(1563)] = 46796, - [SMALL_STATE(1564)] = 46823, - [SMALL_STATE(1565)] = 46850, - [SMALL_STATE(1566)] = 46877, - [SMALL_STATE(1567)] = 46904, - [SMALL_STATE(1568)] = 46931, - [SMALL_STATE(1569)] = 46958, - [SMALL_STATE(1570)] = 46981, - [SMALL_STATE(1571)] = 47008, - [SMALL_STATE(1572)] = 47033, - [SMALL_STATE(1573)] = 47060, - [SMALL_STATE(1574)] = 47083, - [SMALL_STATE(1575)] = 47110, - [SMALL_STATE(1576)] = 47137, - [SMALL_STATE(1577)] = 47164, - [SMALL_STATE(1578)] = 47191, - [SMALL_STATE(1579)] = 47218, - [SMALL_STATE(1580)] = 47245, - [SMALL_STATE(1581)] = 47270, - [SMALL_STATE(1582)] = 47297, - [SMALL_STATE(1583)] = 47324, - [SMALL_STATE(1584)] = 47345, - [SMALL_STATE(1585)] = 47370, - [SMALL_STATE(1586)] = 47397, - [SMALL_STATE(1587)] = 47424, - [SMALL_STATE(1588)] = 47451, - [SMALL_STATE(1589)] = 47478, - [SMALL_STATE(1590)] = 47505, - [SMALL_STATE(1591)] = 47532, - [SMALL_STATE(1592)] = 47559, - [SMALL_STATE(1593)] = 47586, - [SMALL_STATE(1594)] = 47613, - [SMALL_STATE(1595)] = 47640, - [SMALL_STATE(1596)] = 47667, - [SMALL_STATE(1597)] = 47694, - [SMALL_STATE(1598)] = 47721, - [SMALL_STATE(1599)] = 47748, - [SMALL_STATE(1600)] = 47775, - [SMALL_STATE(1601)] = 47802, - [SMALL_STATE(1602)] = 47829, - [SMALL_STATE(1603)] = 47856, - [SMALL_STATE(1604)] = 47883, - [SMALL_STATE(1605)] = 47904, - [SMALL_STATE(1606)] = 47931, - [SMALL_STATE(1607)] = 47958, - [SMALL_STATE(1608)] = 47983, - [SMALL_STATE(1609)] = 48010, - [SMALL_STATE(1610)] = 48037, - [SMALL_STATE(1611)] = 48064, - [SMALL_STATE(1612)] = 48091, - [SMALL_STATE(1613)] = 48118, - [SMALL_STATE(1614)] = 48145, - [SMALL_STATE(1615)] = 48172, - [SMALL_STATE(1616)] = 48193, - [SMALL_STATE(1617)] = 48220, - [SMALL_STATE(1618)] = 48247, - [SMALL_STATE(1619)] = 48274, - [SMALL_STATE(1620)] = 48301, - [SMALL_STATE(1621)] = 48324, - [SMALL_STATE(1622)] = 48351, - [SMALL_STATE(1623)] = 48373, - [SMALL_STATE(1624)] = 48393, - [SMALL_STATE(1625)] = 48413, - [SMALL_STATE(1626)] = 48433, - [SMALL_STATE(1627)] = 48455, - [SMALL_STATE(1628)] = 48479, - [SMALL_STATE(1629)] = 48503, - [SMALL_STATE(1630)] = 48527, - [SMALL_STATE(1631)] = 48551, - [SMALL_STATE(1632)] = 48573, - [SMALL_STATE(1633)] = 48593, - [SMALL_STATE(1634)] = 48617, - [SMALL_STATE(1635)] = 48641, - [SMALL_STATE(1636)] = 48665, - [SMALL_STATE(1637)] = 48687, - [SMALL_STATE(1638)] = 48711, - [SMALL_STATE(1639)] = 48735, - [SMALL_STATE(1640)] = 48759, - [SMALL_STATE(1641)] = 48783, - [SMALL_STATE(1642)] = 48805, - [SMALL_STATE(1643)] = 48825, - [SMALL_STATE(1644)] = 48845, - [SMALL_STATE(1645)] = 48869, - [SMALL_STATE(1646)] = 48891, - [SMALL_STATE(1647)] = 48913, - [SMALL_STATE(1648)] = 48933, - [SMALL_STATE(1649)] = 48955, - [SMALL_STATE(1650)] = 48975, - [SMALL_STATE(1651)] = 48999, - [SMALL_STATE(1652)] = 49023, - [SMALL_STATE(1653)] = 49047, - [SMALL_STATE(1654)] = 49071, - [SMALL_STATE(1655)] = 49093, - [SMALL_STATE(1656)] = 49117, - [SMALL_STATE(1657)] = 49137, - [SMALL_STATE(1658)] = 49161, - [SMALL_STATE(1659)] = 49185, - [SMALL_STATE(1660)] = 49207, - [SMALL_STATE(1661)] = 49229, - [SMALL_STATE(1662)] = 49251, - [SMALL_STATE(1663)] = 49275, - [SMALL_STATE(1664)] = 49299, - [SMALL_STATE(1665)] = 49323, - [SMALL_STATE(1666)] = 49347, - [SMALL_STATE(1667)] = 49369, - [SMALL_STATE(1668)] = 49393, - [SMALL_STATE(1669)] = 49417, - [SMALL_STATE(1670)] = 49441, - [SMALL_STATE(1671)] = 49465, - [SMALL_STATE(1672)] = 49489, - [SMALL_STATE(1673)] = 49513, - [SMALL_STATE(1674)] = 49537, - [SMALL_STATE(1675)] = 49557, - [SMALL_STATE(1676)] = 49577, - [SMALL_STATE(1677)] = 49599, - [SMALL_STATE(1678)] = 49623, - [SMALL_STATE(1679)] = 49647, - [SMALL_STATE(1680)] = 49669, - [SMALL_STATE(1681)] = 49693, - [SMALL_STATE(1682)] = 49717, - [SMALL_STATE(1683)] = 49737, - [SMALL_STATE(1684)] = 49761, - [SMALL_STATE(1685)] = 49785, - [SMALL_STATE(1686)] = 49809, - [SMALL_STATE(1687)] = 49829, - [SMALL_STATE(1688)] = 49849, - [SMALL_STATE(1689)] = 49869, - [SMALL_STATE(1690)] = 49893, - [SMALL_STATE(1691)] = 49915, - [SMALL_STATE(1692)] = 49939, - [SMALL_STATE(1693)] = 49959, - [SMALL_STATE(1694)] = 49983, - [SMALL_STATE(1695)] = 50007, - [SMALL_STATE(1696)] = 50027, - [SMALL_STATE(1697)] = 50051, - [SMALL_STATE(1698)] = 50075, - [SMALL_STATE(1699)] = 50099, - [SMALL_STATE(1700)] = 50119, - [SMALL_STATE(1701)] = 50143, - [SMALL_STATE(1702)] = 50165, - [SMALL_STATE(1703)] = 50189, - [SMALL_STATE(1704)] = 50213, - [SMALL_STATE(1705)] = 50237, - [SMALL_STATE(1706)] = 50261, - [SMALL_STATE(1707)] = 50285, - [SMALL_STATE(1708)] = 50309, - [SMALL_STATE(1709)] = 50333, - [SMALL_STATE(1710)] = 50357, - [SMALL_STATE(1711)] = 50381, - [SMALL_STATE(1712)] = 50405, - [SMALL_STATE(1713)] = 50429, - [SMALL_STATE(1714)] = 50451, - [SMALL_STATE(1715)] = 50473, - [SMALL_STATE(1716)] = 50497, - [SMALL_STATE(1717)] = 50521, - [SMALL_STATE(1718)] = 50545, - [SMALL_STATE(1719)] = 50569, - [SMALL_STATE(1720)] = 50591, - [SMALL_STATE(1721)] = 50615, - [SMALL_STATE(1722)] = 50639, - [SMALL_STATE(1723)] = 50663, - [SMALL_STATE(1724)] = 50683, - [SMALL_STATE(1725)] = 50707, - [SMALL_STATE(1726)] = 50727, - [SMALL_STATE(1727)] = 50751, - [SMALL_STATE(1728)] = 50771, - [SMALL_STATE(1729)] = 50795, - [SMALL_STATE(1730)] = 50819, - [SMALL_STATE(1731)] = 50839, - [SMALL_STATE(1732)] = 50863, - [SMALL_STATE(1733)] = 50887, - [SMALL_STATE(1734)] = 50911, - [SMALL_STATE(1735)] = 50935, - [SMALL_STATE(1736)] = 50959, - [SMALL_STATE(1737)] = 50983, - [SMALL_STATE(1738)] = 51007, - [SMALL_STATE(1739)] = 51031, - [SMALL_STATE(1740)] = 51055, - [SMALL_STATE(1741)] = 51079, - [SMALL_STATE(1742)] = 51103, - [SMALL_STATE(1743)] = 51123, - [SMALL_STATE(1744)] = 51145, - [SMALL_STATE(1745)] = 51167, - [SMALL_STATE(1746)] = 51191, - [SMALL_STATE(1747)] = 51215, - [SMALL_STATE(1748)] = 51236, - [SMALL_STATE(1749)] = 51257, - [SMALL_STATE(1750)] = 51278, - [SMALL_STATE(1751)] = 51299, - [SMALL_STATE(1752)] = 51318, - [SMALL_STATE(1753)] = 51337, - [SMALL_STATE(1754)] = 51358, - [SMALL_STATE(1755)] = 51379, - [SMALL_STATE(1756)] = 51400, - [SMALL_STATE(1757)] = 51421, - [SMALL_STATE(1758)] = 51442, - [SMALL_STATE(1759)] = 51461, - [SMALL_STATE(1760)] = 51482, - [SMALL_STATE(1761)] = 51503, - [SMALL_STATE(1762)] = 51524, - [SMALL_STATE(1763)] = 51545, - [SMALL_STATE(1764)] = 51566, - [SMALL_STATE(1765)] = 51585, - [SMALL_STATE(1766)] = 51606, - [SMALL_STATE(1767)] = 51627, - [SMALL_STATE(1768)] = 51646, - [SMALL_STATE(1769)] = 51665, - [SMALL_STATE(1770)] = 51686, - [SMALL_STATE(1771)] = 51707, - [SMALL_STATE(1772)] = 51728, - [SMALL_STATE(1773)] = 51747, - [SMALL_STATE(1774)] = 51768, - [SMALL_STATE(1775)] = 51789, - [SMALL_STATE(1776)] = 51808, - [SMALL_STATE(1777)] = 51829, - [SMALL_STATE(1778)] = 51848, - [SMALL_STATE(1779)] = 51869, - [SMALL_STATE(1780)] = 51888, - [SMALL_STATE(1781)] = 51909, - [SMALL_STATE(1782)] = 51930, - [SMALL_STATE(1783)] = 51951, - [SMALL_STATE(1784)] = 51970, - [SMALL_STATE(1785)] = 51991, - [SMALL_STATE(1786)] = 52010, - [SMALL_STATE(1787)] = 52031, - [SMALL_STATE(1788)] = 52050, - [SMALL_STATE(1789)] = 52069, - [SMALL_STATE(1790)] = 52090, - [SMALL_STATE(1791)] = 52111, - [SMALL_STATE(1792)] = 52132, - [SMALL_STATE(1793)] = 52151, - [SMALL_STATE(1794)] = 52172, - [SMALL_STATE(1795)] = 52193, - [SMALL_STATE(1796)] = 52212, - [SMALL_STATE(1797)] = 52231, - [SMALL_STATE(1798)] = 52252, - [SMALL_STATE(1799)] = 52273, - [SMALL_STATE(1800)] = 52292, - [SMALL_STATE(1801)] = 52311, - [SMALL_STATE(1802)] = 52332, - [SMALL_STATE(1803)] = 52353, - [SMALL_STATE(1804)] = 52372, - [SMALL_STATE(1805)] = 52393, - [SMALL_STATE(1806)] = 52414, - [SMALL_STATE(1807)] = 52435, - [SMALL_STATE(1808)] = 52456, - [SMALL_STATE(1809)] = 52477, - [SMALL_STATE(1810)] = 52498, - [SMALL_STATE(1811)] = 52519, - [SMALL_STATE(1812)] = 52538, - [SMALL_STATE(1813)] = 52559, - [SMALL_STATE(1814)] = 52580, - [SMALL_STATE(1815)] = 52601, - [SMALL_STATE(1816)] = 52620, - [SMALL_STATE(1817)] = 52639, - [SMALL_STATE(1818)] = 52660, - [SMALL_STATE(1819)] = 52679, - [SMALL_STATE(1820)] = 52700, - [SMALL_STATE(1821)] = 52721, - [SMALL_STATE(1822)] = 52742, - [SMALL_STATE(1823)] = 52763, - [SMALL_STATE(1824)] = 52782, - [SMALL_STATE(1825)] = 52803, - [SMALL_STATE(1826)] = 52824, - [SMALL_STATE(1827)] = 52845, - [SMALL_STATE(1828)] = 52866, - [SMALL_STATE(1829)] = 52887, - [SMALL_STATE(1830)] = 52908, - [SMALL_STATE(1831)] = 52929, - [SMALL_STATE(1832)] = 52950, - [SMALL_STATE(1833)] = 52971, - [SMALL_STATE(1834)] = 52992, - [SMALL_STATE(1835)] = 53013, - [SMALL_STATE(1836)] = 53034, - [SMALL_STATE(1837)] = 53055, - [SMALL_STATE(1838)] = 53076, - [SMALL_STATE(1839)] = 53097, - [SMALL_STATE(1840)] = 53116, - [SMALL_STATE(1841)] = 53137, - [SMALL_STATE(1842)] = 53158, - [SMALL_STATE(1843)] = 53179, - [SMALL_STATE(1844)] = 53200, - [SMALL_STATE(1845)] = 53221, - [SMALL_STATE(1846)] = 53242, - [SMALL_STATE(1847)] = 53263, - [SMALL_STATE(1848)] = 53284, - [SMALL_STATE(1849)] = 53305, - [SMALL_STATE(1850)] = 53326, - [SMALL_STATE(1851)] = 53347, - [SMALL_STATE(1852)] = 53368, - [SMALL_STATE(1853)] = 53389, - [SMALL_STATE(1854)] = 53410, - [SMALL_STATE(1855)] = 53429, - [SMALL_STATE(1856)] = 53450, - [SMALL_STATE(1857)] = 53471, - [SMALL_STATE(1858)] = 53492, - [SMALL_STATE(1859)] = 53513, - [SMALL_STATE(1860)] = 53532, - [SMALL_STATE(1861)] = 53553, - [SMALL_STATE(1862)] = 53574, - [SMALL_STATE(1863)] = 53595, - [SMALL_STATE(1864)] = 53616, - [SMALL_STATE(1865)] = 53635, - [SMALL_STATE(1866)] = 53656, - [SMALL_STATE(1867)] = 53677, - [SMALL_STATE(1868)] = 53698, - [SMALL_STATE(1869)] = 53719, - [SMALL_STATE(1870)] = 53740, - [SMALL_STATE(1871)] = 53761, - [SMALL_STATE(1872)] = 53782, - [SMALL_STATE(1873)] = 53803, - [SMALL_STATE(1874)] = 53824, - [SMALL_STATE(1875)] = 53845, - [SMALL_STATE(1876)] = 53864, - [SMALL_STATE(1877)] = 53885, - [SMALL_STATE(1878)] = 53906, - [SMALL_STATE(1879)] = 53925, - [SMALL_STATE(1880)] = 53946, - [SMALL_STATE(1881)] = 53967, - [SMALL_STATE(1882)] = 53986, - [SMALL_STATE(1883)] = 54007, - [SMALL_STATE(1884)] = 54028, - [SMALL_STATE(1885)] = 54047, - [SMALL_STATE(1886)] = 54066, - [SMALL_STATE(1887)] = 54087, - [SMALL_STATE(1888)] = 54108, - [SMALL_STATE(1889)] = 54129, - [SMALL_STATE(1890)] = 54150, - [SMALL_STATE(1891)] = 54171, - [SMALL_STATE(1892)] = 54190, - [SMALL_STATE(1893)] = 54211, - [SMALL_STATE(1894)] = 54230, - [SMALL_STATE(1895)] = 54251, - [SMALL_STATE(1896)] = 54272, - [SMALL_STATE(1897)] = 54293, - [SMALL_STATE(1898)] = 54314, - [SMALL_STATE(1899)] = 54333, - [SMALL_STATE(1900)] = 54354, - [SMALL_STATE(1901)] = 54375, - [SMALL_STATE(1902)] = 54396, - [SMALL_STATE(1903)] = 54417, - [SMALL_STATE(1904)] = 54438, - [SMALL_STATE(1905)] = 54459, - [SMALL_STATE(1906)] = 54480, - [SMALL_STATE(1907)] = 54501, - [SMALL_STATE(1908)] = 54522, - [SMALL_STATE(1909)] = 54543, - [SMALL_STATE(1910)] = 54564, - [SMALL_STATE(1911)] = 54585, - [SMALL_STATE(1912)] = 54604, - [SMALL_STATE(1913)] = 54625, - [SMALL_STATE(1914)] = 54644, - [SMALL_STATE(1915)] = 54665, - [SMALL_STATE(1916)] = 54686, - [SMALL_STATE(1917)] = 54707, - [SMALL_STATE(1918)] = 54728, - [SMALL_STATE(1919)] = 54749, - [SMALL_STATE(1920)] = 54770, - [SMALL_STATE(1921)] = 54791, - [SMALL_STATE(1922)] = 54812, - [SMALL_STATE(1923)] = 54833, - [SMALL_STATE(1924)] = 54852, - [SMALL_STATE(1925)] = 54871, - [SMALL_STATE(1926)] = 54890, - [SMALL_STATE(1927)] = 54911, - [SMALL_STATE(1928)] = 54932, - [SMALL_STATE(1929)] = 54953, - [SMALL_STATE(1930)] = 54974, - [SMALL_STATE(1931)] = 54995, - [SMALL_STATE(1932)] = 55016, - [SMALL_STATE(1933)] = 55037, - [SMALL_STATE(1934)] = 55058, - [SMALL_STATE(1935)] = 55079, - [SMALL_STATE(1936)] = 55098, - [SMALL_STATE(1937)] = 55117, - [SMALL_STATE(1938)] = 55138, - [SMALL_STATE(1939)] = 55159, - [SMALL_STATE(1940)] = 55178, - [SMALL_STATE(1941)] = 55199, - [SMALL_STATE(1942)] = 55218, - [SMALL_STATE(1943)] = 55236, - [SMALL_STATE(1944)] = 55254, - [SMALL_STATE(1945)] = 55272, - [SMALL_STATE(1946)] = 55290, - [SMALL_STATE(1947)] = 55308, - [SMALL_STATE(1948)] = 55326, - [SMALL_STATE(1949)] = 55344, - [SMALL_STATE(1950)] = 55362, - [SMALL_STATE(1951)] = 55380, - [SMALL_STATE(1952)] = 55398, - [SMALL_STATE(1953)] = 55416, - [SMALL_STATE(1954)] = 55434, - [SMALL_STATE(1955)] = 55452, - [SMALL_STATE(1956)] = 55470, - [SMALL_STATE(1957)] = 55488, - [SMALL_STATE(1958)] = 55506, - [SMALL_STATE(1959)] = 55524, - [SMALL_STATE(1960)] = 55542, - [SMALL_STATE(1961)] = 55560, - [SMALL_STATE(1962)] = 55578, - [SMALL_STATE(1963)] = 55596, - [SMALL_STATE(1964)] = 55614, - [SMALL_STATE(1965)] = 55632, - [SMALL_STATE(1966)] = 55650, - [SMALL_STATE(1967)] = 55668, - [SMALL_STATE(1968)] = 55686, - [SMALL_STATE(1969)] = 55704, - [SMALL_STATE(1970)] = 55722, - [SMALL_STATE(1971)] = 55740, - [SMALL_STATE(1972)] = 55758, - [SMALL_STATE(1973)] = 55776, - [SMALL_STATE(1974)] = 55794, - [SMALL_STATE(1975)] = 55812, - [SMALL_STATE(1976)] = 55830, - [SMALL_STATE(1977)] = 55848, - [SMALL_STATE(1978)] = 55866, - [SMALL_STATE(1979)] = 55884, - [SMALL_STATE(1980)] = 55902, - [SMALL_STATE(1981)] = 55920, - [SMALL_STATE(1982)] = 55938, - [SMALL_STATE(1983)] = 55956, - [SMALL_STATE(1984)] = 55974, - [SMALL_STATE(1985)] = 55992, - [SMALL_STATE(1986)] = 56010, - [SMALL_STATE(1987)] = 56028, - [SMALL_STATE(1988)] = 56046, - [SMALL_STATE(1989)] = 56064, - [SMALL_STATE(1990)] = 56082, - [SMALL_STATE(1991)] = 56100, - [SMALL_STATE(1992)] = 56118, - [SMALL_STATE(1993)] = 56136, - [SMALL_STATE(1994)] = 56154, - [SMALL_STATE(1995)] = 56172, - [SMALL_STATE(1996)] = 56190, - [SMALL_STATE(1997)] = 56208, - [SMALL_STATE(1998)] = 56226, - [SMALL_STATE(1999)] = 56244, - [SMALL_STATE(2000)] = 56262, - [SMALL_STATE(2001)] = 56280, - [SMALL_STATE(2002)] = 56298, - [SMALL_STATE(2003)] = 56316, - [SMALL_STATE(2004)] = 56334, - [SMALL_STATE(2005)] = 56352, - [SMALL_STATE(2006)] = 56370, - [SMALL_STATE(2007)] = 56388, - [SMALL_STATE(2008)] = 56406, - [SMALL_STATE(2009)] = 56424, - [SMALL_STATE(2010)] = 56442, - [SMALL_STATE(2011)] = 56460, - [SMALL_STATE(2012)] = 56478, - [SMALL_STATE(2013)] = 56496, - [SMALL_STATE(2014)] = 56514, - [SMALL_STATE(2015)] = 56532, - [SMALL_STATE(2016)] = 56550, - [SMALL_STATE(2017)] = 56568, - [SMALL_STATE(2018)] = 56586, - [SMALL_STATE(2019)] = 56604, - [SMALL_STATE(2020)] = 56622, - [SMALL_STATE(2021)] = 56640, - [SMALL_STATE(2022)] = 56658, - [SMALL_STATE(2023)] = 56676, - [SMALL_STATE(2024)] = 56694, - [SMALL_STATE(2025)] = 56712, - [SMALL_STATE(2026)] = 56730, - [SMALL_STATE(2027)] = 56748, - [SMALL_STATE(2028)] = 56766, - [SMALL_STATE(2029)] = 56784, - [SMALL_STATE(2030)] = 56802, - [SMALL_STATE(2031)] = 56820, - [SMALL_STATE(2032)] = 56838, - [SMALL_STATE(2033)] = 56856, - [SMALL_STATE(2034)] = 56874, - [SMALL_STATE(2035)] = 56892, - [SMALL_STATE(2036)] = 56910, - [SMALL_STATE(2037)] = 56928, - [SMALL_STATE(2038)] = 56946, - [SMALL_STATE(2039)] = 56964, - [SMALL_STATE(2040)] = 56982, - [SMALL_STATE(2041)] = 57000, - [SMALL_STATE(2042)] = 57018, - [SMALL_STATE(2043)] = 57036, - [SMALL_STATE(2044)] = 57054, - [SMALL_STATE(2045)] = 57072, - [SMALL_STATE(2046)] = 57090, - [SMALL_STATE(2047)] = 57108, - [SMALL_STATE(2048)] = 57126, - [SMALL_STATE(2049)] = 57144, - [SMALL_STATE(2050)] = 57162, - [SMALL_STATE(2051)] = 57180, - [SMALL_STATE(2052)] = 57198, - [SMALL_STATE(2053)] = 57216, - [SMALL_STATE(2054)] = 57234, - [SMALL_STATE(2055)] = 57252, - [SMALL_STATE(2056)] = 57270, - [SMALL_STATE(2057)] = 57288, - [SMALL_STATE(2058)] = 57306, - [SMALL_STATE(2059)] = 57324, - [SMALL_STATE(2060)] = 57342, - [SMALL_STATE(2061)] = 57360, - [SMALL_STATE(2062)] = 57378, - [SMALL_STATE(2063)] = 57396, - [SMALL_STATE(2064)] = 57414, - [SMALL_STATE(2065)] = 57432, - [SMALL_STATE(2066)] = 57450, - [SMALL_STATE(2067)] = 57468, - [SMALL_STATE(2068)] = 57486, - [SMALL_STATE(2069)] = 57504, - [SMALL_STATE(2070)] = 57522, - [SMALL_STATE(2071)] = 57540, - [SMALL_STATE(2072)] = 57558, - [SMALL_STATE(2073)] = 57576, - [SMALL_STATE(2074)] = 57594, - [SMALL_STATE(2075)] = 57612, - [SMALL_STATE(2076)] = 57630, - [SMALL_STATE(2077)] = 57648, - [SMALL_STATE(2078)] = 57666, - [SMALL_STATE(2079)] = 57684, - [SMALL_STATE(2080)] = 57702, - [SMALL_STATE(2081)] = 57720, - [SMALL_STATE(2082)] = 57738, - [SMALL_STATE(2083)] = 57756, - [SMALL_STATE(2084)] = 57774, - [SMALL_STATE(2085)] = 57792, - [SMALL_STATE(2086)] = 57810, - [SMALL_STATE(2087)] = 57828, - [SMALL_STATE(2088)] = 57846, - [SMALL_STATE(2089)] = 57864, - [SMALL_STATE(2090)] = 57882, - [SMALL_STATE(2091)] = 57900, - [SMALL_STATE(2092)] = 57918, - [SMALL_STATE(2093)] = 57936, - [SMALL_STATE(2094)] = 57954, - [SMALL_STATE(2095)] = 57972, - [SMALL_STATE(2096)] = 57990, - [SMALL_STATE(2097)] = 58008, - [SMALL_STATE(2098)] = 58026, - [SMALL_STATE(2099)] = 58044, - [SMALL_STATE(2100)] = 58062, - [SMALL_STATE(2101)] = 58080, - [SMALL_STATE(2102)] = 58098, - [SMALL_STATE(2103)] = 58116, - [SMALL_STATE(2104)] = 58134, - [SMALL_STATE(2105)] = 58152, - [SMALL_STATE(2106)] = 58170, - [SMALL_STATE(2107)] = 58188, - [SMALL_STATE(2108)] = 58206, - [SMALL_STATE(2109)] = 58224, - [SMALL_STATE(2110)] = 58242, - [SMALL_STATE(2111)] = 58260, - [SMALL_STATE(2112)] = 58278, - [SMALL_STATE(2113)] = 58296, - [SMALL_STATE(2114)] = 58314, - [SMALL_STATE(2115)] = 58332, - [SMALL_STATE(2116)] = 58350, - [SMALL_STATE(2117)] = 58368, - [SMALL_STATE(2118)] = 58386, - [SMALL_STATE(2119)] = 58404, - [SMALL_STATE(2120)] = 58422, - [SMALL_STATE(2121)] = 58440, - [SMALL_STATE(2122)] = 58458, - [SMALL_STATE(2123)] = 58476, - [SMALL_STATE(2124)] = 58494, - [SMALL_STATE(2125)] = 58512, - [SMALL_STATE(2126)] = 58530, - [SMALL_STATE(2127)] = 58548, - [SMALL_STATE(2128)] = 58566, - [SMALL_STATE(2129)] = 58584, - [SMALL_STATE(2130)] = 58602, - [SMALL_STATE(2131)] = 58620, - [SMALL_STATE(2132)] = 58638, - [SMALL_STATE(2133)] = 58656, - [SMALL_STATE(2134)] = 58674, - [SMALL_STATE(2135)] = 58692, - [SMALL_STATE(2136)] = 58710, - [SMALL_STATE(2137)] = 58728, - [SMALL_STATE(2138)] = 58746, - [SMALL_STATE(2139)] = 58764, - [SMALL_STATE(2140)] = 58782, - [SMALL_STATE(2141)] = 58800, - [SMALL_STATE(2142)] = 58818, - [SMALL_STATE(2143)] = 58836, - [SMALL_STATE(2144)] = 58854, - [SMALL_STATE(2145)] = 58872, - [SMALL_STATE(2146)] = 58890, - [SMALL_STATE(2147)] = 58908, - [SMALL_STATE(2148)] = 58926, - [SMALL_STATE(2149)] = 58944, - [SMALL_STATE(2150)] = 58962, - [SMALL_STATE(2151)] = 58980, - [SMALL_STATE(2152)] = 58998, - [SMALL_STATE(2153)] = 59016, - [SMALL_STATE(2154)] = 59034, - [SMALL_STATE(2155)] = 59052, - [SMALL_STATE(2156)] = 59070, - [SMALL_STATE(2157)] = 59088, - [SMALL_STATE(2158)] = 59106, - [SMALL_STATE(2159)] = 59124, - [SMALL_STATE(2160)] = 59142, - [SMALL_STATE(2161)] = 59160, - [SMALL_STATE(2162)] = 59178, - [SMALL_STATE(2163)] = 59196, - [SMALL_STATE(2164)] = 59214, - [SMALL_STATE(2165)] = 59232, - [SMALL_STATE(2166)] = 59250, - [SMALL_STATE(2167)] = 59268, - [SMALL_STATE(2168)] = 59286, - [SMALL_STATE(2169)] = 59304, - [SMALL_STATE(2170)] = 59322, - [SMALL_STATE(2171)] = 59340, - [SMALL_STATE(2172)] = 59358, - [SMALL_STATE(2173)] = 59376, - [SMALL_STATE(2174)] = 59394, - [SMALL_STATE(2175)] = 59412, - [SMALL_STATE(2176)] = 59430, - [SMALL_STATE(2177)] = 59448, - [SMALL_STATE(2178)] = 59466, - [SMALL_STATE(2179)] = 59484, - [SMALL_STATE(2180)] = 59502, - [SMALL_STATE(2181)] = 59520, - [SMALL_STATE(2182)] = 59538, - [SMALL_STATE(2183)] = 59556, - [SMALL_STATE(2184)] = 59574, - [SMALL_STATE(2185)] = 59592, - [SMALL_STATE(2186)] = 59610, - [SMALL_STATE(2187)] = 59628, - [SMALL_STATE(2188)] = 59646, - [SMALL_STATE(2189)] = 59664, - [SMALL_STATE(2190)] = 59682, - [SMALL_STATE(2191)] = 59700, - [SMALL_STATE(2192)] = 59718, - [SMALL_STATE(2193)] = 59736, - [SMALL_STATE(2194)] = 59754, - [SMALL_STATE(2195)] = 59772, - [SMALL_STATE(2196)] = 59790, - [SMALL_STATE(2197)] = 59808, - [SMALL_STATE(2198)] = 59826, - [SMALL_STATE(2199)] = 59844, - [SMALL_STATE(2200)] = 59862, - [SMALL_STATE(2201)] = 59880, - [SMALL_STATE(2202)] = 59898, - [SMALL_STATE(2203)] = 59916, - [SMALL_STATE(2204)] = 59934, - [SMALL_STATE(2205)] = 59952, - [SMALL_STATE(2206)] = 59970, - [SMALL_STATE(2207)] = 59988, - [SMALL_STATE(2208)] = 60006, - [SMALL_STATE(2209)] = 60024, - [SMALL_STATE(2210)] = 60042, - [SMALL_STATE(2211)] = 60060, - [SMALL_STATE(2212)] = 60078, - [SMALL_STATE(2213)] = 60096, - [SMALL_STATE(2214)] = 60114, - [SMALL_STATE(2215)] = 60132, - [SMALL_STATE(2216)] = 60150, - [SMALL_STATE(2217)] = 60168, - [SMALL_STATE(2218)] = 60186, - [SMALL_STATE(2219)] = 60204, - [SMALL_STATE(2220)] = 60222, - [SMALL_STATE(2221)] = 60240, - [SMALL_STATE(2222)] = 60258, - [SMALL_STATE(2223)] = 60276, - [SMALL_STATE(2224)] = 60294, - [SMALL_STATE(2225)] = 60312, - [SMALL_STATE(2226)] = 60330, - [SMALL_STATE(2227)] = 60348, - [SMALL_STATE(2228)] = 60366, - [SMALL_STATE(2229)] = 60384, - [SMALL_STATE(2230)] = 60402, - [SMALL_STATE(2231)] = 60420, - [SMALL_STATE(2232)] = 60438, - [SMALL_STATE(2233)] = 60456, - [SMALL_STATE(2234)] = 60474, - [SMALL_STATE(2235)] = 60492, - [SMALL_STATE(2236)] = 60510, - [SMALL_STATE(2237)] = 60528, - [SMALL_STATE(2238)] = 60546, - [SMALL_STATE(2239)] = 60564, - [SMALL_STATE(2240)] = 60582, - [SMALL_STATE(2241)] = 60600, - [SMALL_STATE(2242)] = 60618, - [SMALL_STATE(2243)] = 60636, - [SMALL_STATE(2244)] = 60654, - [SMALL_STATE(2245)] = 60672, - [SMALL_STATE(2246)] = 60690, - [SMALL_STATE(2247)] = 60708, - [SMALL_STATE(2248)] = 60726, - [SMALL_STATE(2249)] = 60744, - [SMALL_STATE(2250)] = 60762, - [SMALL_STATE(2251)] = 60780, - [SMALL_STATE(2252)] = 60798, - [SMALL_STATE(2253)] = 60816, - [SMALL_STATE(2254)] = 60834, - [SMALL_STATE(2255)] = 60852, - [SMALL_STATE(2256)] = 60870, - [SMALL_STATE(2257)] = 60888, - [SMALL_STATE(2258)] = 60906, - [SMALL_STATE(2259)] = 60924, - [SMALL_STATE(2260)] = 60942, - [SMALL_STATE(2261)] = 60960, - [SMALL_STATE(2262)] = 60978, - [SMALL_STATE(2263)] = 60996, - [SMALL_STATE(2264)] = 61014, - [SMALL_STATE(2265)] = 61032, - [SMALL_STATE(2266)] = 61050, - [SMALL_STATE(2267)] = 61068, - [SMALL_STATE(2268)] = 61086, - [SMALL_STATE(2269)] = 61104, - [SMALL_STATE(2270)] = 61122, - [SMALL_STATE(2271)] = 61140, - [SMALL_STATE(2272)] = 61158, - [SMALL_STATE(2273)] = 61176, - [SMALL_STATE(2274)] = 61194, - [SMALL_STATE(2275)] = 61212, - [SMALL_STATE(2276)] = 61230, - [SMALL_STATE(2277)] = 61248, - [SMALL_STATE(2278)] = 61266, - [SMALL_STATE(2279)] = 61284, - [SMALL_STATE(2280)] = 61302, - [SMALL_STATE(2281)] = 61320, - [SMALL_STATE(2282)] = 61338, - [SMALL_STATE(2283)] = 61356, - [SMALL_STATE(2284)] = 61374, - [SMALL_STATE(2285)] = 61378, - [SMALL_STATE(2286)] = 61382, - [SMALL_STATE(2287)] = 61386, - [SMALL_STATE(2288)] = 61390, + [SMALL_STATE(831)] = 0, + [SMALL_STATE(832)] = 84, + [SMALL_STATE(833)] = 166, + [SMALL_STATE(834)] = 247, + [SMALL_STATE(835)] = 328, + [SMALL_STATE(836)] = 434, + [SMALL_STATE(837)] = 552, + [SMALL_STATE(838)] = 670, + [SMALL_STATE(839)] = 788, + [SMALL_STATE(840)] = 906, + [SMALL_STATE(841)] = 1024, + [SMALL_STATE(842)] = 1158, + [SMALL_STATE(843)] = 1292, + [SMALL_STATE(844)] = 1378, + [SMALL_STATE(845)] = 1508, + [SMALL_STATE(846)] = 1620, + [SMALL_STATE(847)] = 1766, + [SMALL_STATE(848)] = 1848, + [SMALL_STATE(849)] = 1944, + [SMALL_STATE(850)] = 2090, + [SMALL_STATE(851)] = 2168, + [SMALL_STATE(852)] = 2274, + [SMALL_STATE(853)] = 2404, + [SMALL_STATE(854)] = 2516, + [SMALL_STATE(855)] = 2612, + [SMALL_STATE(856)] = 2724, + [SMALL_STATE(857)] = 2826, + [SMALL_STATE(858)] = 2928, + [SMALL_STATE(859)] = 3024, + [SMALL_STATE(860)] = 3100, + [SMALL_STATE(861)] = 3244, + [SMALL_STATE(862)] = 3388, + [SMALL_STATE(863)] = 3532, + [SMALL_STATE(864)] = 3628, + [SMALL_STATE(865)] = 3724, + [SMALL_STATE(866)] = 3830, + [SMALL_STATE(867)] = 3916, + [SMALL_STATE(868)] = 4034, + [SMALL_STATE(869)] = 4107, + [SMALL_STATE(870)] = 4184, + [SMALL_STATE(871)] = 4259, + [SMALL_STATE(872)] = 4336, + [SMALL_STATE(873)] = 4411, + [SMALL_STATE(874)] = 4488, + [SMALL_STATE(875)] = 4561, + [SMALL_STATE(876)] = 4634, + [SMALL_STATE(877)] = 4707, + [SMALL_STATE(878)] = 4780, + [SMALL_STATE(879)] = 4852, + [SMALL_STATE(880)] = 4924, + [SMALL_STATE(881)] = 4996, + [SMALL_STATE(882)] = 5068, + [SMALL_STATE(883)] = 5140, + [SMALL_STATE(884)] = 5212, + [SMALL_STATE(885)] = 5284, + [SMALL_STATE(886)] = 5356, + [SMALL_STATE(887)] = 5430, + [SMALL_STATE(888)] = 5502, + [SMALL_STATE(889)] = 5574, + [SMALL_STATE(890)] = 5646, + [SMALL_STATE(891)] = 5718, + [SMALL_STATE(892)] = 5790, + [SMALL_STATE(893)] = 5862, + [SMALL_STATE(894)] = 5934, + [SMALL_STATE(895)] = 6006, + [SMALL_STATE(896)] = 6078, + [SMALL_STATE(897)] = 6150, + [SMALL_STATE(898)] = 6221, + [SMALL_STATE(899)] = 6292, + [SMALL_STATE(900)] = 6363, + [SMALL_STATE(901)] = 6434, + [SMALL_STATE(902)] = 6505, + [SMALL_STATE(903)] = 6576, + [SMALL_STATE(904)] = 6647, + [SMALL_STATE(905)] = 6718, + [SMALL_STATE(906)] = 6789, + [SMALL_STATE(907)] = 6860, + [SMALL_STATE(908)] = 6931, + [SMALL_STATE(909)] = 7002, + [SMALL_STATE(910)] = 7073, + [SMALL_STATE(911)] = 7144, + [SMALL_STATE(912)] = 7215, + [SMALL_STATE(913)] = 7286, + [SMALL_STATE(914)] = 7357, + [SMALL_STATE(915)] = 7428, + [SMALL_STATE(916)] = 7499, + [SMALL_STATE(917)] = 7570, + [SMALL_STATE(918)] = 7641, + [SMALL_STATE(919)] = 7712, + [SMALL_STATE(920)] = 7783, + [SMALL_STATE(921)] = 7854, + [SMALL_STATE(922)] = 7925, + [SMALL_STATE(923)] = 7996, + [SMALL_STATE(924)] = 8067, + [SMALL_STATE(925)] = 8138, + [SMALL_STATE(926)] = 8209, + [SMALL_STATE(927)] = 8280, + [SMALL_STATE(928)] = 8351, + [SMALL_STATE(929)] = 8422, + [SMALL_STATE(930)] = 8493, + [SMALL_STATE(931)] = 8564, + [SMALL_STATE(932)] = 8635, + [SMALL_STATE(933)] = 8706, + [SMALL_STATE(934)] = 8777, + [SMALL_STATE(935)] = 8848, + [SMALL_STATE(936)] = 8919, + [SMALL_STATE(937)] = 8990, + [SMALL_STATE(938)] = 9061, + [SMALL_STATE(939)] = 9132, + [SMALL_STATE(940)] = 9203, + [SMALL_STATE(941)] = 9274, + [SMALL_STATE(942)] = 9345, + [SMALL_STATE(943)] = 9416, + [SMALL_STATE(944)] = 9487, + [SMALL_STATE(945)] = 9558, + [SMALL_STATE(946)] = 9629, + [SMALL_STATE(947)] = 9700, + [SMALL_STATE(948)] = 9771, + [SMALL_STATE(949)] = 9842, + [SMALL_STATE(950)] = 9913, + [SMALL_STATE(951)] = 9984, + [SMALL_STATE(952)] = 10055, + [SMALL_STATE(953)] = 10126, + [SMALL_STATE(954)] = 10197, + [SMALL_STATE(955)] = 10268, + [SMALL_STATE(956)] = 10339, + [SMALL_STATE(957)] = 10410, + [SMALL_STATE(958)] = 10481, + [SMALL_STATE(959)] = 10552, + [SMALL_STATE(960)] = 10623, + [SMALL_STATE(961)] = 10694, + [SMALL_STATE(962)] = 10765, + [SMALL_STATE(963)] = 10836, + [SMALL_STATE(964)] = 10907, + [SMALL_STATE(965)] = 10978, + [SMALL_STATE(966)] = 11049, + [SMALL_STATE(967)] = 11120, + [SMALL_STATE(968)] = 11191, + [SMALL_STATE(969)] = 11262, + [SMALL_STATE(970)] = 11333, + [SMALL_STATE(971)] = 11404, + [SMALL_STATE(972)] = 11475, + [SMALL_STATE(973)] = 11546, + [SMALL_STATE(974)] = 11617, + [SMALL_STATE(975)] = 11688, + [SMALL_STATE(976)] = 11759, + [SMALL_STATE(977)] = 11830, + [SMALL_STATE(978)] = 11901, + [SMALL_STATE(979)] = 11972, + [SMALL_STATE(980)] = 12043, + [SMALL_STATE(981)] = 12114, + [SMALL_STATE(982)] = 12185, + [SMALL_STATE(983)] = 12256, + [SMALL_STATE(984)] = 12327, + [SMALL_STATE(985)] = 12398, + [SMALL_STATE(986)] = 12469, + [SMALL_STATE(987)] = 12540, + [SMALL_STATE(988)] = 12611, + [SMALL_STATE(989)] = 12682, + [SMALL_STATE(990)] = 12753, + [SMALL_STATE(991)] = 12824, + [SMALL_STATE(992)] = 12895, + [SMALL_STATE(993)] = 12966, + [SMALL_STATE(994)] = 13037, + [SMALL_STATE(995)] = 13108, + [SMALL_STATE(996)] = 13179, + [SMALL_STATE(997)] = 13250, + [SMALL_STATE(998)] = 13321, + [SMALL_STATE(999)] = 13392, + [SMALL_STATE(1000)] = 13463, + [SMALL_STATE(1001)] = 13534, + [SMALL_STATE(1002)] = 13605, + [SMALL_STATE(1003)] = 13676, + [SMALL_STATE(1004)] = 13747, + [SMALL_STATE(1005)] = 13818, + [SMALL_STATE(1006)] = 13889, + [SMALL_STATE(1007)] = 13960, + [SMALL_STATE(1008)] = 14031, + [SMALL_STATE(1009)] = 14102, + [SMALL_STATE(1010)] = 14173, + [SMALL_STATE(1011)] = 14244, + [SMALL_STATE(1012)] = 14315, + [SMALL_STATE(1013)] = 14386, + [SMALL_STATE(1014)] = 14457, + [SMALL_STATE(1015)] = 14528, + [SMALL_STATE(1016)] = 14599, + [SMALL_STATE(1017)] = 14670, + [SMALL_STATE(1018)] = 14741, + [SMALL_STATE(1019)] = 14812, + [SMALL_STATE(1020)] = 14883, + [SMALL_STATE(1021)] = 14954, + [SMALL_STATE(1022)] = 15025, + [SMALL_STATE(1023)] = 15096, + [SMALL_STATE(1024)] = 15167, + [SMALL_STATE(1025)] = 15238, + [SMALL_STATE(1026)] = 15309, + [SMALL_STATE(1027)] = 15380, + [SMALL_STATE(1028)] = 15451, + [SMALL_STATE(1029)] = 15522, + [SMALL_STATE(1030)] = 15593, + [SMALL_STATE(1031)] = 15734, + [SMALL_STATE(1032)] = 15875, + [SMALL_STATE(1033)] = 16020, + [SMALL_STATE(1034)] = 16164, + [SMALL_STATE(1035)] = 16304, + [SMALL_STATE(1036)] = 16448, + [SMALL_STATE(1037)] = 16588, + [SMALL_STATE(1038)] = 16732, + [SMALL_STATE(1039)] = 16872, + [SMALL_STATE(1040)] = 17016, + [SMALL_STATE(1041)] = 17156, + [SMALL_STATE(1042)] = 17296, + [SMALL_STATE(1043)] = 17436, + [SMALL_STATE(1044)] = 17580, + [SMALL_STATE(1045)] = 17724, + [SMALL_STATE(1046)] = 17864, + [SMALL_STATE(1047)] = 18008, + [SMALL_STATE(1048)] = 18152, + [SMALL_STATE(1049)] = 18294, + [SMALL_STATE(1050)] = 18433, + [SMALL_STATE(1051)] = 18504, + [SMALL_STATE(1052)] = 18645, + [SMALL_STATE(1053)] = 18786, + [SMALL_STATE(1054)] = 18925, + [SMALL_STATE(1055)] = 19000, + [SMALL_STATE(1056)] = 19139, + [SMALL_STATE(1057)] = 19278, + [SMALL_STATE(1058)] = 19417, + [SMALL_STATE(1059)] = 19556, + [SMALL_STATE(1060)] = 19695, + [SMALL_STATE(1061)] = 19762, + [SMALL_STATE(1062)] = 19831, + [SMALL_STATE(1063)] = 19900, + [SMALL_STATE(1064)] = 19971, + [SMALL_STATE(1065)] = 20110, + [SMALL_STATE(1066)] = 20248, + [SMALL_STATE(1067)] = 20386, + [SMALL_STATE(1068)] = 20524, + [SMALL_STATE(1069)] = 20602, + [SMALL_STATE(1070)] = 20740, + [SMALL_STATE(1071)] = 20878, + [SMALL_STATE(1072)] = 21016, + [SMALL_STATE(1073)] = 21154, + [SMALL_STATE(1074)] = 21292, + [SMALL_STATE(1075)] = 21430, + [SMALL_STATE(1076)] = 21568, + [SMALL_STATE(1077)] = 21706, + [SMALL_STATE(1078)] = 21844, + [SMALL_STATE(1079)] = 21982, + [SMALL_STATE(1080)] = 22120, + [SMALL_STATE(1081)] = 22198, + [SMALL_STATE(1082)] = 22268, + [SMALL_STATE(1083)] = 22406, + [SMALL_STATE(1084)] = 22474, + [SMALL_STATE(1085)] = 22612, + [SMALL_STATE(1086)] = 22750, + [SMALL_STATE(1087)] = 22888, + [SMALL_STATE(1088)] = 23026, + [SMALL_STATE(1089)] = 23164, + [SMALL_STATE(1090)] = 23302, + [SMALL_STATE(1091)] = 23440, + [SMALL_STATE(1092)] = 23578, + [SMALL_STATE(1093)] = 23716, + [SMALL_STATE(1094)] = 23854, + [SMALL_STATE(1095)] = 23992, + [SMALL_STATE(1096)] = 24130, + [SMALL_STATE(1097)] = 24268, + [SMALL_STATE(1098)] = 24406, + [SMALL_STATE(1099)] = 24544, + [SMALL_STATE(1100)] = 24682, + [SMALL_STATE(1101)] = 24820, + [SMALL_STATE(1102)] = 24958, + [SMALL_STATE(1103)] = 25096, + [SMALL_STATE(1104)] = 25234, + [SMALL_STATE(1105)] = 25372, + [SMALL_STATE(1106)] = 25510, + [SMALL_STATE(1107)] = 25648, + [SMALL_STATE(1108)] = 25786, + [SMALL_STATE(1109)] = 25924, + [SMALL_STATE(1110)] = 26062, + [SMALL_STATE(1111)] = 26200, + [SMALL_STATE(1112)] = 26338, + [SMALL_STATE(1113)] = 26476, + [SMALL_STATE(1114)] = 26614, + [SMALL_STATE(1115)] = 26752, + [SMALL_STATE(1116)] = 26830, + [SMALL_STATE(1117)] = 26896, + [SMALL_STATE(1118)] = 27034, + [SMALL_STATE(1119)] = 27172, + [SMALL_STATE(1120)] = 27310, + [SMALL_STATE(1121)] = 27445, + [SMALL_STATE(1122)] = 27510, + [SMALL_STATE(1123)] = 27575, + [SMALL_STATE(1124)] = 27640, + [SMALL_STATE(1125)] = 27705, + [SMALL_STATE(1126)] = 27770, + [SMALL_STATE(1127)] = 27835, + [SMALL_STATE(1128)] = 27900, + [SMALL_STATE(1129)] = 27965, + [SMALL_STATE(1130)] = 28068, + [SMALL_STATE(1131)] = 28137, + [SMALL_STATE(1132)] = 28202, + [SMALL_STATE(1133)] = 28267, + [SMALL_STATE(1134)] = 28332, + [SMALL_STATE(1135)] = 28397, + [SMALL_STATE(1136)] = 28497, + [SMALL_STATE(1137)] = 28595, + [SMALL_STATE(1138)] = 28693, + [SMALL_STATE(1139)] = 28791, + [SMALL_STATE(1140)] = 28889, + [SMALL_STATE(1141)] = 28989, + [SMALL_STATE(1142)] = 29083, + [SMALL_STATE(1143)] = 29149, + [SMALL_STATE(1144)] = 29247, + [SMALL_STATE(1145)] = 29343, + [SMALL_STATE(1146)] = 29443, + [SMALL_STATE(1147)] = 29543, + [SMALL_STATE(1148)] = 29643, + [SMALL_STATE(1149)] = 29711, + [SMALL_STATE(1150)] = 29809, + [SMALL_STATE(1151)] = 29906, + [SMALL_STATE(1152)] = 29971, + [SMALL_STATE(1153)] = 30065, + [SMALL_STATE(1154)] = 30152, + [SMALL_STATE(1155)] = 30235, + [SMALL_STATE(1156)] = 30320, + [SMALL_STATE(1157)] = 30403, + [SMALL_STATE(1158)] = 30488, + [SMALL_STATE(1159)] = 30570, + [SMALL_STATE(1160)] = 30652, + [SMALL_STATE(1161)] = 30734, + [SMALL_STATE(1162)] = 30816, + [SMALL_STATE(1163)] = 30896, + [SMALL_STATE(1164)] = 30978, + [SMALL_STATE(1165)] = 31060, + [SMALL_STATE(1166)] = 31142, + [SMALL_STATE(1167)] = 31224, + [SMALL_STATE(1168)] = 31306, + [SMALL_STATE(1169)] = 31385, + [SMALL_STATE(1170)] = 31464, + [SMALL_STATE(1171)] = 31543, + [SMALL_STATE(1172)] = 31622, + [SMALL_STATE(1173)] = 31701, + [SMALL_STATE(1174)] = 31780, + [SMALL_STATE(1175)] = 31859, + [SMALL_STATE(1176)] = 31938, + [SMALL_STATE(1177)] = 32017, + [SMALL_STATE(1178)] = 32096, + [SMALL_STATE(1179)] = 32175, + [SMALL_STATE(1180)] = 32254, + [SMALL_STATE(1181)] = 32333, + [SMALL_STATE(1182)] = 32409, + [SMALL_STATE(1183)] = 32485, + [SMALL_STATE(1184)] = 32561, + [SMALL_STATE(1185)] = 32637, + [SMALL_STATE(1186)] = 32713, + [SMALL_STATE(1187)] = 32789, + [SMALL_STATE(1188)] = 32865, + [SMALL_STATE(1189)] = 32941, + [SMALL_STATE(1190)] = 33017, + [SMALL_STATE(1191)] = 33093, + [SMALL_STATE(1192)] = 33169, + [SMALL_STATE(1193)] = 33245, + [SMALL_STATE(1194)] = 33321, + [SMALL_STATE(1195)] = 33397, + [SMALL_STATE(1196)] = 33473, + [SMALL_STATE(1197)] = 33549, + [SMALL_STATE(1198)] = 33625, + [SMALL_STATE(1199)] = 33701, + [SMALL_STATE(1200)] = 33777, + [SMALL_STATE(1201)] = 33832, + [SMALL_STATE(1202)] = 33887, + [SMALL_STATE(1203)] = 33942, + [SMALL_STATE(1204)] = 33997, + [SMALL_STATE(1205)] = 34052, + [SMALL_STATE(1206)] = 34107, + [SMALL_STATE(1207)] = 34162, + [SMALL_STATE(1208)] = 34217, + [SMALL_STATE(1209)] = 34272, + [SMALL_STATE(1210)] = 34327, + [SMALL_STATE(1211)] = 34382, + [SMALL_STATE(1212)] = 34437, + [SMALL_STATE(1213)] = 34492, + [SMALL_STATE(1214)] = 34547, + [SMALL_STATE(1215)] = 34602, + [SMALL_STATE(1216)] = 34653, + [SMALL_STATE(1217)] = 34704, + [SMALL_STATE(1218)] = 34755, + [SMALL_STATE(1219)] = 34806, + [SMALL_STATE(1220)] = 34856, + [SMALL_STATE(1221)] = 34906, + [SMALL_STATE(1222)] = 34955, + [SMALL_STATE(1223)] = 34996, + [SMALL_STATE(1224)] = 35041, + [SMALL_STATE(1225)] = 35090, + [SMALL_STATE(1226)] = 35126, + [SMALL_STATE(1227)] = 35161, + [SMALL_STATE(1228)] = 35196, + [SMALL_STATE(1229)] = 35231, + [SMALL_STATE(1230)] = 35288, + [SMALL_STATE(1231)] = 35323, + [SMALL_STATE(1232)] = 35358, + [SMALL_STATE(1233)] = 35409, + [SMALL_STATE(1234)] = 35444, + [SMALL_STATE(1235)] = 35507, + [SMALL_STATE(1236)] = 35542, + [SMALL_STATE(1237)] = 35577, + [SMALL_STATE(1238)] = 35612, + [SMALL_STATE(1239)] = 35647, + [SMALL_STATE(1240)] = 35700, + [SMALL_STATE(1241)] = 35735, + [SMALL_STATE(1242)] = 35798, + [SMALL_STATE(1243)] = 35833, + [SMALL_STATE(1244)] = 35896, + [SMALL_STATE(1245)] = 35959, + [SMALL_STATE(1246)] = 36019, + [SMALL_STATE(1247)] = 36079, + [SMALL_STATE(1248)] = 36135, + [SMALL_STATE(1249)] = 36195, + [SMALL_STATE(1250)] = 36252, + [SMALL_STATE(1251)] = 36303, + [SMALL_STATE(1252)] = 36354, + [SMALL_STATE(1253)] = 36411, + [SMALL_STATE(1254)] = 36466, + [SMALL_STATE(1255)] = 36523, + [SMALL_STATE(1256)] = 36574, + [SMALL_STATE(1257)] = 36631, + [SMALL_STATE(1258)] = 36688, + [SMALL_STATE(1259)] = 36745, + [SMALL_STATE(1260)] = 36796, + [SMALL_STATE(1261)] = 36831, + [SMALL_STATE(1262)] = 36888, + [SMALL_STATE(1263)] = 36945, + [SMALL_STATE(1264)] = 36996, + [SMALL_STATE(1265)] = 37053, + [SMALL_STATE(1266)] = 37107, + [SMALL_STATE(1267)] = 37161, + [SMALL_STATE(1268)] = 37203, + [SMALL_STATE(1269)] = 37257, + [SMALL_STATE(1270)] = 37311, + [SMALL_STATE(1271)] = 37365, + [SMALL_STATE(1272)] = 37419, + [SMALL_STATE(1273)] = 37473, + [SMALL_STATE(1274)] = 37527, + [SMALL_STATE(1275)] = 37581, + [SMALL_STATE(1276)] = 37635, + [SMALL_STATE(1277)] = 37689, + [SMALL_STATE(1278)] = 37743, + [SMALL_STATE(1279)] = 37797, + [SMALL_STATE(1280)] = 37851, + [SMALL_STATE(1281)] = 37905, + [SMALL_STATE(1282)] = 37959, + [SMALL_STATE(1283)] = 38013, + [SMALL_STATE(1284)] = 38067, + [SMALL_STATE(1285)] = 38121, + [SMALL_STATE(1286)] = 38172, + [SMALL_STATE(1287)] = 38223, + [SMALL_STATE(1288)] = 38274, + [SMALL_STATE(1289)] = 38323, + [SMALL_STATE(1290)] = 38372, + [SMALL_STATE(1291)] = 38407, + [SMALL_STATE(1292)] = 38458, + [SMALL_STATE(1293)] = 38497, + [SMALL_STATE(1294)] = 38536, + [SMALL_STATE(1295)] = 38587, + [SMALL_STATE(1296)] = 38638, + [SMALL_STATE(1297)] = 38689, + [SMALL_STATE(1298)] = 38740, + [SMALL_STATE(1299)] = 38791, + [SMALL_STATE(1300)] = 38842, + [SMALL_STATE(1301)] = 38873, + [SMALL_STATE(1302)] = 38924, + [SMALL_STATE(1303)] = 38975, + [SMALL_STATE(1304)] = 39026, + [SMALL_STATE(1305)] = 39057, + [SMALL_STATE(1306)] = 39108, + [SMALL_STATE(1307)] = 39159, + [SMALL_STATE(1308)] = 39198, + [SMALL_STATE(1309)] = 39249, + [SMALL_STATE(1310)] = 39300, + [SMALL_STATE(1311)] = 39348, + [SMALL_STATE(1312)] = 39396, + [SMALL_STATE(1313)] = 39444, + [SMALL_STATE(1314)] = 39474, + [SMALL_STATE(1315)] = 39504, + [SMALL_STATE(1316)] = 39534, + [SMALL_STATE(1317)] = 39582, + [SMALL_STATE(1318)] = 39630, + [SMALL_STATE(1319)] = 39678, + [SMALL_STATE(1320)] = 39726, + [SMALL_STATE(1321)] = 39774, + [SMALL_STATE(1322)] = 39804, + [SMALL_STATE(1323)] = 39852, + [SMALL_STATE(1324)] = 39900, + [SMALL_STATE(1325)] = 39948, + [SMALL_STATE(1326)] = 39996, + [SMALL_STATE(1327)] = 40044, + [SMALL_STATE(1328)] = 40092, + [SMALL_STATE(1329)] = 40140, + [SMALL_STATE(1330)] = 40188, + [SMALL_STATE(1331)] = 40236, + [SMALL_STATE(1332)] = 40284, + [SMALL_STATE(1333)] = 40332, + [SMALL_STATE(1334)] = 40380, + [SMALL_STATE(1335)] = 40428, + [SMALL_STATE(1336)] = 40457, + [SMALL_STATE(1337)] = 40502, + [SMALL_STATE(1338)] = 40547, + [SMALL_STATE(1339)] = 40592, + [SMALL_STATE(1340)] = 40637, + [SMALL_STATE(1341)] = 40682, + [SMALL_STATE(1342)] = 40727, + [SMALL_STATE(1343)] = 40772, + [SMALL_STATE(1344)] = 40801, + [SMALL_STATE(1345)] = 40846, + [SMALL_STATE(1346)] = 40875, + [SMALL_STATE(1347)] = 40904, + [SMALL_STATE(1348)] = 40949, + [SMALL_STATE(1349)] = 40994, + [SMALL_STATE(1350)] = 41039, + [SMALL_STATE(1351)] = 41084, + [SMALL_STATE(1352)] = 41111, + [SMALL_STATE(1353)] = 41143, + [SMALL_STATE(1354)] = 41169, + [SMALL_STATE(1355)] = 41204, + [SMALL_STATE(1356)] = 41229, + [SMALL_STATE(1357)] = 41262, + [SMALL_STATE(1358)] = 41299, + [SMALL_STATE(1359)] = 41324, + [SMALL_STATE(1360)] = 41349, + [SMALL_STATE(1361)] = 41374, + [SMALL_STATE(1362)] = 41411, + [SMALL_STATE(1363)] = 41436, + [SMALL_STATE(1364)] = 41461, + [SMALL_STATE(1365)] = 41485, + [SMALL_STATE(1366)] = 41519, + [SMALL_STATE(1367)] = 41555, + [SMALL_STATE(1368)] = 41581, + [SMALL_STATE(1369)] = 41617, + [SMALL_STATE(1370)] = 41653, + [SMALL_STATE(1371)] = 41685, + [SMALL_STATE(1372)] = 41715, + [SMALL_STATE(1373)] = 41751, + [SMALL_STATE(1374)] = 41787, + [SMALL_STATE(1375)] = 41823, + [SMALL_STATE(1376)] = 41853, + [SMALL_STATE(1377)] = 41889, + [SMALL_STATE(1378)] = 41925, + [SMALL_STATE(1379)] = 41957, + [SMALL_STATE(1380)] = 41981, + [SMALL_STATE(1381)] = 42017, + [SMALL_STATE(1382)] = 42043, + [SMALL_STATE(1383)] = 42076, + [SMALL_STATE(1384)] = 42103, + [SMALL_STATE(1385)] = 42134, + [SMALL_STATE(1386)] = 42157, + [SMALL_STATE(1387)] = 42180, + [SMALL_STATE(1388)] = 42211, + [SMALL_STATE(1389)] = 42242, + [SMALL_STATE(1390)] = 42273, + [SMALL_STATE(1391)] = 42304, + [SMALL_STATE(1392)] = 42335, + [SMALL_STATE(1393)] = 42366, + [SMALL_STATE(1394)] = 42397, + [SMALL_STATE(1395)] = 42428, + [SMALL_STATE(1396)] = 42459, + [SMALL_STATE(1397)] = 42482, + [SMALL_STATE(1398)] = 42511, + [SMALL_STATE(1399)] = 42540, + [SMALL_STATE(1400)] = 42565, + [SMALL_STATE(1401)] = 42596, + [SMALL_STATE(1402)] = 42623, + [SMALL_STATE(1403)] = 42654, + [SMALL_STATE(1404)] = 42685, + [SMALL_STATE(1405)] = 42716, + [SMALL_STATE(1406)] = 42747, + [SMALL_STATE(1407)] = 42778, + [SMALL_STATE(1408)] = 42805, + [SMALL_STATE(1409)] = 42834, + [SMALL_STATE(1410)] = 42865, + [SMALL_STATE(1411)] = 42892, + [SMALL_STATE(1412)] = 42923, + [SMALL_STATE(1413)] = 42956, + [SMALL_STATE(1414)] = 42987, + [SMALL_STATE(1415)] = 43018, + [SMALL_STATE(1416)] = 43049, + [SMALL_STATE(1417)] = 43080, + [SMALL_STATE(1418)] = 43111, + [SMALL_STATE(1419)] = 43134, + [SMALL_STATE(1420)] = 43165, + [SMALL_STATE(1421)] = 43196, + [SMALL_STATE(1422)] = 43219, + [SMALL_STATE(1423)] = 43250, + [SMALL_STATE(1424)] = 43281, + [SMALL_STATE(1425)] = 43312, + [SMALL_STATE(1426)] = 43343, + [SMALL_STATE(1427)] = 43374, + [SMALL_STATE(1428)] = 43405, + [SMALL_STATE(1429)] = 43436, + [SMALL_STATE(1430)] = 43467, + [SMALL_STATE(1431)] = 43498, + [SMALL_STATE(1432)] = 43531, + [SMALL_STATE(1433)] = 43562, + [SMALL_STATE(1434)] = 43595, + [SMALL_STATE(1435)] = 43618, + [SMALL_STATE(1436)] = 43641, + [SMALL_STATE(1437)] = 43670, + [SMALL_STATE(1438)] = 43695, + [SMALL_STATE(1439)] = 43726, + [SMALL_STATE(1440)] = 43751, + [SMALL_STATE(1441)] = 43780, + [SMALL_STATE(1442)] = 43805, + [SMALL_STATE(1443)] = 43836, + [SMALL_STATE(1444)] = 43863, + [SMALL_STATE(1445)] = 43892, + [SMALL_STATE(1446)] = 43925, + [SMALL_STATE(1447)] = 43952, + [SMALL_STATE(1448)] = 43974, + [SMALL_STATE(1449)] = 44004, + [SMALL_STATE(1450)] = 44026, + [SMALL_STATE(1451)] = 44048, + [SMALL_STATE(1452)] = 44070, + [SMALL_STATE(1453)] = 44098, + [SMALL_STATE(1454)] = 44128, + [SMALL_STATE(1455)] = 44154, + [SMALL_STATE(1456)] = 44184, + [SMALL_STATE(1457)] = 44214, + [SMALL_STATE(1458)] = 44236, + [SMALL_STATE(1459)] = 44262, + [SMALL_STATE(1460)] = 44290, + [SMALL_STATE(1461)] = 44320, + [SMALL_STATE(1462)] = 44344, + [SMALL_STATE(1463)] = 44370, + [SMALL_STATE(1464)] = 44400, + [SMALL_STATE(1465)] = 44422, + [SMALL_STATE(1466)] = 44444, + [SMALL_STATE(1467)] = 44466, + [SMALL_STATE(1468)] = 44488, + [SMALL_STATE(1469)] = 44514, + [SMALL_STATE(1470)] = 44542, + [SMALL_STATE(1471)] = 44564, + [SMALL_STATE(1472)] = 44586, + [SMALL_STATE(1473)] = 44616, + [SMALL_STATE(1474)] = 44640, + [SMALL_STATE(1475)] = 44662, + [SMALL_STATE(1476)] = 44684, + [SMALL_STATE(1477)] = 44706, + [SMALL_STATE(1478)] = 44728, + [SMALL_STATE(1479)] = 44752, + [SMALL_STATE(1480)] = 44782, + [SMALL_STATE(1481)] = 44804, + [SMALL_STATE(1482)] = 44834, + [SMALL_STATE(1483)] = 44864, + [SMALL_STATE(1484)] = 44894, + [SMALL_STATE(1485)] = 44924, + [SMALL_STATE(1486)] = 44945, + [SMALL_STATE(1487)] = 44972, + [SMALL_STATE(1488)] = 44999, + [SMALL_STATE(1489)] = 45026, + [SMALL_STATE(1490)] = 45053, + [SMALL_STATE(1491)] = 45074, + [SMALL_STATE(1492)] = 45097, + [SMALL_STATE(1493)] = 45118, + [SMALL_STATE(1494)] = 45139, + [SMALL_STATE(1495)] = 45166, + [SMALL_STATE(1496)] = 45191, + [SMALL_STATE(1497)] = 45218, + [SMALL_STATE(1498)] = 45241, + [SMALL_STATE(1499)] = 45264, + [SMALL_STATE(1500)] = 45291, + [SMALL_STATE(1501)] = 45318, + [SMALL_STATE(1502)] = 45343, + [SMALL_STATE(1503)] = 45364, + [SMALL_STATE(1504)] = 45385, + [SMALL_STATE(1505)] = 45406, + [SMALL_STATE(1506)] = 45433, + [SMALL_STATE(1507)] = 45460, + [SMALL_STATE(1508)] = 45487, + [SMALL_STATE(1509)] = 45508, + [SMALL_STATE(1510)] = 45535, + [SMALL_STATE(1511)] = 45560, + [SMALL_STATE(1512)] = 45587, + [SMALL_STATE(1513)] = 45612, + [SMALL_STATE(1514)] = 45639, + [SMALL_STATE(1515)] = 45666, + [SMALL_STATE(1516)] = 45687, + [SMALL_STATE(1517)] = 45708, + [SMALL_STATE(1518)] = 45729, + [SMALL_STATE(1519)] = 45756, + [SMALL_STATE(1520)] = 45783, + [SMALL_STATE(1521)] = 45804, + [SMALL_STATE(1522)] = 45831, + [SMALL_STATE(1523)] = 45858, + [SMALL_STATE(1524)] = 45885, + [SMALL_STATE(1525)] = 45908, + [SMALL_STATE(1526)] = 45935, + [SMALL_STATE(1527)] = 45960, + [SMALL_STATE(1528)] = 45981, + [SMALL_STATE(1529)] = 46008, + [SMALL_STATE(1530)] = 46029, + [SMALL_STATE(1531)] = 46056, + [SMALL_STATE(1532)] = 46077, + [SMALL_STATE(1533)] = 46104, + [SMALL_STATE(1534)] = 46131, + [SMALL_STATE(1535)] = 46158, + [SMALL_STATE(1536)] = 46185, + [SMALL_STATE(1537)] = 46212, + [SMALL_STATE(1538)] = 46239, + [SMALL_STATE(1539)] = 46266, + [SMALL_STATE(1540)] = 46293, + [SMALL_STATE(1541)] = 46314, + [SMALL_STATE(1542)] = 46341, + [SMALL_STATE(1543)] = 46366, + [SMALL_STATE(1544)] = 46391, + [SMALL_STATE(1545)] = 46418, + [SMALL_STATE(1546)] = 46445, + [SMALL_STATE(1547)] = 46472, + [SMALL_STATE(1548)] = 46499, + [SMALL_STATE(1549)] = 46526, + [SMALL_STATE(1550)] = 46553, + [SMALL_STATE(1551)] = 46580, + [SMALL_STATE(1552)] = 46607, + [SMALL_STATE(1553)] = 46634, + [SMALL_STATE(1554)] = 46661, + [SMALL_STATE(1555)] = 46688, + [SMALL_STATE(1556)] = 46715, + [SMALL_STATE(1557)] = 46742, + [SMALL_STATE(1558)] = 46767, + [SMALL_STATE(1559)] = 46792, + [SMALL_STATE(1560)] = 46815, + [SMALL_STATE(1561)] = 46842, + [SMALL_STATE(1562)] = 46869, + [SMALL_STATE(1563)] = 46896, + [SMALL_STATE(1564)] = 46923, + [SMALL_STATE(1565)] = 46950, + [SMALL_STATE(1566)] = 46977, + [SMALL_STATE(1567)] = 47004, + [SMALL_STATE(1568)] = 47031, + [SMALL_STATE(1569)] = 47058, + [SMALL_STATE(1570)] = 47079, + [SMALL_STATE(1571)] = 47104, + [SMALL_STATE(1572)] = 47131, + [SMALL_STATE(1573)] = 47158, + [SMALL_STATE(1574)] = 47185, + [SMALL_STATE(1575)] = 47212, + [SMALL_STATE(1576)] = 47239, + [SMALL_STATE(1577)] = 47266, + [SMALL_STATE(1578)] = 47287, + [SMALL_STATE(1579)] = 47314, + [SMALL_STATE(1580)] = 47341, + [SMALL_STATE(1581)] = 47366, + [SMALL_STATE(1582)] = 47393, + [SMALL_STATE(1583)] = 47418, + [SMALL_STATE(1584)] = 47445, + [SMALL_STATE(1585)] = 47470, + [SMALL_STATE(1586)] = 47497, + [SMALL_STATE(1587)] = 47524, + [SMALL_STATE(1588)] = 47551, + [SMALL_STATE(1589)] = 47578, + [SMALL_STATE(1590)] = 47605, + [SMALL_STATE(1591)] = 47632, + [SMALL_STATE(1592)] = 47659, + [SMALL_STATE(1593)] = 47686, + [SMALL_STATE(1594)] = 47713, + [SMALL_STATE(1595)] = 47740, + [SMALL_STATE(1596)] = 47767, + [SMALL_STATE(1597)] = 47794, + [SMALL_STATE(1598)] = 47821, + [SMALL_STATE(1599)] = 47848, + [SMALL_STATE(1600)] = 47875, + [SMALL_STATE(1601)] = 47902, + [SMALL_STATE(1602)] = 47929, + [SMALL_STATE(1603)] = 47956, + [SMALL_STATE(1604)] = 47983, + [SMALL_STATE(1605)] = 48004, + [SMALL_STATE(1606)] = 48031, + [SMALL_STATE(1607)] = 48052, + [SMALL_STATE(1608)] = 48073, + [SMALL_STATE(1609)] = 48098, + [SMALL_STATE(1610)] = 48119, + [SMALL_STATE(1611)] = 48144, + [SMALL_STATE(1612)] = 48167, + [SMALL_STATE(1613)] = 48188, + [SMALL_STATE(1614)] = 48213, + [SMALL_STATE(1615)] = 48240, + [SMALL_STATE(1616)] = 48267, + [SMALL_STATE(1617)] = 48292, + [SMALL_STATE(1618)] = 48312, + [SMALL_STATE(1619)] = 48332, + [SMALL_STATE(1620)] = 48356, + [SMALL_STATE(1621)] = 48376, + [SMALL_STATE(1622)] = 48396, + [SMALL_STATE(1623)] = 48420, + [SMALL_STATE(1624)] = 48444, + [SMALL_STATE(1625)] = 48468, + [SMALL_STATE(1626)] = 48490, + [SMALL_STATE(1627)] = 48510, + [SMALL_STATE(1628)] = 48530, + [SMALL_STATE(1629)] = 48554, + [SMALL_STATE(1630)] = 48578, + [SMALL_STATE(1631)] = 48602, + [SMALL_STATE(1632)] = 48622, + [SMALL_STATE(1633)] = 48646, + [SMALL_STATE(1634)] = 48670, + [SMALL_STATE(1635)] = 48690, + [SMALL_STATE(1636)] = 48714, + [SMALL_STATE(1637)] = 48734, + [SMALL_STATE(1638)] = 48758, + [SMALL_STATE(1639)] = 48782, + [SMALL_STATE(1640)] = 48806, + [SMALL_STATE(1641)] = 48830, + [SMALL_STATE(1642)] = 48852, + [SMALL_STATE(1643)] = 48876, + [SMALL_STATE(1644)] = 48900, + [SMALL_STATE(1645)] = 48922, + [SMALL_STATE(1646)] = 48946, + [SMALL_STATE(1647)] = 48968, + [SMALL_STATE(1648)] = 48992, + [SMALL_STATE(1649)] = 49016, + [SMALL_STATE(1650)] = 49040, + [SMALL_STATE(1651)] = 49064, + [SMALL_STATE(1652)] = 49084, + [SMALL_STATE(1653)] = 49108, + [SMALL_STATE(1654)] = 49128, + [SMALL_STATE(1655)] = 49148, + [SMALL_STATE(1656)] = 49172, + [SMALL_STATE(1657)] = 49194, + [SMALL_STATE(1658)] = 49216, + [SMALL_STATE(1659)] = 49236, + [SMALL_STATE(1660)] = 49260, + [SMALL_STATE(1661)] = 49284, + [SMALL_STATE(1662)] = 49304, + [SMALL_STATE(1663)] = 49328, + [SMALL_STATE(1664)] = 49352, + [SMALL_STATE(1665)] = 49376, + [SMALL_STATE(1666)] = 49400, + [SMALL_STATE(1667)] = 49424, + [SMALL_STATE(1668)] = 49448, + [SMALL_STATE(1669)] = 49470, + [SMALL_STATE(1670)] = 49492, + [SMALL_STATE(1671)] = 49514, + [SMALL_STATE(1672)] = 49536, + [SMALL_STATE(1673)] = 49558, + [SMALL_STATE(1674)] = 49580, + [SMALL_STATE(1675)] = 49602, + [SMALL_STATE(1676)] = 49626, + [SMALL_STATE(1677)] = 49650, + [SMALL_STATE(1678)] = 49674, + [SMALL_STATE(1679)] = 49698, + [SMALL_STATE(1680)] = 49722, + [SMALL_STATE(1681)] = 49744, + [SMALL_STATE(1682)] = 49768, + [SMALL_STATE(1683)] = 49790, + [SMALL_STATE(1684)] = 49814, + [SMALL_STATE(1685)] = 49838, + [SMALL_STATE(1686)] = 49862, + [SMALL_STATE(1687)] = 49882, + [SMALL_STATE(1688)] = 49906, + [SMALL_STATE(1689)] = 49930, + [SMALL_STATE(1690)] = 49952, + [SMALL_STATE(1691)] = 49976, + [SMALL_STATE(1692)] = 50000, + [SMALL_STATE(1693)] = 50024, + [SMALL_STATE(1694)] = 50048, + [SMALL_STATE(1695)] = 50072, + [SMALL_STATE(1696)] = 50096, + [SMALL_STATE(1697)] = 50120, + [SMALL_STATE(1698)] = 50140, + [SMALL_STATE(1699)] = 50164, + [SMALL_STATE(1700)] = 50188, + [SMALL_STATE(1701)] = 50210, + [SMALL_STATE(1702)] = 50234, + [SMALL_STATE(1703)] = 50258, + [SMALL_STATE(1704)] = 50282, + [SMALL_STATE(1705)] = 50304, + [SMALL_STATE(1706)] = 50328, + [SMALL_STATE(1707)] = 50352, + [SMALL_STATE(1708)] = 50376, + [SMALL_STATE(1709)] = 50400, + [SMALL_STATE(1710)] = 50422, + [SMALL_STATE(1711)] = 50446, + [SMALL_STATE(1712)] = 50470, + [SMALL_STATE(1713)] = 50494, + [SMALL_STATE(1714)] = 50516, + [SMALL_STATE(1715)] = 50538, + [SMALL_STATE(1716)] = 50560, + [SMALL_STATE(1717)] = 50584, + [SMALL_STATE(1718)] = 50608, + [SMALL_STATE(1719)] = 50632, + [SMALL_STATE(1720)] = 50656, + [SMALL_STATE(1721)] = 50680, + [SMALL_STATE(1722)] = 50704, + [SMALL_STATE(1723)] = 50728, + [SMALL_STATE(1724)] = 50752, + [SMALL_STATE(1725)] = 50772, + [SMALL_STATE(1726)] = 50792, + [SMALL_STATE(1727)] = 50816, + [SMALL_STATE(1728)] = 50836, + [SMALL_STATE(1729)] = 50856, + [SMALL_STATE(1730)] = 50878, + [SMALL_STATE(1731)] = 50902, + [SMALL_STATE(1732)] = 50926, + [SMALL_STATE(1733)] = 50946, + [SMALL_STATE(1734)] = 50970, + [SMALL_STATE(1735)] = 50994, + [SMALL_STATE(1736)] = 51014, + [SMALL_STATE(1737)] = 51038, + [SMALL_STATE(1738)] = 51062, + [SMALL_STATE(1739)] = 51086, + [SMALL_STATE(1740)] = 51106, + [SMALL_STATE(1741)] = 51130, + [SMALL_STATE(1742)] = 51151, + [SMALL_STATE(1743)] = 51172, + [SMALL_STATE(1744)] = 51193, + [SMALL_STATE(1745)] = 51214, + [SMALL_STATE(1746)] = 51233, + [SMALL_STATE(1747)] = 51254, + [SMALL_STATE(1748)] = 51275, + [SMALL_STATE(1749)] = 51296, + [SMALL_STATE(1750)] = 51317, + [SMALL_STATE(1751)] = 51336, + [SMALL_STATE(1752)] = 51357, + [SMALL_STATE(1753)] = 51376, + [SMALL_STATE(1754)] = 51397, + [SMALL_STATE(1755)] = 51418, + [SMALL_STATE(1756)] = 51437, + [SMALL_STATE(1757)] = 51458, + [SMALL_STATE(1758)] = 51479, + [SMALL_STATE(1759)] = 51500, + [SMALL_STATE(1760)] = 51519, + [SMALL_STATE(1761)] = 51540, + [SMALL_STATE(1762)] = 51559, + [SMALL_STATE(1763)] = 51578, + [SMALL_STATE(1764)] = 51599, + [SMALL_STATE(1765)] = 51618, + [SMALL_STATE(1766)] = 51639, + [SMALL_STATE(1767)] = 51660, + [SMALL_STATE(1768)] = 51679, + [SMALL_STATE(1769)] = 51700, + [SMALL_STATE(1770)] = 51719, + [SMALL_STATE(1771)] = 51740, + [SMALL_STATE(1772)] = 51761, + [SMALL_STATE(1773)] = 51782, + [SMALL_STATE(1774)] = 51803, + [SMALL_STATE(1775)] = 51824, + [SMALL_STATE(1776)] = 51845, + [SMALL_STATE(1777)] = 51866, + [SMALL_STATE(1778)] = 51885, + [SMALL_STATE(1779)] = 51906, + [SMALL_STATE(1780)] = 51927, + [SMALL_STATE(1781)] = 51948, + [SMALL_STATE(1782)] = 51969, + [SMALL_STATE(1783)] = 51990, + [SMALL_STATE(1784)] = 52011, + [SMALL_STATE(1785)] = 52032, + [SMALL_STATE(1786)] = 52053, + [SMALL_STATE(1787)] = 52074, + [SMALL_STATE(1788)] = 52095, + [SMALL_STATE(1789)] = 52116, + [SMALL_STATE(1790)] = 52135, + [SMALL_STATE(1791)] = 52154, + [SMALL_STATE(1792)] = 52175, + [SMALL_STATE(1793)] = 52194, + [SMALL_STATE(1794)] = 52213, + [SMALL_STATE(1795)] = 52232, + [SMALL_STATE(1796)] = 52253, + [SMALL_STATE(1797)] = 52272, + [SMALL_STATE(1798)] = 52293, + [SMALL_STATE(1799)] = 52312, + [SMALL_STATE(1800)] = 52333, + [SMALL_STATE(1801)] = 52354, + [SMALL_STATE(1802)] = 52375, + [SMALL_STATE(1803)] = 52394, + [SMALL_STATE(1804)] = 52415, + [SMALL_STATE(1805)] = 52436, + [SMALL_STATE(1806)] = 52457, + [SMALL_STATE(1807)] = 52476, + [SMALL_STATE(1808)] = 52497, + [SMALL_STATE(1809)] = 52518, + [SMALL_STATE(1810)] = 52537, + [SMALL_STATE(1811)] = 52558, + [SMALL_STATE(1812)] = 52577, + [SMALL_STATE(1813)] = 52598, + [SMALL_STATE(1814)] = 52619, + [SMALL_STATE(1815)] = 52640, + [SMALL_STATE(1816)] = 52661, + [SMALL_STATE(1817)] = 52682, + [SMALL_STATE(1818)] = 52703, + [SMALL_STATE(1819)] = 52722, + [SMALL_STATE(1820)] = 52743, + [SMALL_STATE(1821)] = 52764, + [SMALL_STATE(1822)] = 52785, + [SMALL_STATE(1823)] = 52806, + [SMALL_STATE(1824)] = 52827, + [SMALL_STATE(1825)] = 52848, + [SMALL_STATE(1826)] = 52869, + [SMALL_STATE(1827)] = 52890, + [SMALL_STATE(1828)] = 52909, + [SMALL_STATE(1829)] = 52930, + [SMALL_STATE(1830)] = 52951, + [SMALL_STATE(1831)] = 52972, + [SMALL_STATE(1832)] = 52993, + [SMALL_STATE(1833)] = 53012, + [SMALL_STATE(1834)] = 53033, + [SMALL_STATE(1835)] = 53054, + [SMALL_STATE(1836)] = 53075, + [SMALL_STATE(1837)] = 53096, + [SMALL_STATE(1838)] = 53117, + [SMALL_STATE(1839)] = 53138, + [SMALL_STATE(1840)] = 53159, + [SMALL_STATE(1841)] = 53180, + [SMALL_STATE(1842)] = 53201, + [SMALL_STATE(1843)] = 53222, + [SMALL_STATE(1844)] = 53243, + [SMALL_STATE(1845)] = 53264, + [SMALL_STATE(1846)] = 53285, + [SMALL_STATE(1847)] = 53306, + [SMALL_STATE(1848)] = 53327, + [SMALL_STATE(1849)] = 53348, + [SMALL_STATE(1850)] = 53367, + [SMALL_STATE(1851)] = 53388, + [SMALL_STATE(1852)] = 53407, + [SMALL_STATE(1853)] = 53428, + [SMALL_STATE(1854)] = 53449, + [SMALL_STATE(1855)] = 53470, + [SMALL_STATE(1856)] = 53489, + [SMALL_STATE(1857)] = 53510, + [SMALL_STATE(1858)] = 53531, + [SMALL_STATE(1859)] = 53552, + [SMALL_STATE(1860)] = 53573, + [SMALL_STATE(1861)] = 53594, + [SMALL_STATE(1862)] = 53615, + [SMALL_STATE(1863)] = 53636, + [SMALL_STATE(1864)] = 53657, + [SMALL_STATE(1865)] = 53678, + [SMALL_STATE(1866)] = 53699, + [SMALL_STATE(1867)] = 53718, + [SMALL_STATE(1868)] = 53737, + [SMALL_STATE(1869)] = 53756, + [SMALL_STATE(1870)] = 53775, + [SMALL_STATE(1871)] = 53796, + [SMALL_STATE(1872)] = 53817, + [SMALL_STATE(1873)] = 53838, + [SMALL_STATE(1874)] = 53859, + [SMALL_STATE(1875)] = 53880, + [SMALL_STATE(1876)] = 53901, + [SMALL_STATE(1877)] = 53922, + [SMALL_STATE(1878)] = 53943, + [SMALL_STATE(1879)] = 53964, + [SMALL_STATE(1880)] = 53983, + [SMALL_STATE(1881)] = 54004, + [SMALL_STATE(1882)] = 54025, + [SMALL_STATE(1883)] = 54046, + [SMALL_STATE(1884)] = 54067, + [SMALL_STATE(1885)] = 54088, + [SMALL_STATE(1886)] = 54109, + [SMALL_STATE(1887)] = 54130, + [SMALL_STATE(1888)] = 54149, + [SMALL_STATE(1889)] = 54170, + [SMALL_STATE(1890)] = 54189, + [SMALL_STATE(1891)] = 54208, + [SMALL_STATE(1892)] = 54227, + [SMALL_STATE(1893)] = 54248, + [SMALL_STATE(1894)] = 54267, + [SMALL_STATE(1895)] = 54288, + [SMALL_STATE(1896)] = 54309, + [SMALL_STATE(1897)] = 54330, + [SMALL_STATE(1898)] = 54351, + [SMALL_STATE(1899)] = 54372, + [SMALL_STATE(1900)] = 54393, + [SMALL_STATE(1901)] = 54414, + [SMALL_STATE(1902)] = 54435, + [SMALL_STATE(1903)] = 54456, + [SMALL_STATE(1904)] = 54477, + [SMALL_STATE(1905)] = 54496, + [SMALL_STATE(1906)] = 54517, + [SMALL_STATE(1907)] = 54538, + [SMALL_STATE(1908)] = 54557, + [SMALL_STATE(1909)] = 54578, + [SMALL_STATE(1910)] = 54597, + [SMALL_STATE(1911)] = 54618, + [SMALL_STATE(1912)] = 54639, + [SMALL_STATE(1913)] = 54660, + [SMALL_STATE(1914)] = 54679, + [SMALL_STATE(1915)] = 54698, + [SMALL_STATE(1916)] = 54719, + [SMALL_STATE(1917)] = 54740, + [SMALL_STATE(1918)] = 54761, + [SMALL_STATE(1919)] = 54782, + [SMALL_STATE(1920)] = 54803, + [SMALL_STATE(1921)] = 54824, + [SMALL_STATE(1922)] = 54845, + [SMALL_STATE(1923)] = 54866, + [SMALL_STATE(1924)] = 54887, + [SMALL_STATE(1925)] = 54908, + [SMALL_STATE(1926)] = 54929, + [SMALL_STATE(1927)] = 54950, + [SMALL_STATE(1928)] = 54971, + [SMALL_STATE(1929)] = 54992, + [SMALL_STATE(1930)] = 55013, + [SMALL_STATE(1931)] = 55034, + [SMALL_STATE(1932)] = 55053, + [SMALL_STATE(1933)] = 55074, + [SMALL_STATE(1934)] = 55093, + [SMALL_STATE(1935)] = 55114, + [SMALL_STATE(1936)] = 55132, + [SMALL_STATE(1937)] = 55150, + [SMALL_STATE(1938)] = 55168, + [SMALL_STATE(1939)] = 55186, + [SMALL_STATE(1940)] = 55204, + [SMALL_STATE(1941)] = 55222, + [SMALL_STATE(1942)] = 55240, + [SMALL_STATE(1943)] = 55258, + [SMALL_STATE(1944)] = 55276, + [SMALL_STATE(1945)] = 55294, + [SMALL_STATE(1946)] = 55312, + [SMALL_STATE(1947)] = 55330, + [SMALL_STATE(1948)] = 55348, + [SMALL_STATE(1949)] = 55366, + [SMALL_STATE(1950)] = 55384, + [SMALL_STATE(1951)] = 55402, + [SMALL_STATE(1952)] = 55420, + [SMALL_STATE(1953)] = 55438, + [SMALL_STATE(1954)] = 55456, + [SMALL_STATE(1955)] = 55474, + [SMALL_STATE(1956)] = 55492, + [SMALL_STATE(1957)] = 55510, + [SMALL_STATE(1958)] = 55528, + [SMALL_STATE(1959)] = 55546, + [SMALL_STATE(1960)] = 55564, + [SMALL_STATE(1961)] = 55582, + [SMALL_STATE(1962)] = 55600, + [SMALL_STATE(1963)] = 55618, + [SMALL_STATE(1964)] = 55636, + [SMALL_STATE(1965)] = 55654, + [SMALL_STATE(1966)] = 55672, + [SMALL_STATE(1967)] = 55690, + [SMALL_STATE(1968)] = 55708, + [SMALL_STATE(1969)] = 55726, + [SMALL_STATE(1970)] = 55744, + [SMALL_STATE(1971)] = 55762, + [SMALL_STATE(1972)] = 55780, + [SMALL_STATE(1973)] = 55798, + [SMALL_STATE(1974)] = 55816, + [SMALL_STATE(1975)] = 55834, + [SMALL_STATE(1976)] = 55852, + [SMALL_STATE(1977)] = 55870, + [SMALL_STATE(1978)] = 55888, + [SMALL_STATE(1979)] = 55906, + [SMALL_STATE(1980)] = 55924, + [SMALL_STATE(1981)] = 55942, + [SMALL_STATE(1982)] = 55960, + [SMALL_STATE(1983)] = 55978, + [SMALL_STATE(1984)] = 55996, + [SMALL_STATE(1985)] = 56014, + [SMALL_STATE(1986)] = 56032, + [SMALL_STATE(1987)] = 56050, + [SMALL_STATE(1988)] = 56068, + [SMALL_STATE(1989)] = 56086, + [SMALL_STATE(1990)] = 56104, + [SMALL_STATE(1991)] = 56122, + [SMALL_STATE(1992)] = 56140, + [SMALL_STATE(1993)] = 56158, + [SMALL_STATE(1994)] = 56176, + [SMALL_STATE(1995)] = 56194, + [SMALL_STATE(1996)] = 56212, + [SMALL_STATE(1997)] = 56230, + [SMALL_STATE(1998)] = 56248, + [SMALL_STATE(1999)] = 56266, + [SMALL_STATE(2000)] = 56284, + [SMALL_STATE(2001)] = 56302, + [SMALL_STATE(2002)] = 56320, + [SMALL_STATE(2003)] = 56338, + [SMALL_STATE(2004)] = 56356, + [SMALL_STATE(2005)] = 56374, + [SMALL_STATE(2006)] = 56392, + [SMALL_STATE(2007)] = 56410, + [SMALL_STATE(2008)] = 56428, + [SMALL_STATE(2009)] = 56446, + [SMALL_STATE(2010)] = 56464, + [SMALL_STATE(2011)] = 56482, + [SMALL_STATE(2012)] = 56500, + [SMALL_STATE(2013)] = 56518, + [SMALL_STATE(2014)] = 56536, + [SMALL_STATE(2015)] = 56554, + [SMALL_STATE(2016)] = 56572, + [SMALL_STATE(2017)] = 56590, + [SMALL_STATE(2018)] = 56608, + [SMALL_STATE(2019)] = 56626, + [SMALL_STATE(2020)] = 56644, + [SMALL_STATE(2021)] = 56662, + [SMALL_STATE(2022)] = 56680, + [SMALL_STATE(2023)] = 56698, + [SMALL_STATE(2024)] = 56716, + [SMALL_STATE(2025)] = 56734, + [SMALL_STATE(2026)] = 56752, + [SMALL_STATE(2027)] = 56770, + [SMALL_STATE(2028)] = 56788, + [SMALL_STATE(2029)] = 56806, + [SMALL_STATE(2030)] = 56824, + [SMALL_STATE(2031)] = 56842, + [SMALL_STATE(2032)] = 56860, + [SMALL_STATE(2033)] = 56878, + [SMALL_STATE(2034)] = 56896, + [SMALL_STATE(2035)] = 56914, + [SMALL_STATE(2036)] = 56932, + [SMALL_STATE(2037)] = 56950, + [SMALL_STATE(2038)] = 56968, + [SMALL_STATE(2039)] = 56986, + [SMALL_STATE(2040)] = 57004, + [SMALL_STATE(2041)] = 57022, + [SMALL_STATE(2042)] = 57040, + [SMALL_STATE(2043)] = 57058, + [SMALL_STATE(2044)] = 57076, + [SMALL_STATE(2045)] = 57094, + [SMALL_STATE(2046)] = 57112, + [SMALL_STATE(2047)] = 57130, + [SMALL_STATE(2048)] = 57148, + [SMALL_STATE(2049)] = 57166, + [SMALL_STATE(2050)] = 57184, + [SMALL_STATE(2051)] = 57202, + [SMALL_STATE(2052)] = 57220, + [SMALL_STATE(2053)] = 57238, + [SMALL_STATE(2054)] = 57256, + [SMALL_STATE(2055)] = 57274, + [SMALL_STATE(2056)] = 57292, + [SMALL_STATE(2057)] = 57310, + [SMALL_STATE(2058)] = 57328, + [SMALL_STATE(2059)] = 57346, + [SMALL_STATE(2060)] = 57364, + [SMALL_STATE(2061)] = 57382, + [SMALL_STATE(2062)] = 57400, + [SMALL_STATE(2063)] = 57418, + [SMALL_STATE(2064)] = 57436, + [SMALL_STATE(2065)] = 57454, + [SMALL_STATE(2066)] = 57472, + [SMALL_STATE(2067)] = 57490, + [SMALL_STATE(2068)] = 57508, + [SMALL_STATE(2069)] = 57526, + [SMALL_STATE(2070)] = 57544, + [SMALL_STATE(2071)] = 57562, + [SMALL_STATE(2072)] = 57580, + [SMALL_STATE(2073)] = 57598, + [SMALL_STATE(2074)] = 57616, + [SMALL_STATE(2075)] = 57634, + [SMALL_STATE(2076)] = 57652, + [SMALL_STATE(2077)] = 57670, + [SMALL_STATE(2078)] = 57688, + [SMALL_STATE(2079)] = 57706, + [SMALL_STATE(2080)] = 57724, + [SMALL_STATE(2081)] = 57742, + [SMALL_STATE(2082)] = 57760, + [SMALL_STATE(2083)] = 57778, + [SMALL_STATE(2084)] = 57796, + [SMALL_STATE(2085)] = 57814, + [SMALL_STATE(2086)] = 57832, + [SMALL_STATE(2087)] = 57850, + [SMALL_STATE(2088)] = 57868, + [SMALL_STATE(2089)] = 57886, + [SMALL_STATE(2090)] = 57904, + [SMALL_STATE(2091)] = 57922, + [SMALL_STATE(2092)] = 57940, + [SMALL_STATE(2093)] = 57958, + [SMALL_STATE(2094)] = 57976, + [SMALL_STATE(2095)] = 57994, + [SMALL_STATE(2096)] = 58012, + [SMALL_STATE(2097)] = 58030, + [SMALL_STATE(2098)] = 58048, + [SMALL_STATE(2099)] = 58066, + [SMALL_STATE(2100)] = 58084, + [SMALL_STATE(2101)] = 58102, + [SMALL_STATE(2102)] = 58120, + [SMALL_STATE(2103)] = 58138, + [SMALL_STATE(2104)] = 58156, + [SMALL_STATE(2105)] = 58174, + [SMALL_STATE(2106)] = 58192, + [SMALL_STATE(2107)] = 58210, + [SMALL_STATE(2108)] = 58228, + [SMALL_STATE(2109)] = 58246, + [SMALL_STATE(2110)] = 58264, + [SMALL_STATE(2111)] = 58282, + [SMALL_STATE(2112)] = 58300, + [SMALL_STATE(2113)] = 58318, + [SMALL_STATE(2114)] = 58336, + [SMALL_STATE(2115)] = 58354, + [SMALL_STATE(2116)] = 58372, + [SMALL_STATE(2117)] = 58390, + [SMALL_STATE(2118)] = 58408, + [SMALL_STATE(2119)] = 58426, + [SMALL_STATE(2120)] = 58444, + [SMALL_STATE(2121)] = 58462, + [SMALL_STATE(2122)] = 58480, + [SMALL_STATE(2123)] = 58498, + [SMALL_STATE(2124)] = 58516, + [SMALL_STATE(2125)] = 58534, + [SMALL_STATE(2126)] = 58552, + [SMALL_STATE(2127)] = 58570, + [SMALL_STATE(2128)] = 58588, + [SMALL_STATE(2129)] = 58606, + [SMALL_STATE(2130)] = 58624, + [SMALL_STATE(2131)] = 58642, + [SMALL_STATE(2132)] = 58660, + [SMALL_STATE(2133)] = 58678, + [SMALL_STATE(2134)] = 58696, + [SMALL_STATE(2135)] = 58714, + [SMALL_STATE(2136)] = 58732, + [SMALL_STATE(2137)] = 58750, + [SMALL_STATE(2138)] = 58768, + [SMALL_STATE(2139)] = 58786, + [SMALL_STATE(2140)] = 58804, + [SMALL_STATE(2141)] = 58822, + [SMALL_STATE(2142)] = 58840, + [SMALL_STATE(2143)] = 58858, + [SMALL_STATE(2144)] = 58876, + [SMALL_STATE(2145)] = 58894, + [SMALL_STATE(2146)] = 58912, + [SMALL_STATE(2147)] = 58930, + [SMALL_STATE(2148)] = 58948, + [SMALL_STATE(2149)] = 58966, + [SMALL_STATE(2150)] = 58984, + [SMALL_STATE(2151)] = 59002, + [SMALL_STATE(2152)] = 59020, + [SMALL_STATE(2153)] = 59038, + [SMALL_STATE(2154)] = 59056, + [SMALL_STATE(2155)] = 59074, + [SMALL_STATE(2156)] = 59092, + [SMALL_STATE(2157)] = 59110, + [SMALL_STATE(2158)] = 59128, + [SMALL_STATE(2159)] = 59146, + [SMALL_STATE(2160)] = 59164, + [SMALL_STATE(2161)] = 59182, + [SMALL_STATE(2162)] = 59200, + [SMALL_STATE(2163)] = 59218, + [SMALL_STATE(2164)] = 59236, + [SMALL_STATE(2165)] = 59254, + [SMALL_STATE(2166)] = 59272, + [SMALL_STATE(2167)] = 59290, + [SMALL_STATE(2168)] = 59308, + [SMALL_STATE(2169)] = 59326, + [SMALL_STATE(2170)] = 59344, + [SMALL_STATE(2171)] = 59362, + [SMALL_STATE(2172)] = 59380, + [SMALL_STATE(2173)] = 59398, + [SMALL_STATE(2174)] = 59416, + [SMALL_STATE(2175)] = 59434, + [SMALL_STATE(2176)] = 59452, + [SMALL_STATE(2177)] = 59470, + [SMALL_STATE(2178)] = 59488, + [SMALL_STATE(2179)] = 59506, + [SMALL_STATE(2180)] = 59524, + [SMALL_STATE(2181)] = 59542, + [SMALL_STATE(2182)] = 59560, + [SMALL_STATE(2183)] = 59578, + [SMALL_STATE(2184)] = 59596, + [SMALL_STATE(2185)] = 59614, + [SMALL_STATE(2186)] = 59632, + [SMALL_STATE(2187)] = 59650, + [SMALL_STATE(2188)] = 59668, + [SMALL_STATE(2189)] = 59686, + [SMALL_STATE(2190)] = 59704, + [SMALL_STATE(2191)] = 59722, + [SMALL_STATE(2192)] = 59740, + [SMALL_STATE(2193)] = 59758, + [SMALL_STATE(2194)] = 59776, + [SMALL_STATE(2195)] = 59794, + [SMALL_STATE(2196)] = 59812, + [SMALL_STATE(2197)] = 59830, + [SMALL_STATE(2198)] = 59848, + [SMALL_STATE(2199)] = 59866, + [SMALL_STATE(2200)] = 59884, + [SMALL_STATE(2201)] = 59902, + [SMALL_STATE(2202)] = 59920, + [SMALL_STATE(2203)] = 59938, + [SMALL_STATE(2204)] = 59956, + [SMALL_STATE(2205)] = 59974, + [SMALL_STATE(2206)] = 59992, + [SMALL_STATE(2207)] = 60010, + [SMALL_STATE(2208)] = 60028, + [SMALL_STATE(2209)] = 60046, + [SMALL_STATE(2210)] = 60064, + [SMALL_STATE(2211)] = 60082, + [SMALL_STATE(2212)] = 60100, + [SMALL_STATE(2213)] = 60118, + [SMALL_STATE(2214)] = 60136, + [SMALL_STATE(2215)] = 60154, + [SMALL_STATE(2216)] = 60172, + [SMALL_STATE(2217)] = 60190, + [SMALL_STATE(2218)] = 60208, + [SMALL_STATE(2219)] = 60226, + [SMALL_STATE(2220)] = 60244, + [SMALL_STATE(2221)] = 60262, + [SMALL_STATE(2222)] = 60280, + [SMALL_STATE(2223)] = 60298, + [SMALL_STATE(2224)] = 60316, + [SMALL_STATE(2225)] = 60334, + [SMALL_STATE(2226)] = 60352, + [SMALL_STATE(2227)] = 60370, + [SMALL_STATE(2228)] = 60388, + [SMALL_STATE(2229)] = 60406, + [SMALL_STATE(2230)] = 60424, + [SMALL_STATE(2231)] = 60442, + [SMALL_STATE(2232)] = 60460, + [SMALL_STATE(2233)] = 60478, + [SMALL_STATE(2234)] = 60496, + [SMALL_STATE(2235)] = 60514, + [SMALL_STATE(2236)] = 60532, + [SMALL_STATE(2237)] = 60550, + [SMALL_STATE(2238)] = 60568, + [SMALL_STATE(2239)] = 60586, + [SMALL_STATE(2240)] = 60604, + [SMALL_STATE(2241)] = 60622, + [SMALL_STATE(2242)] = 60640, + [SMALL_STATE(2243)] = 60658, + [SMALL_STATE(2244)] = 60676, + [SMALL_STATE(2245)] = 60694, + [SMALL_STATE(2246)] = 60712, + [SMALL_STATE(2247)] = 60730, + [SMALL_STATE(2248)] = 60748, + [SMALL_STATE(2249)] = 60766, + [SMALL_STATE(2250)] = 60784, + [SMALL_STATE(2251)] = 60802, + [SMALL_STATE(2252)] = 60820, + [SMALL_STATE(2253)] = 60838, + [SMALL_STATE(2254)] = 60856, + [SMALL_STATE(2255)] = 60874, + [SMALL_STATE(2256)] = 60892, + [SMALL_STATE(2257)] = 60910, + [SMALL_STATE(2258)] = 60928, + [SMALL_STATE(2259)] = 60946, + [SMALL_STATE(2260)] = 60964, + [SMALL_STATE(2261)] = 60982, + [SMALL_STATE(2262)] = 61000, + [SMALL_STATE(2263)] = 61018, + [SMALL_STATE(2264)] = 61036, + [SMALL_STATE(2265)] = 61054, + [SMALL_STATE(2266)] = 61072, + [SMALL_STATE(2267)] = 61090, + [SMALL_STATE(2268)] = 61108, + [SMALL_STATE(2269)] = 61126, + [SMALL_STATE(2270)] = 61144, + [SMALL_STATE(2271)] = 61162, + [SMALL_STATE(2272)] = 61180, + [SMALL_STATE(2273)] = 61198, + [SMALL_STATE(2274)] = 61216, + [SMALL_STATE(2275)] = 61234, + [SMALL_STATE(2276)] = 61252, + [SMALL_STATE(2277)] = 61256, + [SMALL_STATE(2278)] = 61260, + [SMALL_STATE(2279)] = 61264, + [SMALL_STATE(2280)] = 61268, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 2, 0, 0), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(891), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1803), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1619), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(974), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(974), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(305), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1224), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1260), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(8), [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(211), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2227), [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1234), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1607), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1929), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1863), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2154), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2100), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2121), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2159), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2190), [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 14), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2244), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1925), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 2, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 14), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_stmt, 2, 0, 0), [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_stmt, 2, 0, 0), [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 3, 0, 81), @@ -170173,2170 +169613,2162 @@ static const TSParseActionEntry ts_parse_actions[] = { [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 4, 0, 82), [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 4, 0, 82), [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_stmt_body, 1, 0, 0), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(427), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(13), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2282), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1612), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1637), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1563), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1566), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(244), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1549), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(651), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(228), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1260), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1588), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1726), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1173), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(591), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2279), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1577), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(719), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1173), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2273), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1588), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1894), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2271), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1563), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_expr, 2, 0, 12), [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_expr, 2, 0, 12), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 2, 0, 0), [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 2, 0, 0), [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 2, 0, 0), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 3, 0, 0), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_op, 1, 0, 0), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_op, 1, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_expr, 3, 0, 35), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_expr, 3, 0, 35), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 60), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 1, 0, 0), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 1, 0, 56), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 1, 0, 56), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 3, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 3, 0, 0), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 3), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 3), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 79), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 79), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 3, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 3, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 53), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 53), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 5, 0, 83), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 5, 0, 83), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 31), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 31), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 2, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 5, 0, 84), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 5, 0, 84), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 2, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 2, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 3, 0, 14), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 3, 0, 14), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_echo_stmt, 3, 0, 14), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_echo_stmt, 3, 0, 14), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 70), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 70), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_stmt, 2, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_stmt, 2, 0, 0), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 71), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 71), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 72), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 72), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 2, 0, 0), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 2, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 24), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 24), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 6, 0, 69), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 6, 0, 69), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_stmt, 2, 0, 2), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_stmt, 2, 0, 2), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 2, 0, 56), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 2, 0, 56), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 1, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 1, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 4, 0, 73), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 4, 0, 73), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, 0, 66), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, 0, 66), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 3, 0, 22), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 3, 0, 22), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 4, 0, 23), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 4, 0, 23), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 54), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 54), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 25), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 25), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 4, 0, 23), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 4, 0, 23), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 3), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 3), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 4, 0, 74), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 4, 0, 74), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 4, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 4, 0, 0), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 25), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 25), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 2, 0, 31), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 2, 0, 31), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 3, 0, 54), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 3, 0, 54), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 5, 0, 62), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 5, 0, 62), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 4, 0, 27), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 4, 0, 27), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 55), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 55), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 3, 0, 14), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 3, 0, 14), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 3, 0, 0), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 3, 0, 0), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 3, 0, 0), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 3, 0, 0), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 3, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 3, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 51), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 51), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 46), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 46), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 6, 0, 92), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 6, 0, 92), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 3, 0, 54), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 3, 0, 54), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 3, 0, 53), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 3, 0, 53), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 5, 0, 39), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 5, 0, 39), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 2, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 3, 0, 0), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_op, 1, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_op, 1, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_expr, 3, 0, 35), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_expr, 3, 0, 35), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 60), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 1, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 1, 0, 56), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 1, 0, 56), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 3, 0, 0), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 3, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 5, 0, 62), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 5, 0, 62), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 53), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 53), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 54), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 54), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 55), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 55), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 3, 0, 57), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 3, 0, 57), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 3, 0, 54), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 3, 0, 54), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 3, 0, 54), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 3, 0, 54), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 3, 0, 53), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 3, 0, 53), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 3, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 3, 0, 0), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 3, 0, 22), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 3, 0, 22), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 2, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 70), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 70), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 71), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 71), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 72), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 72), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 2, 0, 56), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 2, 0, 56), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 4, 0, 73), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 4, 0, 73), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 2, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 2, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 2, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 2, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 4, 0, 23), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 4, 0, 23), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 4, 0, 23), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 4, 0, 23), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 4, 0, 74), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 4, 0, 74), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 4, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 4, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 4, 0, 27), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 4, 0, 27), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 2, 0, 31), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 2, 0, 31), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 5, 0, 39), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 5, 0, 39), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, 0, 66), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, 0, 66), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 79), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 79), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 1, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 1, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 3, 0, 14), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 3, 0, 14), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 3, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 3, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 5, 0, 83), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 5, 0, 83), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 31), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 31), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 0), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 3, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 3, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 5, 0, 84), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 5, 0, 84), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 3, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 3, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 51), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 51), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 6, 0, 69), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 6, 0, 69), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_stmt, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_stmt, 2, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_stmt, 2, 0, 2), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_stmt, 2, 0, 2), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 6, 0, 92), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 6, 0, 92), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 3), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 3), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 3, 0, 14), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 3, 0, 14), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_echo_stmt, 3, 0, 14), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_echo_stmt, 3, 0, 14), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 24), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 24), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 3), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 3), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 25), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 25), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 46), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 46), [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 47), [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 47), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 3, 0, 57), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 3, 0, 57), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 78), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 78), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 2, 0, 0), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 2, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_cond, 2, 0, 2), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_cond, 2, 0, 2), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 5, 0, 91), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 5, 0, 91), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 7, 0, 100), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 7, 0, 100), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 4, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 4, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 88), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 88), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 89), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 89), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 90), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 90), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 94), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 94), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 95), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 95), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 96), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 96), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 7, 0, 99), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 7, 0, 99), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 7, 0, 100), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 7, 0, 100), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_cond, 3, 0, 14), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_cond, 3, 0, 14), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 5, 0, 91), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 5, 0, 91), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 0), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 0), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_op, 1, 0, 0), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_op, 1, 0, 0), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1246), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1225), - [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1140), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1507), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), - [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1378), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2035), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2197), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), - [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expr, 1, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expr, 1, 0, 0), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1619), - [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 2, 0, 0), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 2, 0, 0), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 3, 0, 0), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 3, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expr, 3, 0, 34), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expr, 3, 0, 34), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 36), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 36), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expr, 4, 0, 50), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expr, 4, 0, 50), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implies_body, 2, 0, 32), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 34), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expr, 5, 0, 76), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expr, 5, 0, 76), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expr, 2, 0, 15), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expr, 2, 0, 15), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 2, 0, 13), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 2, 0, 13), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 1, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 1, 0, 0), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytes_expr, 1, 0, 0), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytes_expr, 1, 0, 0), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 1, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 1, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_arguments, 3, 0, 14), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_arguments, 3, 0, 14), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 5, 0, 0), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 5, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type_name, 1, 0, 0), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type_name, 1, 0, 0), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 4, 0, 0), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 4, 0, 0), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 2, 0, 0), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 2, 0, 0), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 2, 0, 0), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 2, 0, 0), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 4, 0, 39), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 4, 0, 39), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ident_expr, 1, 0, 0), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ident_expr, 1, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 14), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 14), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_ident, 2, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_ident, 2, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 1, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 1, 0, 0), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 0), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 4, 0, 0), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 4, 0, 0), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 2, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 2, 0, 0), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 4, 0, 26), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 4, 0, 26), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 26), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 26), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 2), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 2), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 18), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 18), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 1, 0, 0), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 1, 0, 0), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 5), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 5), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 4, 0, 23), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 4, 0, 23), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 24), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 24), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 3), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 3), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 40), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 40), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 25), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 25), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 2, 0, 0), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 1), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 1), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 37), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 37), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 6), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 6), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 3, 0, 0), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 3, 0, 0), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 26), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 26), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 41), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 41), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 16), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 16), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 42), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 42), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5, 0, 7), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 5, 0, 7), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 20), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 20), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 5, 0, 44), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 5, 0, 44), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 2, 0, 0), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 2, 0, 0), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 5, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 5, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 5, 0, 3), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 5, 0, 3), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expr, 3, 0, 29), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 29), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 6), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 6), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 7), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, 0, 7), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 3, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 3, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 5, 0, 48), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 5, 0, 48), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 48), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 48), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3, 0, 0), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3, 0, 0), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 5, 0, 44), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 5, 0, 44), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 3, 0, 9), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 3, 0, 9), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 0), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 0), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 39), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 39), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 9), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 9), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 9), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 9), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_access_expr, 3, 0, 38), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_access_expr, 3, 0, 38), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 2, 0, 1), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 2, 0, 1), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 3, 0, 0), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 3, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 7), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, 0, 7), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 2, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 2, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_ident_expr, 2, 0, 10), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_ident_expr, 2, 0, 10), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 2, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 2, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 11), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 11), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 7), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 7), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 7), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 7), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 3, 0, 0), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 3, 0, 0), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 20), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 20), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 59), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 59), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_ident, 1, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_ident, 1, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 61), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 61), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_ident_expr, 1, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_ident_expr, 1, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 5, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 5, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 46), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 46), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 40), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 40), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 47), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 47), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 25), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 25), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 63), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 63), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 3, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 48), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 48), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 64), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 64), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 42), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 42), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 6, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 6, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 6, 0, 3), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 6, 0, 3), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 2, 0, 0), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 2, 0, 0), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 6, 0, 67), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 6, 0, 67), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 4, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 4, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 67), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 67), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 5, 0, 69), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 5, 0, 69), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rethrow_expr, 2, 0, 12), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rethrow_expr, 2, 0, 12), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expr, 2, 0, 12), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expr, 2, 0, 12), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_eval, 4, 0, 39), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_eval, 4, 0, 39), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 0), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 7, 0, 69), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 7, 0, 69), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expr, 3, 0, 33), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expr, 3, 0, 33), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_generic_expr, 2, 0, 12), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_generic_expr, 2, 0, 12), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 4, 0, 0), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 4, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 0), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 0), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 4, 0, 23), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 4, 0, 23), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 8, 0, 3), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 8, 0, 3), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 6, 0, 39), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 6, 0, 39), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 6, 0, 69), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 6, 0, 69), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 66), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 66), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 63), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 63), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 7, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 7, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 7, 0, 3), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 7, 0, 3), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 3, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 3, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 7, 0, 77), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 7, 0, 77), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 5, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 5, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 6, 0, 39), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 6, 0, 39), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 3), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 3), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 9), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 9), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expr, 3, 0, 14), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expr, 3, 0, 14), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 16), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 16), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 1, 0, 2), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 1, 0, 2), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 2, 0, 14), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 2), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 2), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 2, 0, 14), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 14), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 4, 0, 85), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 3, 0, 75), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 2), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 1, 0, 2), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_right_expr, 2, 0, 4), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 3, 0, 39), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 5, 0, 93), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_unwrap, 5, 0, 93), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 2), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 2, 0, 14), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_unwrap, 2, 0, 14), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 0), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 4, 0, 86), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_unwrap, 4, 0, 86), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 14), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 14), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 14), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), - [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_range, 3, 0, 80), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 1, 0, 2), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 6, 0, 0), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 2, 0, 14), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_path_element, 2, 0, 14), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 4, 0, 0), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), - [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), - [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), - [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), - [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 1, 0, 0), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 4, 0, 0), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_target, 1, 0, 0), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 5, 0, 0), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 1, 0, 0), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1126), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 54), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 54), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 6, 0, 97), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 6, 0, 97), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 101), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 101), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 98), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 98), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_decl_storage, 1, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_storage, 1, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_storage, 1, 0, 0), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_storage, 1, 0, 0), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1240), - [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(316), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 1), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), - [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), - [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(2002), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 1, 0, 1), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 1), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 65), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 3), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 16), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 1), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 30), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 1), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 2, 0, 0), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 1, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_name, 1, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 4, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 4, 0, 0), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 3, 0, 0), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 1), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 1), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 3, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 3, 0, 0), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 22), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_op, 1, 0, 0), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 9, 0, 0), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 3, 0, 0), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 7, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 2, 0, 0), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 25), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 25), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 78), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 78), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_cond, 2, 0, 2), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_cond, 2, 0, 2), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 5, 0, 91), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 5, 0, 91), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 4, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 4, 0, 0), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 88), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 88), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 89), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 89), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 90), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 90), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 94), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 94), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 95), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 95), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 96), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 96), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 7, 0, 99), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 7, 0, 99), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 7, 0, 100), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 7, 0, 100), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_cond, 3, 0, 14), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_cond, 3, 0, 14), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 5, 0, 91), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 5, 0, 91), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 7, 0, 100), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 7, 0, 100), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_op, 1, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_op, 1, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1220), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1486), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2034), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2132), + [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2084), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expr, 1, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expr, 1, 0, 0), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 3, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 3, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 2, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 2, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expr, 3, 0, 34), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expr, 3, 0, 34), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 34), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expr, 4, 0, 50), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expr, 4, 0, 50), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implies_body, 2, 0, 32), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expr, 2, 0, 15), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expr, 2, 0, 15), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expr, 5, 0, 76), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expr, 5, 0, 76), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 36), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 36), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 2, 0, 13), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 2, 0, 13), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 1, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 1, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 1, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 1, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytes_expr, 1, 0, 0), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytes_expr, 1, 0, 0), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 4, 0, 39), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 4, 0, 39), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 0), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 0), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 14), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 14), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 5, 0, 0), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 5, 0, 0), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ident_expr, 1, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ident_expr, 1, 0, 0), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 4, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 4, 0, 0), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 1, 0, 0), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 1, 0, 0), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 4, 0, 0), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 4, 0, 0), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 2, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 2, 0, 0), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 2, 0, 0), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 2, 0, 0), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_ident, 2, 0, 0), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_ident, 2, 0, 0), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type_name, 1, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type_name, 1, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_arguments, 3, 0, 14), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_arguments, 3, 0, 14), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 2, 0, 0), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 2, 0, 0), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 39), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 39), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 37), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 37), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 7), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 7), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 2, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 2, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_ident_expr, 1, 0, 0), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_ident_expr, 1, 0, 0), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_access_expr, 3, 0, 38), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_access_expr, 3, 0, 38), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_ident, 1, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_ident, 1, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_ident_expr, 2, 0, 10), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_ident_expr, 2, 0, 10), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 2, 0, 0), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 2, 0, 0), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 11), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 11), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expr, 3, 0, 33), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expr, 3, 0, 33), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 5), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 5), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rethrow_expr, 2, 0, 12), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rethrow_expr, 2, 0, 12), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expr, 2, 0, 12), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expr, 2, 0, 12), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 5, 0, 3), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 5, 0, 3), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 3, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 3, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 1), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 1), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 6), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 6), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 3, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 3, 0, 0), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 2, 0, 1), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 2, 0, 1), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 59), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 59), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 61), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 61), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 5, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 5, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 46), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 46), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 40), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 40), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 47), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 47), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 3, 0, 9), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 3, 0, 9), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 25), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 25), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 63), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 63), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 3, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 48), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 48), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 64), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 64), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 42), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 42), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 6, 0, 0), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 6, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 6, 0, 3), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 6, 0, 3), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 2, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 2, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 6, 0, 67), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 6, 0, 67), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 4, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 4, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 67), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 67), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 16), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 16), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 5, 0, 69), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 5, 0, 69), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_generic_expr, 2, 0, 12), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_generic_expr, 2, 0, 12), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 9), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 9), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 24), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 24), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 0), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 3), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 3), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 40), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 40), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 3), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 3), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 25), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 25), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 2, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5, 0, 7), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 5, 0, 7), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 16), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 16), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 9), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 9), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 18), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 18), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 6), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 6), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 6, 0, 39), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 6, 0, 39), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 6, 0, 69), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 6, 0, 69), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 66), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 66), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 63), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 63), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 7, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 7, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 7, 0, 3), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 7, 0, 3), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 3, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 3, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 7, 0, 77), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 7, 0, 77), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 5, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 5, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 6, 0, 39), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 6, 0, 39), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 7), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, 0, 7), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 7), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 7), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 20), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 20), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 3, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 3, 0, 0), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 4, 0, 23), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 4, 0, 23), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 1, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 1, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 4, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 4, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 5, 0, 48), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 5, 0, 48), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 2, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 2, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_eval, 4, 0, 39), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_eval, 4, 0, 39), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 4, 0, 26), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 4, 0, 26), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 7, 0, 69), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 7, 0, 69), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 8, 0, 3), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 8, 0, 3), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 26), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 26), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 5, 0, 44), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 5, 0, 44), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 4, 0, 23), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 4, 0, 23), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 48), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 48), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 41), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 41), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expr, 3, 0, 29), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 29), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expr, 3, 0, 14), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expr, 3, 0, 14), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 26), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 26), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 42), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 42), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 20), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 20), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 3, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 3, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 2), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 2), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 5, 0, 44), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 5, 0, 44), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 5, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 5, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 7), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, 0, 7), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 9), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 9), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 1, 0, 2), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 2, 0, 14), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 1, 0, 2), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 2, 0, 14), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 2), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 3, 0, 75), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 14), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 1, 0, 2), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_right_expr, 2, 0, 4), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 2), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 4, 0, 85), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 2), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 2, 0, 14), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 3, 0, 39), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 14), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 2, 0, 14), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_unwrap, 2, 0, 14), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 14), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 14), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 4, 0, 86), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_unwrap, 4, 0, 86), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 0), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 2), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 5, 0, 93), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_unwrap, 5, 0, 93), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_range, 3, 0, 80), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 1, 0, 2), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 1, 0, 0), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_target, 1, 0, 0), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 4, 0, 0), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 2, 0, 14), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_path_element, 2, 0, 14), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 1, 0, 0), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 54), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 54), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 6, 0, 97), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 6, 0, 97), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 101), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 101), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 98), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 98), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_decl_storage, 1, 0, 0), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_storage, 1, 0, 0), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_storage, 1, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_storage, 1, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1240), + [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 1), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 1, 0, 1), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 16), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 1), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 1), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 3), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 65), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 30), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 2, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 1), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 0), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_name, 1, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 1, 0, 0), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 3, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 3, 0, 0), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 1), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 1), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 4, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 4, 0, 0), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 3, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 22), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_op, 1, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 2, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 7, 0, 0), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 9, 0, 0), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 1, 0, 0), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 3, 0, 0), [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 5, 0, 0), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 1, 0, 0), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 2, 0, 0), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 2, 0, 0), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 3, 0, 0), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path, 1, 0, 0), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 1, 0, 0), - [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(2002), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 2, 0, 0), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 4, 0, 3), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), - [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1617), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 0), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 21), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 2, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 3, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 1, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 3, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1, 0, 0), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 3, 0, 14), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 2, 0, 0), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 2, 0, 3), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 27), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1319), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 1, 0, 0), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 3, 0, 1), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 4, 0, 0), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2, 0, 0), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 5, 0, 62), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 3, 0, 17), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 1, 0, 0), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 3, 0, 0), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 22), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 2, 0, 0), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 2, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 1, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 3, 0, 0), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 3, 0, 0), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_resolution, 2, 0, 0), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_resolution, 2, 0, 0), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 4, 0, 0), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 4, 0, 0), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 2, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 2, 0, 0), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path, 1, 0, 0), + [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(1945), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 2, 0, 0), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 3, 0, 0), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 1, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2, 0, 0), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 5, 0, 62), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 3, 0, 14), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 2, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 4, 0, 3), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 1, 0, 0), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 3, 0, 17), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 27), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 21), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1, 0, 0), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 3, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 4, 0, 0), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 1, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), + [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2170), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 1, 0, 0), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 2, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 3, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 3, 0, 1), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 2, 0, 3), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_or_union, 1, 0, 0), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 5, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 4, 0, 0), + [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(214), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(2018), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 1), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 2, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 1, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 1, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 4, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 4, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 1, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 2, 0, 3), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 0), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 1, 0, 0), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 3, 0, 0), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 22), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 3, 0, 0), [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 5, 0, 0), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_or_union, 1, 0, 0), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 4, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 2, 0, 0), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(216), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(2184), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 1), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 0), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 1, 0, 0), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 1, 0, 0), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 2, 0, 3), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 1, 0, 0), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 16), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 2, 0, 14), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 8, 0, 1), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 1), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_type, 1, 0, 0), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 2, 0, 0), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 2, 0, 19), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 3, 0, 27), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_typedef, 3, 0, 30), - [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__call_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__call_arg_list_repeat1, 2, 0, 0), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 5, 0, 1), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 3), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 1, 0, 0), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 4, 0, 65), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 4, 0, 0), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 6, 0, 1), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 9, 0, 1), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 4, 0, 0), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 4, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 2, 0, 19), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 1, 0, 0), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 2), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), - [3672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), SHIFT_REPEAT(199), - [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), SHIFT_REPEAT(194), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 0), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 3, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 4, 0, 1), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doc_comment_repeat1, 2, 0, 0), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_doc_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 1, 0, 2), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 7, 0, 1), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 1), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(333), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), - [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(1971), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 2, 0, 19), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 3, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 1, 0, 0), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 14), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 4, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 19), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 14), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 2, 0, 0), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 3), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), SHIFT_REPEAT(304), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_default, 1, 0, 43), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 21), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 4, 0, 0), - [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 4, 0, 0), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 2, 0, 0), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 1, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 1, 0, 0), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 2, 0, 0), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1639), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 2, 0, 0), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 2, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 1, 0, 0), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 3, 0, 18), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 3, 0, 0), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 2, 0, 0), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_resolution, 2, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_resolution, 2, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 2, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 3, 0, 27), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 3), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 16), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 8, 0, 1), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doc_comment_repeat1, 2, 0, 0), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_doc_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), SHIFT_REPEAT(198), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), SHIFT_REPEAT(189), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 1, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_typedef, 3, 0, 30), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_type, 1, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 9, 0, 1), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 5, 0, 1), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 1), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 0), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 2, 0, 0), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 3, 0, 0), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 7, 0, 1), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(273), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(2171), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 4, 0, 65), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 6, 0, 1), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 2, 0, 14), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 2, 0, 19), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 1, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 1, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 3, 0, 0), + [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1172), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 2, 0, 19), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 2), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 4, 0, 0), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 4, 0, 0), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 4, 0, 0), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 1, 0, 2), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 4, 0, 1), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__call_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__call_arg_list_repeat1, 2, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 1), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 2, 0, 19), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 14), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 1, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 5), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 2, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 3, 0, 24), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 1, 0, 0), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 0), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 14), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 1, 0, 0), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment_contract, 1, 0, 1), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(242), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 3, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 3, 0, 0), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 0), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 4, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 0), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 1, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), SHIFT_REPEAT(1445), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 4, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 4, 0, 0), + [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1307), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 1, 0, 0), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 3, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 3, 0, 24), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 0), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 1, 0, 0), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_var, 1, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 5), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 0), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 2, 0, 0), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 14), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 3, 0, 0), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 3, 0, 0), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(217), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 4, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 19), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 87), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 3, 0, 0), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 3, 0, 34), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 0), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 2, 0, 0), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 2, 0, 0), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_param, 1, 0, 0), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 2, 0, 0), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1, 0, 0), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 2, 0, 0), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 68), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 2, 0, 0), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 5, 0, 0), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 0), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 49), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment_contract, 2, 0, 0), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_declaration, 2, 0, 16), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 2), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 80), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doc_comment_repeat1, 1, 0, 0), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__func_macro_name, 1, 0, 0), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 14), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 0), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 3, 0, 0), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 0), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 58), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 2), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 14), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 4, 0, 30), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 1, 0, 1), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shift_op, 1, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 5, 0, 0), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 2, 0, 8), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 3, 0, 28), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 3), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 1, 0, 0), + [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_var, 1, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 2, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 2, 0, 0), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 19), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), SHIFT_REPEAT(292), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 2, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 2, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 14), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_default, 1, 0, 43), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 21), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 3, 0, 18), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 3, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 2, 0, 0), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 80), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 68), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 0), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 2, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 5, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment_contract, 2, 0, 1), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 58), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_declaration, 2, 0, 16), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 2), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1, 0, 0), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 4, 0, 30), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 0), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 2, 0, 0), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 3, 0, 0), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 2, 0, 0), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 49), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 0), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 4, 0, 0), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 19), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 14), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 14), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 0), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 87), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doc_comment_repeat1, 1, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 3, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_param, 1, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 2), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 3, 0, 34), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__func_macro_name, 1, 0, 0), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 2, 0, 0), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 2, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4413] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 4, 0, 45), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shift_op, 1, 0, 0), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 1, 0, 1), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 4, 0, 45), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4757] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 2, 0, 8), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 4, 0, 45), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 2, 0, 0), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 2, 0, 2), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 2, 0, 0), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 1, 0, 0), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 3, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 4, 0, 0), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 2, 0, 2), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 3, 0, 28), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 2, 0, 8), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 5, 0, 0), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 4, 0, 45), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 2, 0, 8), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 2, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 4, 0, 0), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 1, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers {